26 lines
774 B
Ruby
26 lines
774 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'spec_helper'
|
||
|
|
||
|
RSpec.describe BulkImports::FileTransfer do
|
||
|
describe '.config_for' do
|
||
|
context 'when portable is group' do
|
||
|
it 'returns group config' do
|
||
|
expect(described_class.config_for(build(:group))).to be_instance_of(BulkImports::FileTransfer::GroupConfig)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
context 'when portable is project' do
|
||
|
it 'returns project config' do
|
||
|
expect(described_class.config_for(build(:project))).to be_instance_of(BulkImports::FileTransfer::ProjectConfig)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
context 'when portable is unsupported' do
|
||
|
it 'raises an error' do
|
||
|
expect { described_class.config_for(nil) }.to raise_error(BulkImports::FileTransfer::UnsupportedObjectType)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|