mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-05-10 16:54:38 -04:00
19 lines
349 B
Ruby
19 lines
349 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryGirl.define do
|
|
factory :role do
|
|
name "Moderator"
|
|
description "These people moderate the forums"
|
|
|
|
factory :admin do
|
|
name "admin"
|
|
end
|
|
|
|
factory :crop_wrangler do
|
|
name "crop wrangler"
|
|
description "they wrangle crops"
|
|
end
|
|
end
|
|
|
|
end
|