fixed bug in users factory

This commit is contained in:
Calvyn82
2015-10-04 13:10:55 -05:00
parent 52c22f274d
commit d5ac05604d
2 changed files with 6 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
FactoryGirl.define do
factory :achievement do
award 'Foooooooo'
end
end

View File

@@ -1,7 +1,7 @@
FactoryGirl.define do
factory :user do
name 'Dogbert'
sequence(:email) { |i| 'fubert#{i}@example.org' }
sequence(:email) { |i| "fubert#{i}@example.org" }
password 'jeheim'
password_confirmation 'jeheim'
sex 'yes please'