1
0
مراية لـ https://github.com/postalserver/postal.git تم المزامنة 2025-12-01 05:43:04 +00:00

initial test suite

هذا الالتزام موجود في:
Adam Cooke
2017-05-08 14:48:15 +01:00
الأصل 1758dc466a
التزام 2bde75720c
14 ملفات معدلة مع 335 إضافات و8 حذوفات

عرض الملف

@@ -0,0 +1,36 @@
# == Schema Information
#
# Table name: users
#
# id :integer not null, primary key
# uuid :string(255)
# first_name :string(255)
# last_name :string(255)
# email_address :string(255)
# password_digest :string(255)
# time_zone :string(255)
# email_verification_token :string(255)
# email_verified_at :datetime
# created_at :datetime
# updated_at :datetime
# password_reset_token :string(255)
# password_reset_token_valid_until :datetime
# admin :boolean default(FALSE)
#
# Indexes
#
# index_users_on_email_address (email_address)
# index_users_on_uuid (uuid)
#
FactoryGirl.define do
factory :user do
first_name "John"
last_name "Doe"
password "passw0rd"
email_verified_at Time.now
sequence(:email_address) { |n| "user#{n}@example.com" }
end
end