diff options
Diffstat (limited to 'spec/lib/extracts_ref_spec.rb')
-rw-r--r-- | spec/lib/extracts_ref_spec.rb | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/spec/lib/extracts_ref_spec.rb b/spec/lib/extracts_ref_spec.rb index ca2f1fd7dc1..5433a512981 100644 --- a/spec/lib/extracts_ref_spec.rb +++ b/spec/lib/extracts_ref_spec.rb @@ -18,6 +18,21 @@ RSpec.describe ExtractsRef do allow_any_instance_of(described_class).to receive(:repository_container).and_return(container) end - it_behaves_like 'assigns ref vars' + describe '#assign_ref_vars' do + it_behaves_like 'assigns ref vars' + + context 'ref and path are nil' do + let(:params) { { path: nil, ref: nil } } + + it 'does not set commit' do + expect(container.repository).not_to receive(:commit).with('') + + assign_ref_vars + + expect(@commit).to be_nil + end + end + end + it_behaves_like 'extracts refs' end |