mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 05:34:53 +08:00
8 lines
193 B
Ruby
8 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
|