mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 21:24:54 +08:00
7 lines
193 B
Ruby
7 lines
193 B
Ruby
FactoryGirl.define do
|
|
factory :repository_row do
|
|
name 'Custom row'
|
|
created_by { User.first || association(:user) }
|
|
last_modified_by { User.first || association(:user) }
|
|
end
|
|
end
|