X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/38fc6331af1e45e077db040a317845607050d2a3..293fb9946705417b1d313feb8c65beadaf92a5d3:/test/factories/user.rb diff --git a/test/factories/user.rb b/test/factories/user.rb index 6376659ab..802fedd91 100644 --- a/test/factories/user.rb +++ b/test/factories/user.rb @@ -4,11 +4,37 @@ FactoryGirl.define do sequence(:display_name) { |n| "User #{n}" } pass_crypt Digest::MD5.hexdigest("test") + # These attributes are not the defaults, but in most tests we want + # a 'normal' user who can log in without being redirected etc. + status "active" + terms_seen true + data_public true + trait :with_home_location do home_lat { rand(-90.0...90.0) } home_lon { rand(-180.0...180.0) } end + trait :pending do + status "pending" + end + + trait :active do + status "active" + end + + trait :confirmed do + status "confirmed" + end + + trait :suspended do + status "suspended" + end + + trait :deleted do + status "deleted" + end + factory :moderator_user do after(:create) do |user, _evaluator| create(:user_role, :role => "moderator", :user => user)