2015-10-11 05:41:23 -04:00
|
|
|
require 'rails_helper'
|
2013-08-01 21:30:13 -04:00
|
|
|
|
2013-08-14 11:05:53 -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
|
2017-08-31 00:06:56 -04:00
|
|
|
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
|