blob: 0f4dbe99d6f42f1bc23ea190f6eb2bf1b0796a10 (
plain)
1
2
3
4
5
6
7
8
|
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
|