2014-04-30 14:48:20 +02:00
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
|
|
2014-04-09 01:32:47 +02:00
|
|
|
FactoryGirl.define do
|
|
|
|
|
factory :user do
|
|
|
|
|
email 'example@example.com'
|
|
|
|
|
password 'changeme'
|
|
|
|
|
password_confirmation 'changeme'
|
|
|
|
|
confirmed_at Time.now
|
|
|
|
|
end
|
|
|
|
|
end
|