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: afa003617c402b07d1500cc61538ac7e4c2443b5 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

FactoryBot.define do
  factory :wiki_directory do
    skip_create

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