mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
18 lines
510 B
Ruby
18 lines
510 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :work_package_help_text, class: "AttributeHelpText::WorkPackage" do
|
|
type { "AttributeHelpText::WorkPackage" }
|
|
help_text { "Attribute help text" }
|
|
caption { "Some caption" }
|
|
attribute_name { "status" }
|
|
end
|
|
|
|
factory :project_help_text, class: "AttributeHelpText::Project" do
|
|
type { "AttributeHelpText::Project" }
|
|
help_text { "Attribute help text" }
|
|
caption { "Some caption" }
|
|
attribute_name { "status" }
|
|
end
|
|
end
|