X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/737a325f2e4b45b26277de7986325705ff17b63d..6331e346384d3cc2639aaeec35eaa10a26f7ddf6:/test/factories/user.rb diff --git a/test/factories/user.rb b/test/factories/user.rb index a7219324a..8fe768410 100644 --- a/test/factories/user.rb +++ b/test/factories/user.rb @@ -4,6 +4,12 @@ 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) } @@ -41,11 +47,12 @@ FactoryGirl.define do end end - # A commonly needed user is one who can log in an isn't redirected anywhere - factory :normal_user do - status "active" - terms_seen true - data_public true + factory :super_user do + after(:create) do |user, _evaluator| + UserRole::ALL_ROLES.each do |role| + create(:user_role, :role => role, :user => user) + end + end end end end