]> git.openstreetmap.org Git - rails.git/blob - test/fixtures/users.yml
Merge 15165:15373 from trunk.
[rails.git] / test / fixtures / users.yml
1 # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
2 normal_user:
3   id: 1
4   email: test@openstreetmap.org
5   active: true
6   pass_crypt: <%= Digest::MD5.hexdigest('test') %>
7   creation_time: "2007-01-01 00:00:00"
8   display_name: test
9   data_public: false
10   description: test
11   home_lat: 12.1
12   home_lon: 12.1
13   home_zoom: 3
14   
15 public_user:
16   id: 2
17   email: test@example.com
18   active: true
19   pass_crypt: <%= Digest::MD5.hexdigest('test') %>
20   creation_time: "2008-05-01 01:23:45"
21   display_name: test2
22   data_public: true
23   description: some test description
24   home_lat: 12
25   home_lon: 12
26   home_zoom: 12
27   
28 inactive_user:
29   id: 3
30   email: inactive@openstreetmap.org
31   active: false
32   pass_crypt: <%= Digest::MD5::hexdigest('test2') %>
33   creation_time: "2008-07-01 02:23:45"
34   display_name: Inactive User
35   data_public: true
36   description: description
37   home_lat: 123.4
38   home_lon: 12.34
39   home_zoom: 15
40   
41 second_public_user:
42   id: 4
43   email: public@OpenStreetMap.org
44   active: true
45   pass_crypt: <%= Digest::MD5.hexdigest('test') %>
46   creation_time: "2008-05-01 01:23:45"
47   display_name: pulibc_test2
48   data_public: true
49   description: some test description
50   home_lat: 89
51   home_lon: 87
52   home_zoom: 12
53