diff options
Diffstat (limited to 'spec/models/ci/group_spec.rb')
-rw-r--r-- | spec/models/ci/group_spec.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/spec/models/ci/group_spec.rb b/spec/models/ci/group_spec.rb index c20b7e61044..6c96e659a34 100644 --- a/spec/models/ci/group_spec.rb +++ b/spec/models/ci/group_spec.rb @@ -54,6 +54,18 @@ RSpec.describe Ci::Group do .to be_a(Gitlab::Ci::Status::Failed) end end + + context 'when one of the commit statuses in the group is allowed to fail' do + let(:jobs) do + [create(:ci_build, :failed, :allowed_to_fail), + create(:ci_build, :success)] + end + + it 'fabricates a new detailed status object' do + expect(subject.detailed_status(double(:user))) + .to be_a(Gitlab::Ci::Status::SuccessWarning) + end + end end describe '.fabricate' do |