Sha256: 54cdab764d78961101d682d5bf96b3d1cb6426bb3ff9d9d7b4973ef70e0d9676
Contents?: true
Size: 391 Bytes
Versions: 15
Compression:
Stored size: 391 Bytes
Contents
# Read about factories at https://github.com/thoughtbot/factory_girl FactoryGirl.define do factory :ecm_user_area_user, class: 'Ecm::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
15 entries across 15 versions & 1 rubygems