Skip to content
Snippets Groups Projects
Commit 7b92950f authored by Akihiko Odaki's avatar Akihiko Odaki Committed by Eugen Rochko
Browse files

Cover InstancesController more (#3342)

parent 97d7028c
No related branches found
No related tags found
No related merge requests found
......@@ -8,8 +8,23 @@ RSpec.describe Admin::InstancesController, type: :controller do
end
describe 'GET #index' do
it 'returns http success' do
get :index
around do |example|
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)
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment