Add helper methods for domains allow and export blocks files (#28196)
This commit is contained in:
parent
3ec263bf15
commit
d848d8d87c
2 changed files with 15 additions and 3 deletions
|
@ -26,7 +26,13 @@ RSpec.describe Admin::ExportDomainBlocksController do
|
|||
|
||||
get :export, params: { format: :csv }
|
||||
expect(response).to have_http_status(200)
|
||||
expect(response.body).to eq(File.read(File.join(file_fixture_path, 'domain_blocks.csv')))
|
||||
expect(response.body).to eq(domain_blocks_csv_file)
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def domain_blocks_csv_file
|
||||
File.read(File.join(file_fixture_path, 'domain_blocks.csv'))
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue