diff options
| author | simon <simon@zagal.(none)> | 2009-02-08 23:15:11 +0100 |
|---|---|---|
| committer | hukl <hukl@eight.local> | 2009-02-15 20:22:01 +0100 |
| commit | 9f94a70c3e3d9bf766cb9663b0a904d30a190d85 (patch) | |
| tree | 4b4bbf567ec60a939d024b083b478d72476700a5 /test/fixtures | |
| parent | 48ffd4eb446bcaeba7651758ec3002f342702249 (diff) | |
* initial commit of the stripped restful-authentication
* http basic auth and login from cookie have been removed
* no it does not work yet, it's so f*cking secure, it won't even let legitimate users login
Diffstat (limited to 'test/fixtures')
| -rw-r--r-- | test/fixtures/users.yml | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/test/fixtures/users.yml b/test/fixtures/users.yml index 74fafbd..3abe206 100644 --- a/test/fixtures/users.yml +++ b/test/fixtures/users.yml | |||
| @@ -1,13 +1,18 @@ | |||
| 1 | # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html | ||
| 2 | 1 | ||
| 3 | one: | 2 | quentin: |
| 4 | login: MyString | 3 | id: 1 |
| 5 | email: MyString | 4 | login: quentin |
| 6 | crypted_password: MyString | 5 | email: quentin@example.com |
| 7 | salt: MyString | 6 | salt: 356a192b7913b04c54574d18c28d46e6395428ab # SHA1('0') |
| 7 | crypted_password: 89e27e324f2dee0fb72034631aa1bc3ca28ea574 # 'monkey' | ||
| 8 | created_at: <%= 5.days.ago.to_s :db %> | ||
| 9 | |||
| 10 | aaron: | ||
| 11 | id: 2 | ||
| 12 | login: aaron | ||
| 13 | email: aaron@example.com | ||
| 14 | salt: da4b9237bacccdf19c0760cab7aec4a8359010b0 # SHA1('1') | ||
| 15 | crypted_password: cf39f8e6972c25ac72ccc801cab755ef15bca09b # 'monkey' | ||
| 16 | created_at: <%= 1.days.ago.to_s :db %> | ||
| 17 | |||
| 8 | 18 | ||
| 9 | two: | ||
| 10 | login: MyString | ||
| 11 | email: MyString | ||
| 12 | crypted_password: MyString | ||
| 13 | salt: MyString | ||
