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

git_helpers.rb « helpers « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 99c5871ba542aa362c643cbf0aaab7388a580e6d (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module GitHelpers
  def rugged_repo(repository)
    path = File.join(TestEnv.repos_path, repository.disk_path + '.git')

    Rugged::Repository.new(path)
  end
end