discourse/spec/controllers/admin/screened_urls_controller_spec.rb

23 lines
459 B
Ruby
Raw Normal View History

require 'rails_helper'
2013-08-15 22:48:30 +08:00
describe Admin::ScreenedUrlsController do
it "is a subclass of AdminController" do
2015-01-10 01:04:02 +08:00
expect(Admin::ScreenedUrlsController < Admin::AdminController).to eq(true)
2013-08-15 22:48:30 +08:00
end
let!(:user) { log_in(:admin) }
context '.index' do
before do
xhr :get, :index
end
subject { response }
2015-01-10 01:04:02 +08:00
it { is_expected.to be_success }
2013-08-15 22:48:30 +08:00
it 'returns JSON' do
2015-01-10 01:04:02 +08:00
expect(::JSON.parse(subject.body)).to be_a(Array)
2013-08-15 22:48:30 +08:00
end
end
end