26 lines
700 B
Ruby
26 lines
700 B
Ruby
|
require 'spec_helper'
|
||
|
|
||
|
describe ImportExportUpload do
|
||
|
subject { described_class.new(project: create(:project)) }
|
||
|
|
||
|
shared_examples 'stores the Import/Export file' do |method|
|
||
|
it 'stores the import file' do
|
||
|
subject.public_send("#{method}=", fixture_file_upload('spec/fixtures/project_export.tar.gz'))
|
||
|
|
||
|
subject.save!
|
||
|
|
||
|
url = "/uploads/-/system/import_export_upload/#{method}/#{subject.id}/project_export.tar.gz"
|
||
|
|
||
|
expect(subject.public_send(method).url).to eq(url)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
context 'import' do
|
||
|
it_behaves_like 'stores the Import/Export file', :import_file
|
||
|
end
|
||
|
|
||
|
context 'export' do
|
||
|
it_behaves_like 'stores the Import/Export file', :export_file
|
||
|
end
|
||
|
end
|