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

wikis.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 86d98bfd756725dc4fcbe22fef37e58549756aba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

FactoryBot.define do
  factory :wiki do
    transient do
      container { association(:project) }
      user { container.default_owner || association(:user) }
    end

    initialize_with { Wiki.for_container(container, user) }
    skip_create

    factory :project_wiki do
      transient do
        project { association(:project) }
      end

      container { project }
    end
  end
end