Check response body instead of assigns in admin accounts controller spec

This commit is contained in:
Matt Jankowski 2024-04-30 13:10:25 -04:00
parent 18be0fbd2f
commit 4a02eab237
1 changed files with 6 additions and 5 deletions

View File

@ -40,15 +40,16 @@ RSpec.describe Admin::AccountsController do
expect(response) expect(response)
.to have_http_status(200) .to have_http_status(200)
expect(assigns(:accounts)) expect(accounts_table_rows.size)
.to have_attributes( .to eq(1)
count: eq(1),
klass: be(Account)
)
expect(AccountFilter) expect(AccountFilter)
.to have_received(:new) .to have_received(:new)
.with(hash_including(params)) .with(hash_including(params))
end end
def accounts_table_rows
Nokogiri::Slop(response.body).css('table.accounts-table tr')
end
end end
describe 'GET #show' do describe 'GET #show' do