2016-11-30 14:32:26 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Admin::AccountsController, type: :controller do
|
|
|
|
before do
|
|
|
|
sign_in Fabricate(:user, admin: true), scope: :user
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #index' do
|
|
|
|
it 'returns http success' do
|
|
|
|
get :index
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #show' do
|
2016-12-03 19:04:19 +00:00
|
|
|
let(:account) { Fabricate(:account, username: 'bob') }
|
|
|
|
|
2016-11-30 14:32:26 +00:00
|
|
|
it 'returns http success' do
|
2016-12-03 19:04:19 +00:00
|
|
|
get :show, params: { id: account.id }
|
2016-11-30 14:32:26 +00:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|