Guest User

Untitled

a guest
Jul 22nd, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. users.yml
  2.  
  3. user1:
  4. username: user1
  5. password: asdlkj
  6.  
  7. ------
  8.  
  9.  
  10. user_test.rb
  11. (...)
  12. test "passwordchange" do
  13. assert_equal @user1, User.authenticate("user1", "asdlkj") #SUCCESS
  14. assert_equal @user1.username, "user1" #FAIL
  15.  
  16. (...)
  17. end
Add Comment
Please, Sign In to add comment