mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-26 09:42:46 +08:00
11 lines
314 B
Ruby
11 lines
314 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :repository_checklist_item do
|
|
data { Faker::Lorem.paragraph }
|
|
repository
|
|
repository_column { create :repository_column, :checklist_type, repository: repository }
|
|
created_by { create :user }
|
|
last_modified_by { created_by }
|
|
end
|
|
end
|