adding basic tests or user model, more to come

This commit is contained in:
Michael McCabe
2013-09-06 15:55:08 -04:00
parent 69c180e845
commit 16d1150375
3 changed files with 43 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
require 'spec_helper.rb'
=begin
describe "PaidTimeOff" do
user = User.new(
first_name: 'Tester',
last_name: 'MGee',
email: 'tester.mgee@gmail.com',
password: 'password',
password_confirmation: 'password'
)
expect(user).to be_valid
end
=end