better filenames for export

This commit is contained in:
Arpit Jalan
2015-01-02 12:29:05 +05:30
parent e46abdd4a2
commit bfe95966b4
5 changed files with 16 additions and 15 deletions

View File

@@ -1,7 +1,7 @@
require "spec_helper"
describe ExportCsvController do
let(:export_filename) { "export_999.csv" }
let(:export_filename) { "user-archive-999.csv" }
context "while logged in as normal user" do
@@ -30,7 +30,7 @@ describe ExportCsvController do
describe ".download" do
it "uses send_file to transmit the export file" do
file = UserExport.create(export_type: "user", user_id: @user.id)
file_name = "export_#{file.id}.csv"
file_name = "user-archive-#{file.id}.csv"
controller.stubs(:render)
export = UserExport.new()
UserExport.expects(:get_download_path).with(file_name).returns(export)
@@ -74,7 +74,7 @@ describe ExportCsvController do
describe ".download" do
it "uses send_file to transmit the export file" do
file = UserExport.create(export_type: "admin", user_id: @admin.id)
file_name = "export_#{file.id}.csv"
file_name = "screened-email-#{file.id}.csv"
controller.stubs(:render)
export = UserExport.new()
UserExport.expects(:get_download_path).with(file_name).returns(export)