diff options
author | Azul <azul@leap.se> | 2013-01-11 10:23:51 +0100 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-01-11 10:23:51 +0100 |
commit | 1623f51cc003f7de92f7192bba5ca88dfb2a92f6 (patch) | |
tree | 036bc8e0f08ae146b81c00f6f15922dea4679d37 /users/test | |
parent | cee6db281349789ba5ff6dc8d3dc6ca10400aebe (diff) |
basic dummy data for users
Diffstat (limited to 'users/test')
-rw-r--r-- | users/test/factories.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/users/test/factories.rb b/users/test/factories.rb new file mode 100644 index 0000000..2802c7e --- /dev/null +++ b/users/test/factories.rb @@ -0,0 +1,18 @@ +FactoryGirl.define do + + factory :user do + login { Faker::Internet.user_name } + password_verifier "1234ABCD" + password_salt "4321AB" + end + + factory :user_with_settings, :class => User do + login { Faker::Internet.user_name } + password_verifier "1234ABCD" + password_salt "4321AB" + email_forward { Faker::Internet.email } + email_aliases_attributes do + {:a => Faker::Internet.user_name + '@' + APP_CONFIG[:domain]} + end + end +end |