mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-06 15:40:31 +08:00
10 lines
275 B
Ruby
10 lines
275 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :repository_checklist_item do
|
|
data { Faker::Lorem.paragraph }
|
|
repository_column { create :repository_column, :checklist_type }
|
|
created_by { create :user }
|
|
last_modified_by { created_by }
|
|
end
|
|
end
|