summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzciński <ayufan@ayufan.eu>2019-08-01 15:30:06 +0200
committerKamil Trzciński <ayufan@ayufan.eu>2019-08-02 12:35:57 +0200
commitdb104aaf9236050ea5fd921efab664892a6b1880 (patch)
tree3eed15df2e2bfc157958c0a6df65d06764155fc7
parent1e7aafdc0b10d7307649e6d5f5d6587639a4e7e7 (diff)
downloadgitlab-ce-db104aaf9236050ea5fd921efab664892a6b1880.tar.gz
Improve test for .with_needs
-rw-r--r--spec/models/ci/build_spec.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/spec/models/ci/build_spec.rb b/spec/models/ci/build_spec.rb
index 9369f393b5e..8768e914284 100644
--- a/spec/models/ci/build_spec.rb
+++ b/spec/models/ci/build_spec.rb
@@ -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) }
@@ -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