Sha256: 81dbdeaebf7831e65a84894e088cf879d2c27de6bdde78b96f34c3481fb26361
Contents?: true
Size: 412 Bytes
Versions: 56
Compression:
Stored size: 412 Bytes
Contents
# Read about factories at https://github.com/thoughtbot/factory_girl FactoryBot.define do factory :cmor_user_area_user, class: 'Cmor::UserArea::User' do sequence(:email) { |n| "user#{n}@example.com" } password { 'password' } password_confirmation { 'password' } trait :authenticable do active { true } confirmed { true } approved { true } end end end
Version data entries
56 entries across 56 versions & 1 rubygems