gitlab-org--gitlab-foss/spec/factories/wiki_pages.rb

28 lines
555 B
Ruby
Raw Normal View History

2016-04-15 04:47:09 +00:00
require 'ostruct'
FactoryBot.define do
2016-04-15 04:47:09 +00:00
factory :wiki_page do
transient do
attrs do
{
2019-01-15 07:59:17 +00:00
title: 'Title.with.dot',
content: 'Content for wiki page',
format: 'markdown'
}
end
end
page { OpenStruct.new(url_path: 'some-name') }
2016-04-15 04:47:09 +00:00
association :wiki, factory: :project_wiki, strategy: :build
initialize_with { new(wiki, page, true) }
before(:create) do |page, evaluator|
page.attributes = evaluator.attrs
end
to_create do |page|
page.create
end
2016-04-15 04:47:09 +00:00
end
end