Files
railsgoat/spec/models/paid_time_off_spec.rb
T
2013-09-06 15:55:08 -04:00

14 lines
248 B
Ruby

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