summaryrefslogtreecommitdiff
path: root/users/test/factories.rb
blob: 4bf7e62420668a5421c1b0ebe9d64d778c32f373 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FactoryGirl.define do

  factory :user do
    login { Faker::Internet.user_name }
    password_verifier "1234ABCD"
    password_salt "4321AB"

    factory :user_with_settings do
      email_forward { Faker::Internet.email }
      email { Faker::Internet.user_name + '@' + APP_CONFIG[:domain] }
      email_aliases_attributes do
        {:a => Faker::Internet.user_name + '@' + APP_CONFIG[:domain]}
      end
    end

    factory :admin_user do
      is_admin? true
    end
  end
end