appease our new robot overlords.

(I voted for Krang)
This commit is contained in:
Joseph Mastey
2017-12-12 21:00:45 -06:00
parent 4587a5ff67
commit bb863f5156
9 changed files with 34 additions and 32 deletions
+3 -3
View File
@@ -6,11 +6,11 @@ class UserFixture
end
def self.normal_user
password = 'thi$ 1s cOmplExEr'
User.create!(first_name: 'Joe', last_name: 'Schmoe', email: 'joe@schmoe.com',
password = "thi$ 1s cOmplExEr"
User.create!(first_name: "Joe", last_name: "Schmoe", email: "joe@schmoe.com",
password: password, password_confirmation: password).tap do |user|
def user.clear_password
'thi$ 1s cOmplExEr'
"thi$ 1s cOmplExEr"
end
end
end