summaryrefslogtreecommitdiff
path: root/qa/qa/runtime/user.rb
blob: 12ceda015f038f43227cb558827e8c3ab65d321f (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'] || 'test1234'
      end
    end
  end
end