mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 04:51:14 +00:00
5 lines
92 B
Ruby
Executable file
5 lines
92 B
Ruby
Executable file
FactoryBot.define do
|
|
factory :grouper do
|
|
sequence(:task) { |n| "Task#{n}" }
|
|
end
|
|
end
|