mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-15 04:34:03 +00:00
10 lines
240 B
Ruby
10 lines
240 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryGirl.define do
|
|
factory :user do
|
|
email 'example@example.com'
|
|
password 'changeme'
|
|
password_confirmation 'changeme'
|
|
confirmed_at Time.now
|
|
end
|
|
end
|