2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
describe QA::Resource::Repository::Push do
|
2018-12-05 23:21:45 +05:30
|
|
|
describe '.files=' do
|
|
|
|
let(:files) do
|
|
|
|
[
|
|
|
|
{
|
|
|
|
name: 'file.txt',
|
|
|
|
content: 'foo'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'raises an error if files is not an array' do
|
|
|
|
expect { subject.files = '' }.to raise_error(ArgumentError)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'raises an error if files is an empty array' do
|
|
|
|
expect { subject.files = [] }.to raise_error(ArgumentError)
|
|
|
|
end
|
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
it 'raises an error if files is not an array of hashes with :name and :content keys' do
|
|
|
|
expect { subject.files = [{ foo: 'foo' }] }.to raise_error(ArgumentError)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not raise if files is an array of hashes with :name and :content keys' do
|
2018-12-05 23:21:45 +05:30
|
|
|
expect { subject.files = files }.not_to raise_error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|