add devise user

This commit is contained in:
João Geonizeli
2022-07-20 21:31:46 -03:00
parent d327884cce
commit 072e1de01b
10 changed files with 527 additions and 1 deletions

24
spec/models/user_spec.rb Normal file
View File

@@ -0,0 +1,24 @@
# == Schema Information
#
# Table name: users
#
# id :bigint not null, primary key
# email :string default(""), not null
# encrypted_password :string default(""), not null
# name :string not null
# remember_created_at :datetime
# reset_password_sent_at :datetime
# reset_password_token :string
# created_at :datetime not null
# updated_at :datetime not null
#
# Indexes
#
# index_users_on_email (email) UNIQUE
# index_users_on_reset_password_token (reset_password_token) UNIQUE
#
require 'rails_helper'
RSpec.describe User, type: :model do
pending "add some examples to (or delete) #{__FILE__}"
end