mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-28 19:24:10 +08:00
7 lines
138 B
Ruby
7 lines
138 B
Ruby
FactoryGirl.define do
|
|
factory :sample_group do
|
|
name 'Sample'
|
|
color '#ff00ff'
|
|
team { Team.first || create(:team) }
|
|
end
|
|
end
|