|
|
@ -59,6 +59,7 @@ describe SchemeEmailCsvJob do |
|
|
|
expect(CsvDownload.first.organisation).to eq(user.organisation) |
|
|
|
expect(CsvDownload.first.organisation).to eq(user.organisation) |
|
|
|
expect(CsvDownload.first.filename).to match(/schemes-.*\.csv/) |
|
|
|
expect(CsvDownload.first.filename).to match(/schemes-.*\.csv/) |
|
|
|
expect(CsvDownload.first.download_type).to eq("schemes") |
|
|
|
expect(CsvDownload.first.download_type).to eq("schemes") |
|
|
|
|
|
|
|
expect(CsvDownload.first.expiration_time).to eq(86400) |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
@ -77,6 +78,7 @@ describe SchemeEmailCsvJob do |
|
|
|
expect(CsvDownload.first.organisation).to eq(user.organisation) |
|
|
|
expect(CsvDownload.first.organisation).to eq(user.organisation) |
|
|
|
expect(CsvDownload.first.filename).to match(/locations-.*\.csv/) |
|
|
|
expect(CsvDownload.first.filename).to match(/locations-.*\.csv/) |
|
|
|
expect(CsvDownload.first.download_type).to eq("locations") |
|
|
|
expect(CsvDownload.first.download_type).to eq("locations") |
|
|
|
|
|
|
|
expect(CsvDownload.first.expiration_time).to eq(86400) |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
@ -95,6 +97,7 @@ describe SchemeEmailCsvJob do |
|
|
|
expect(CsvDownload.first.organisation).to eq(user.organisation) |
|
|
|
expect(CsvDownload.first.organisation).to eq(user.organisation) |
|
|
|
expect(CsvDownload.first.filename).to match(/schemes-and-locations-.*\.csv/) |
|
|
|
expect(CsvDownload.first.filename).to match(/schemes-and-locations-.*\.csv/) |
|
|
|
expect(CsvDownload.first.download_type).to eq("combined") |
|
|
|
expect(CsvDownload.first.download_type).to eq("combined") |
|
|
|
|
|
|
|
expect(CsvDownload.first.expiration_time).to eq(86400) |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|