Skip to content
Snippets Groups Projects
Commit cdd0272e authored by Sean McGivern's avatar Sean McGivern
Browse files

Merge branch 'improve-dag-tests' into 'master'

Improve test for .with_needs

See merge request gitlab-org/gitlab-ce!31411
parents 2db7436a db104aaf
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -185,8 +185,9 @@ describe Ci::Build do
 
describe '.with_needs' do
let!(:build) { create(:ci_build) }
let!(:build_b) { create(:ci_build) }
let!(:build_need_a) { create(:ci_build_need, build: build) }
let!(:build_need_b) { create(:ci_build_need, build: build) }
let!(:build_need_b) { create(:ci_build_need, build: build_b) }
 
context 'when passing build name' do
subject { described_class.with_needs(build_need_a.name) }
Loading
Loading
@@ -197,7 +198,7 @@ describe Ci::Build do
context 'when not passing any build name' do
subject { described_class.with_needs }
 
it { is_expected.to contain_exactly(build) }
it { is_expected.to contain_exactly(build, build_b) }
end
 
context 'when not matching build name' do
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment