summaryrefslogtreecommitdiff
path: root/spec/support/helpers/git_helpers.rb
blob: 99a7c39852e104d9fcfc06f4dfad919a8aa6638f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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

  def project_hook_exists?(project)
    Gitlab::GitalyClient::StorageSettings.allow_disk_access do
      project_path = project.repository.raw_repository.path

      File.exist?(File.join(project_path, 'hooks', 'post-receive'))
    end
  end
end