This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-30 06:32:26 -08:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Admin::AccountsController, type: :controller do
|
2017-04-28 06:12:37 -07:00
|
|
|
render_views
|
|
|
|
|
2016-11-30 06:32:26 -08:00
|
|
|
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 11:04:19 -08:00
|
|
|
let(:account) { Fabricate(:account, username: 'bob') }
|
|
|
|
|
2016-11-30 06:32:26 -08:00
|
|
|
it 'returns http success' do
|
2016-12-03 11:04:19 -08:00
|
|
|
get :show, params: { id: account.id }
|
2016-11-30 06:32:26 -08:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|