You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
328 B
18 lines
328 B
6 years ago
|
|
||
|
FactoryGirl.define do
|
||
|
factory :user do
|
||
|
login "factoryuser"
|
||
|
mail "user@example.com"
|
||
|
password "foobar111"
|
||
|
password_confirmation "foobar111"
|
||
|
end
|
||
|
|
||
|
factory :student, class: User do
|
||
|
login "student"
|
||
|
mail "student@example.com"
|
||
|
password "foobar111"
|
||
|
password_confirmation "foobar111"
|
||
|
end
|
||
|
|
||
|
end
|