mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
10 lines
256 B
Ruby
10 lines
256 B
Ruby
|
FactoryGirl.define do
|
||
|
factory :repository_cell do
|
||
|
repository_row { RepositoryRow.first || create(:repository_row) }
|
||
|
repository_column do
|
||
|
RepositoryColumn.first || create(:repository_column)
|
||
|
end
|
||
|
value 'RepositoryTextValue'
|
||
|
end
|
||
|
end
|