scinote-web/spec/factories/form_field_values.rb

12 lines
297 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :form_field_value do
type { 'FormFieldTextValue' }
text { 'hello' }
association :form_response
association :form_field
association :created_by, factory: :user
association :submitted_by, factory: :user
end
end