mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 05:34:53 +08:00
10 lines
281 B
Ruby
10 lines
281 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :repository_row_connection do
|
|
association :parent, factory: :repository_row
|
|
association :child, factory: :repository_row
|
|
association :created_by, factory: :user
|
|
last_modified_by { created_by }
|
|
end
|
|
end
|