mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-17 18:45:28 +08:00
12 lines
320 B
Ruby
12 lines
320 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :form_field do
|
|
name { Faker::Name.unique.name }
|
|
description { Faker::Lorem.sentence }
|
|
sequence(:position) { |n| n - 1 }
|
|
association :created_by, factory: :user
|
|
association :last_modified_by, factory: :user
|
|
association :form
|
|
end
|
|
end
|