summaryrefslogtreecommitdiff
path: root/spec/models/ci/build_need_spec.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-11-27 15:06:45 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2019-11-27 15:06:45 +0000
commita98649b71085bcd21af674a47d6a746336c56a65 (patch)
tree1e518ce4f61a8d7260ba9d6d3b8db8906251d6a0 /spec/models/ci/build_need_spec.rb
parenta4484fd22dd0d055a10fe084b82349e42f7363e1 (diff)
downloadgitlab-ce-a98649b71085bcd21af674a47d6a746336c56a65.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/models/ci/build_need_spec.rb')
-rw-r--r--spec/models/ci/build_need_spec.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/models/ci/build_need_spec.rb b/spec/models/ci/build_need_spec.rb
index 450dd550a8f..d1186fa981d 100644
--- a/spec/models/ci/build_need_spec.rb
+++ b/spec/models/ci/build_need_spec.rb
@@ -10,4 +10,11 @@ describe Ci::BuildNeed, model: true do
it { is_expected.to validate_presence_of(:build) }
it { is_expected.to validate_presence_of(:name) }
it { is_expected.to validate_length_of(:name).is_at_most(128) }
+
+ describe '.artifacts' do
+ let_it_be(:with_artifacts) { create(:ci_build_need, artifacts: true) }
+ let_it_be(:without_artifacts) { create(:ci_build_need, artifacts: false) }
+
+ it { expect(described_class.artifacts).to contain_exactly(with_artifacts) }
+ end
end