diff options
Diffstat (limited to 'test/fixtures/users.yml')
-rw-r--r-- | test/fixtures/users.yml | 114 |
1 files changed, 0 insertions, 114 deletions
diff --git a/test/fixtures/users.yml b/test/fixtures/users.yml deleted file mode 100644 index 0d3f5bb4a..000000000 --- a/test/fixtures/users.yml +++ /dev/null @@ -1,114 +0,0 @@ -# == Schema Information -# -# Table name: users -# -# id :integer not null, primary key -# email :string(255) not null -# name :string(255) not null -# hashed_password :string(255) not null -# salt :string(255) not null -# created_at :datetime not null -# updated_at :datetime not null -# email_confirmed :boolean default(FALSE), not null -# url_name :text not null -# last_daily_track_email :datetime default(2000-01-01 00:00:00 UTC) -# admin_level :string(255) default("none"), not null -# ban_text :text default(""), not null -# about_me :text default(""), not null -# locale :string(255) -# email_bounced_at :datetime -# email_bounce_message :text default(""), not null -# no_limit :boolean default(FALSE), not null -# receive_email_alerts :boolean default(TRUE), not null -# address :string(255) -# dob :date -# can_make_batch_requests :boolean default(FALSE), not null -# - -bob_smith_user: - id: "1" - name: Bob Smith - url_name: bob_smith - email: bob@localhost - salt: "-6116981980.392287733335677" - hashed_password: 6b7cd45a5f35fd83febc0452a799530398bfb6e8 # jonespassword - updated_at: 2007-10-31 10:39:15.491593 - created_at: 2007-10-31 10:39:15.491593 - email_confirmed: true - admin_level: 'none' - ban_text: '' - locale: 'en' - about_me: 'I like making requests about fancy dogs and naughty chickens and stuff.' - receive_email_alerts: true -silly_name_user: - id: "2" - name: "Silly <em>Name</em>" - url_name: silly_emnameem - email: silly@localhost - salt: "-6116981980.392287733335677" - hashed_password: 6b7cd45a5f35fd83febc0452a799530398bfb6e8 # jonespassword - updated_at: 2007-11-01 10:39:15.491593 - created_at: 2007-11-01 10:39:15.491593 - email_confirmed: true - admin_level: 'none' - ban_text: '' - locale: 'en' - about_me: '' - receive_email_alerts: true -admin_user: - id: "3" - name: Joe Admin - url_name: joe_admin - email: joe@localhost - salt: "-6116981980.392287733335677" - hashed_password: 6b7cd45a5f35fd83febc0452a799530398bfb6e8 # jonespassword - updated_at: 2007-11-01 10:39:15.491593 - created_at: 2007-11-01 10:39:15.491593 - email_confirmed: false - admin_level: 'super' - ban_text: '' - locale: '' - about_me: '' - receive_email_alerts: true -unconfirmed_user: - id: "4" - name: "Unconfirmed" - url_name: unconfirmed - email: unconfirmed@localhost - salt: "-6116981980.392287733335677" - hashed_password: 6b7cd45a5f35fd83febc0452a799530398bfb6e8 # jonespassword - updated_at: 2007-11-01 10:39:15.491593 - created_at: 2007-11-01 10:39:15.491593 - email_confirmed: false - admin_level: 'none' - ban_text: '' - about_me: '' - receive_email_alerts: true -robin_user: - id: 5 - name: Robin Houston - url_name: robin_houston - email: robin@localhost - salt: "-6116981980.392287733335677" - hashed_password: 6b7cd45a5f35fd83febc0452a799530398bfb6e8 # jonespassword - updated_at: 2012-01-01 10:39:15.491593 - created_at: 2012-01-01 10:39:15.491593 - email_confirmed: true - admin_level: 'none' - ban_text: '' - about_me: 'I am the best' - receive_email_alerts: true -another_user: - id: 6 - name: Another User - url_name: another_user - email: another@localhost - salt: "-6116981980.392287733335677" - hashed_password: 6b7cd45a5f35fd83febc0452a799530398bfb6e8 # jonespassword - updated_at: 2012-01-01 10:39:15.491593 - created_at: 2012-01-01 10:39:15.491593 - email_confirmed: true - admin_level: 'none' - ban_text: '' - about_me: 'Just another user' - receive_email_alerts: true |