mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 13:45:25 +08:00
10 lines
265 B
Ruby
10 lines
265 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :repository_list_item do
|
|
data { Faker::Lorem.paragraph }
|
|
repository_column { create :repository_column, :list_type }
|
|
created_by { create :user }
|
|
last_modified_by { created_by }
|
|
end
|
|
end
|