mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-26 20:41:01 +00:00
6 lines
128 B
Ruby
6 lines
128 B
Ruby
|
FactoryGirl.define do
|
||
|
factory :category do
|
||
|
sequence(:name) { |n| "Category #{n}" }
|
||
|
sequence(:sort) { |n| n }
|
||
|
end
|
||
|
end
|