mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-26 04:21:36 +00:00
13 lines
228 B
Ruby
Executable file
13 lines
228 B
Ruby
Executable file
FactoryGirl.define do
|
|
factory :gather do
|
|
association :category, factory: [:category, :game]
|
|
end
|
|
|
|
trait :running do
|
|
status Gather::STATE_RUNNING
|
|
end
|
|
|
|
trait :picking do
|
|
status Gather::STATE_PICKING
|
|
end
|
|
end
|