require 'rails_helper' RSpec.describe UserAccount, type: :model do it { should have_secure_password } it { should validate_presence_of(:email) } it { should validate_presence_of(:first_name) } it { should validate_presence_of(:last_name) } end