mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 09:21:25 +00:00
5 lines
93 B
Ruby
Executable file
5 lines
93 B
Ruby
Executable file
FactoryGirl.define do
|
|
factory :grouper do
|
|
sequence(:task) { |n| "Task#{n}" }
|
|
end
|
|
end
|