mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-07 21:55:20 +08:00
12 lines
297 B
Ruby
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
|