summaryrefslogtreecommitdiff
path: root/spec/factories/wikis.rb
blob: a357f4b448d2b8207e6e637021444f42891458fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

FactoryBot.define do
  factory :wiki do
    transient do
      container { association(:project) }
      user { container.first_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

    trait :empty_repo do
      after(:create, &:create_wiki_repository)
    end
  end
end