summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/core/success.rb
blob: 7bae4f612cc1b73915516c66bbdcbbb62913e99a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module Gitlab::Ci
  module Status
    module Core
      class Success
        def label
          'passed'
        end

        def icon
          'success'
        end
      end
    end
  end
end