12 lines
251 B
Ruby
12 lines
251 B
Ruby
|
|
FactoryGirl.define do
|
||
|
|
factory :user do
|
||
|
|
sequence(:name) { |n| "Person #{n}" }
|
||
|
|
sequence(:email) { |n| "person_#{n}@example.com"}
|
||
|
|
password "foobar"
|
||
|
|
password_confirmation "foobar"
|
||
|
|
|
||
|
|
factory :admin do
|
||
|
|
admin true
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|