Files
codeocean/spec/factories/structured_error_attributes.rb
2021-05-14 22:03:06 +02:00

10 lines
204 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :structured_error_attribute do
association :structured_error
association :error_template_attribute
value { 'MyString' }
end
end