gitlab-org--gitlab-foss/lib/gitlab/ci/status/success.rb
2016-12-05 11:35:27 +01:00

19 lines
267 B
Ruby

module Gitlab
module Ci
module Status
class Success < Status::Core
def text
'passed'
end
def label
'passed'
end
def icon
'icon_status_success'
end
end
end
end
end