Files
codeocean/spec/factories/structured_error_attributes.rb
2023-06-11 20:46:45 +02:00

10 lines
178 B
Ruby

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