-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
needed to add fixtures for the tests to pass since Devise added some …
…stuff
- Loading branch information
1 parent
15e01c7
commit e26b50d
Showing
1 changed file
with
17 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,20 @@ | |
# model remove the "{}" from the fixture names and add the columns immediately | ||
# below each fixture, per the syntax in the comments below | ||
# | ||
one: {} | ||
# column: value | ||
# | ||
two: {} | ||
# column: value | ||
one: | ||
email: [email protected] | ||
encrypted_password: <%= Devise::Encryptor.digest(User, 'password') %> | ||
reset_password_token: | ||
reset_password_sent_at: | ||
remember_created_at: | ||
created_at: <%= Time.now %> | ||
updated_at: <%= Time.now %> | ||
|
||
two: | ||
email: [email protected] | ||
encrypted_password: <%= Devise::Encryptor.digest(User, 'password') %> | ||
reset_password_token: | ||
reset_password_sent_at: | ||
remember_created_at: | ||
created_at: <%= Time.now %> | ||
updated_at: <%= Time.now %> |