1# frozen_string_literal: true
2
3module Gitlab
4  module Ci
5    module Status
6      class Success < Status::Core
7        def text
8          s_('CiStatusText|passed')
9        end
10
11        def label
12          s_('CiStatusLabel|passed')
13        end
14
15        def icon
16          'status_success'
17        end
18
19        def favicon
20          'favicon_status_success'
21        end
22
23        def details_path
24          nil
25        end
26      end
27    end
28  end
29end
30