End of day commit

This commit is contained in:
2015-02-18 22:36:47 +01:00
parent 82670f271b
commit c1858455e9
68 changed files with 633 additions and 145 deletions
+11
View File
@@ -0,0 +1,11 @@
FactoryGirl.define do
factory :employee do
sequence(:name){|i| "Employee #{i}"}
email 'employee@mozo.bar'
password 'secret'
trait :confirmed do
confirmed_at { Time.now }
end
end
end