summaryrefslogtreecommitdiff
path: root/qa/qa/runtime/user.rb
blob: 60027c89ab10c42555655488c54bdc923543d452 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module QA
  module Runtime
    module User
      extend self

      def name
        ENV['GITLAB_USERNAME'] || 'root'
      end

      def password
        ENV['GITLAB_PASSWORD'] || '5iveL!fe'
      end
    end
  end
end