Files
openproject/spec/factories/attribute_help_text_factory.rb
2025-11-26 09:35:44 +01:00

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