8 lines
163 B
Ruby
8 lines
163 B
Ruby
FactoryBot.define do
|
|
factory :structured_error_attribute do
|
|
structured_error { nil }
|
|
error_template_attribute { nil }
|
|
value { "MyString" }
|
|
end
|
|
end
|