Displaying 1 result from an estimated 1 matches for "password_hash_type".
2006 Apr 02
1
Fixtures For Logging In
...tests for my app and am having some 
troubles getting past the initial login.
Here is what my fixture looks like
users.yml
user_001:
  id: "7"
  login: testuser001,
  email: testuser001@example.com,
  state: 2,
  password: b78d41e7ccb8da412f4f66f754121667,
  password_salt: 78cKRniDIo,
  password_hash_type: md5
I took the password and the salt out of the database from another test 
entry that I made so I''m assuming that it should work in this example too.
Unfortunately it doesn''t. Instead of logging in correctly, I get rejected.
Any ideas why this would be happening. I''ve...