discourse/spec/controllers/admin/screened_emails_controller_...

23 lines
472 B
Ruby
Raw Normal View History

require 'rails_helper'
2013-08-01 21:30:13 -04:00
describe Admin::ScreenedEmailsController do
2013-08-01 21:30:13 -04:00
it "is a subclass of AdminController" do
2015-01-09 12:04:02 -05:00
expect(Admin::ScreenedEmailsController < Admin::AdminController).to eq(true)
2013-08-01 21:30:13 -04:00
end
let!(:user) { log_in(:admin) }
context '.index' do
before do
get :index, format: :json
2013-08-01 21:30:13 -04:00
end
subject { response }
2015-01-09 12:04:02 -05:00
it { is_expected.to be_success }
2013-08-01 21:30:13 -04:00
it 'returns JSON' do
2015-01-09 12:04:02 -05:00
expect(::JSON.parse(subject.body)).to be_a(Array)
2013-08-01 21:30:13 -04:00
end
end
end