|
|
@ -8,8 +8,23 @@ RSpec.describe Admin::InstancesController, type: :controller do |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
describe 'GET #index' do |
|
|
|
describe 'GET #index' do |
|
|
|
it 'returns http success' do |
|
|
|
around do |example| |
|
|
|
get :index |
|
|
|
default_per_page = Account.default_per_page |
|
|
|
|
|
|
|
Account.paginates_per 1 |
|
|
|
|
|
|
|
example.run |
|
|
|
|
|
|
|
Account.paginates_per default_per_page |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
it 'renders instances' do |
|
|
|
|
|
|
|
Fabricate(:account, domain: 'popular') |
|
|
|
|
|
|
|
Fabricate(:account, domain: 'popular') |
|
|
|
|
|
|
|
Fabricate(:account, domain: 'less.popular') |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
get :index, params: { page: 2 } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
instances = assigns(:instances).to_a |
|
|
|
|
|
|
|
expect(instances.size).to eq 1 |
|
|
|
|
|
|
|
expect(instances[0].domain).to eq 'less.popular' |
|
|
|
|
|
|
|
|
|
|
|
expect(response).to have_http_status(:success) |
|
|
|
expect(response).to have_http_status(:success) |
|
|
|
end |
|
|
|
end |
|
|
|