Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user.rb « runtime « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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