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

git_helpers.rb « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 93422390ef72ef3a094997663d137c302159396d (plain)
1
2
3
4
5
6
7
8
9
module GitHelpers
  def random_git_name
    "#{FFaker::Product.brand}-#{FFaker::Product.brand}-#{rand(1000)}"
  end
end

RSpec.configure do |config|
  config.include GitHelpers
end