debian-mirror-gitlab/spec/models/bulk_imports/export_upload_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
626 B
Ruby
Raw Normal View History

2021-06-08 01:23:25 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe BulkImports::ExportUpload do
subject { described_class.new(export: create(:bulk_import_export)) }
describe 'associations' do
it { is_expected.to belong_to(:export) }
end
it 'stores export file' do
method = 'export_file'
filename = 'labels.ndjson.gz'
2021-09-04 01:27:46 +05:30
subject.public_send("#{method}=", fixture_file_upload("spec/fixtures/bulk_imports/gz/#{filename}"))
2021-06-08 01:23:25 +05:30
subject.save!
url = "/uploads/-/system/bulk_imports/export_upload/export_file/#{subject.id}/#{filename}"
expect(subject.public_send(method).url).to eq(url)
end
end