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

wiki_directories.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b105c82b19d450d92fcc98beff7da58fddfa4a0d (plain)
1
2
3
4
5
6
7
8
FactoryBot.define do
  factory :wiki_directory do
    skip_create

    slug '/path_up_to/dir'
    initialize_with { new(slug) }
  end
end