Sha256: 4032e55cf475660db251afe87808f8ff7da8884d8292eec0085d4d4a5f3974f0

Contents?: true

Size: 1.69 KB

Versions: 6

Compression:

Stored size: 1.69 KB

Contents

# frozen_string_literal: true

# == Schema Information
#
# Table name: users
#
#  id                     :bigint           not null, primary key
#  confirmation_sent_at   :datetime
#  confirmation_token     :string
#  confirmed_at           :datetime
#  current_sign_in_at     :datetime
#  current_sign_in_ip     :string
#  discarded_at           :datetime
#  email                  :string           default(""), not null
#  encrypted_password     :string           default(""), not null
#  failed_attempts        :integer          default(0), not null
#  last_sign_in_at        :datetime
#  last_sign_in_ip        :string
#  locked_at              :datetime
#  profiles               :integer          default([]), not null, is an Array
#  remember_created_at    :datetime
#  reset_password_sent_at :datetime
#  reset_password_token   :string
#  sign_in_count          :integer          default(0), not null
#  unconfirmed_email      :string
#  unlock_token           :string
#  created_at             :datetime         not null
#  updated_at             :datetime         not null
#
# Indexes
#
#  index_users_on_confirmation_token    (confirmation_token) UNIQUE
#  index_users_on_email                 (email) UNIQUE
#  index_users_on_reset_password_token  (reset_password_token) UNIQUE
#  index_users_on_unlock_token          (unlock_token) UNIQUE
#

FactoryBot.define do
  factory :user, class: 'User' do
    nombre { Faker::Name.first_name }
    apellido { Faker::Name.last_name }
    email { Faker::Internet.email }
    password { "password#{rand(99_999)}" }
    confirmed_at { Faker::Date.backward }

    trait :admin do
      developer { true }
    end

    trait :developer do
      developer { true }
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
pg_rails-7.1.5 pg_engine/spec/factories/users.rb
pg_rails-7.1.4 pg_engine/spec/factories/users.rb
pg_rails-7.1.3 pg_engine/spec/factories/users.rb
pg_rails-7.1.2 pg_engine/spec/factories/users.rb
pg_rails-7.1.1.pre.6 pg_engine/spec/factories/users.rb
pg_rails-7.1.1.pre.5 pg_engine/spec/factories/users.rb