public_id 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +85 -0
  3. data/Rakefile +32 -0
  4. data/lib/public_id/activerecord/publically_identified_by.rb +55 -0
  5. data/lib/public_id/util.rb +17 -0
  6. data/lib/public_id/version.rb +3 -0
  7. data/lib/public_id.rb +7 -0
  8. data/lib/tasks/public_id_tasks.rake +4 -0
  9. data/test/dummy/README.rdoc +28 -0
  10. data/test/dummy/Rakefile +6 -0
  11. data/test/dummy/app/assets/javascripts/application.js +13 -0
  12. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  13. data/test/dummy/app/controllers/application_controller.rb +5 -0
  14. data/test/dummy/app/helpers/application_helper.rb +2 -0
  15. data/test/dummy/app/models/user.rb +3 -0
  16. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  17. data/test/dummy/bin/bundle +3 -0
  18. data/test/dummy/bin/rails +4 -0
  19. data/test/dummy/bin/rake +4 -0
  20. data/test/dummy/config/application.rb +23 -0
  21. data/test/dummy/config/boot.rb +5 -0
  22. data/test/dummy/config/database.yml +25 -0
  23. data/test/dummy/config/environment.rb +5 -0
  24. data/test/dummy/config/environments/development.rb +29 -0
  25. data/test/dummy/config/environments/production.rb +80 -0
  26. data/test/dummy/config/environments/test.rb +36 -0
  27. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  28. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  29. data/test/dummy/config/initializers/inflections.rb +16 -0
  30. data/test/dummy/config/initializers/mime_types.rb +5 -0
  31. data/test/dummy/config/initializers/secret_token.rb +12 -0
  32. data/test/dummy/config/initializers/session_store.rb +3 -0
  33. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  34. data/test/dummy/config/locales/en.yml +23 -0
  35. data/test/dummy/config/routes.rb +56 -0
  36. data/test/dummy/config.ru +4 -0
  37. data/test/dummy/db/development.sqlite3 +0 -0
  38. data/test/dummy/db/migrate/20140109180823_create_users.rb +10 -0
  39. data/test/dummy/db/schema.rb +23 -0
  40. data/test/dummy/db/test.sqlite3 +0 -0
  41. data/test/dummy/log/development.log +14 -0
  42. data/test/dummy/log/test.log +1631 -0
  43. data/test/dummy/public/404.html +58 -0
  44. data/test/dummy/public/422.html +58 -0
  45. data/test/dummy/public/500.html +57 -0
  46. data/test/dummy/public/favicon.ico +0 -0
  47. data/test/dummy/test/fixtures/users.yml +13 -0
  48. data/test/dummy/test/models/user_test.rb +7 -0
  49. data/test/public_id_test.rb +39 -0
  50. data/test/test_helper.rb +15 -0
  51. metadata +171 -0
@@ -0,0 +1,1631 @@
1
+  (0.4ms) begin transaction
2
+ -------------------------------------------------------------------------
3
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publicaly_identified_by
4
+ -------------------------------------------------------------------------
5
+  (0.1ms) rollback transaction
6
+  (0.4ms) begin transaction
7
+ -------------------------------------------------------------------------
8
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publicaly_identified_by
9
+ -------------------------------------------------------------------------
10
+  (0.1ms) rollback transaction
11
+  (0.5ms) begin transaction
12
+ -------------------------------------------------------------------------
13
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publicaly_identified_by
14
+ -------------------------------------------------------------------------
15
+  (0.1ms) rollback transaction
16
+  (0.4ms) begin transaction
17
+ --------------------------------------------------------------------------
18
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
19
+ --------------------------------------------------------------------------
20
+  (0.1ms) rollback transaction
21
+  (0.4ms) begin transaction
22
+ --------------------------------------------------------------------------
23
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
24
+ --------------------------------------------------------------------------
25
+  (0.1ms) rollback transaction
26
+  (0.1ms) begin transaction
27
+ -------------------------------------------------
28
+ PublicIdTest: test_Doesn't_change_on_save,_update
29
+ -------------------------------------------------
30
+  (0.1ms) SAVEPOINT active_record_1
31
+ SQL (8.9ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 09 Jan 2014 18:19:08 UTC +00:00], ["updated_at", Thu, 09 Jan 2014 18:19:08 UTC +00:00]]
32
+  (0.1ms) RELEASE SAVEPOINT active_record_1
33
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
34
+  (0.1ms) SAVEPOINT active_record_1
35
+  (0.1ms) RELEASE SAVEPOINT active_record_1
36
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
37
+  (1.1ms) rollback transaction
38
+  (0.1ms) begin transaction
39
+ -------------------------------------------
40
+ PublicIdTest: test_Ident_should_==_to_param
41
+ -------------------------------------------
42
+  (0.1ms) rollback transaction
43
+  (0.1ms) begin transaction
44
+ --------------------------------------------------
45
+ PublicIdTest: test_New_users_get_an_ID_initialized
46
+ --------------------------------------------------
47
+  (0.1ms) rollback transaction
48
+  (0.4ms) begin transaction
49
+ --------------------------------------------------------------------------
50
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
51
+ --------------------------------------------------------------------------
52
+  (0.1ms) rollback transaction
53
+  (0.1ms) begin transaction
54
+ -------------------------------------------------
55
+ PublicIdTest: test_Doesn't_change_on_save,_update
56
+ -------------------------------------------------
57
+  (0.1ms) rollback transaction
58
+  (0.1ms) begin transaction
59
+ -------------------------------------------
60
+ PublicIdTest: test_Ident_should_==_to_param
61
+ -------------------------------------------
62
+  (0.0ms) rollback transaction
63
+  (0.1ms) begin transaction
64
+ --------------------------------------------------
65
+ PublicIdTest: test_New_users_get_an_ID_initialized
66
+ --------------------------------------------------
67
+  (0.0ms) rollback transaction
68
+  (0.4ms) begin transaction
69
+ --------------------------------------------------------------------------
70
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
71
+ --------------------------------------------------------------------------
72
+  (0.1ms) rollback transaction
73
+  (0.1ms) begin transaction
74
+ -------------------------------------------------
75
+ PublicIdTest: test_Doesn't_change_on_save,_update
76
+ -------------------------------------------------
77
+  (0.1ms) rollback transaction
78
+  (0.1ms) begin transaction
79
+ -------------------------------------------
80
+ PublicIdTest: test_Ident_should_==_to_param
81
+ -------------------------------------------
82
+  (0.0ms) rollback transaction
83
+  (0.1ms) begin transaction
84
+ --------------------------------------------------
85
+ PublicIdTest: test_New_users_get_an_ID_initialized
86
+ --------------------------------------------------
87
+  (0.1ms) rollback transaction
88
+  (0.5ms) begin transaction
89
+ --------------------------------------------------------------------------
90
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
91
+ --------------------------------------------------------------------------
92
+  (0.1ms) rollback transaction
93
+  (0.1ms) begin transaction
94
+ -------------------------------------------------
95
+ PublicIdTest: test_Doesn't_change_on_save,_update
96
+ -------------------------------------------------
97
+ User Exists (0.5ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-jdUofguc_6it7g' LIMIT 1
98
+  (0.1ms) SAVEPOINT active_record_1
99
+ SQL (9.4ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:41:49 UTC +00:00], ["ident", "use-jdUofguc_6it7g"], ["updated_at", Thu, 09 Jan 2014 18:41:49 UTC +00:00]]
100
+  (0.1ms) RELEASE SAVEPOINT active_record_1
101
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
102
+  (0.1ms) SAVEPOINT active_record_1
103
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
105
+  (0.5ms) rollback transaction
106
+  (0.1ms) begin transaction
107
+ -------------------------------------------
108
+ PublicIdTest: test_Ident_should_==_to_param
109
+ -------------------------------------------
110
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-2mFTAx6DK-Cepw' LIMIT 1
111
+  (0.0ms) rollback transaction
112
+  (0.1ms) begin transaction
113
+ --------------------------------------------------
114
+ PublicIdTest: test_New_users_get_an_ID_initialized
115
+ --------------------------------------------------
116
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-VQOCCE51tcbcgg' LIMIT 1
117
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-09GMYun_nl_5cQ' LIMIT 1
118
+  (0.1ms) rollback transaction
119
+  (0.5ms) begin transaction
120
+ --------------------------------------------------------------------------
121
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
122
+ --------------------------------------------------------------------------
123
+  (0.1ms) rollback transaction
124
+  (0.1ms) begin transaction
125
+ -------------------------------------------------
126
+ PublicIdTest: test_Doesn't_change_on_save,_update
127
+ -------------------------------------------------
128
+ User Exists (0.7ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-CdV3FnGOjqLPSQ' LIMIT 1
129
+  (0.1ms) SAVEPOINT active_record_1
130
+ SQL (8.6ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:42:39 UTC +00:00], ["ident", "use-CdV3FnGOjqLPSQ"], ["updated_at", Thu, 09 Jan 2014 18:42:39 UTC +00:00]]
131
+  (0.1ms) RELEASE SAVEPOINT active_record_1
132
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
133
+  (0.1ms) SAVEPOINT active_record_1
134
+  (0.1ms) RELEASE SAVEPOINT active_record_1
135
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
136
+  (0.5ms) rollback transaction
137
+  (0.1ms) begin transaction
138
+ -------------------------------------------
139
+ PublicIdTest: test_Ident_should_==_to_param
140
+ -------------------------------------------
141
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-98g_bXhf3J1CBg' LIMIT 1
142
+  (0.1ms) rollback transaction
143
+  (0.1ms) begin transaction
144
+ --------------------------------------------------
145
+ PublicIdTest: test_New_users_get_an_ID_initialized
146
+ --------------------------------------------------
147
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-sZ6cV5gb0Xj7mQ' LIMIT 1
148
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-q8MnzMsPeNf_4g' LIMIT 1
149
+  (0.0ms) rollback transaction
150
+  (0.4ms) begin transaction
151
+ --------------------------------------------------------------------------
152
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
153
+ --------------------------------------------------------------------------
154
+  (0.1ms) rollback transaction
155
+  (0.1ms) begin transaction
156
+ ------------------------------------------------
157
+ PublicIdTest: test_Can_be_looked_up_by_the_ident
158
+ ------------------------------------------------
159
+ User Exists (0.8ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-1RLFOCqQMfLbww' LIMIT 1
160
+  (0.1ms) SAVEPOINT active_record_1
161
+ SQL (6.6ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:44:14 UTC +00:00], ["ident", "use-1RLFOCqQMfLbww"], ["name", "joey"], ["updated_at", Thu, 09 Jan 2014 18:44:14 UTC +00:00]]
162
+  (0.1ms) RELEASE SAVEPOINT active_record_1
163
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."ident" = 'use-1RLFOCqQMfLbww' ORDER BY "users"."id" ASC LIMIT 1
164
+  (0.6ms) rollback transaction
165
+  (0.1ms) begin transaction
166
+ -------------------------------------------------
167
+ PublicIdTest: test_Doesn't_change_on_save,_update
168
+ -------------------------------------------------
169
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-j26r71_j9_xeYA' LIMIT 1
170
+  (0.1ms) SAVEPOINT active_record_1
171
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:44:14 UTC +00:00], ["ident", "use-j26r71_j9_xeYA"], ["updated_at", Thu, 09 Jan 2014 18:44:14 UTC +00:00]]
172
+  (0.1ms) RELEASE SAVEPOINT active_record_1
173
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
174
+  (0.0ms) SAVEPOINT active_record_1
175
+  (0.1ms) RELEASE SAVEPOINT active_record_1
176
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
177
+  (0.6ms) rollback transaction
178
+  (0.1ms) begin transaction
179
+ -------------------------------------------
180
+ PublicIdTest: test_Ident_should_==_to_param
181
+ -------------------------------------------
182
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-FZ53TAYa6Zt5iA' LIMIT 1
183
+  (0.0ms) rollback transaction
184
+  (0.1ms) begin transaction
185
+ --------------------------------------------------
186
+ PublicIdTest: test_New_users_get_an_ID_initialized
187
+ --------------------------------------------------
188
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-V0bg0lDV6b86KA' LIMIT 1
189
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-Ru4lQgGcNEqE-g' LIMIT 1
190
+  (0.1ms) rollback transaction
191
+  (0.4ms) begin transaction
192
+ --------------------------------------------------------------------------
193
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
194
+ --------------------------------------------------------------------------
195
+  (0.1ms) rollback transaction
196
+  (0.1ms) begin transaction
197
+ ------------------------------------------------
198
+ PublicIdTest: test_Can_be_looked_up_by_the_ident
199
+ ------------------------------------------------
200
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-wety45qxr4MRKA' LIMIT 1
201
+  (0.1ms) SAVEPOINT active_record_1
202
+ SQL (7.1ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:51:14 UTC +00:00], ["ident", "use-wety45qxr4MRKA"], ["name", "joey"], ["updated_at", Thu, 09 Jan 2014 18:51:14 UTC +00:00]]
203
+  (0.1ms) RELEASE SAVEPOINT active_record_1
204
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ident" = 'use-wety45qxr4MRKA' ORDER BY "users"."id" ASC LIMIT 1
205
+  (0.7ms) rollback transaction
206
+  (0.2ms) begin transaction
207
+ -------------------------------------------------
208
+ PublicIdTest: test_Doesn't_change_on_save,_update
209
+ -------------------------------------------------
210
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-lHIne77LRTq3_Q' LIMIT 1
211
+  (0.1ms) SAVEPOINT active_record_1
212
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:51:15 UTC +00:00], ["ident", "use-lHIne77LRTq3_Q"], ["updated_at", Thu, 09 Jan 2014 18:51:15 UTC +00:00]]
213
+  (0.1ms) RELEASE SAVEPOINT active_record_1
214
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
215
+  (0.1ms) SAVEPOINT active_record_1
216
+  (0.1ms) RELEASE SAVEPOINT active_record_1
217
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
218
+  (0.6ms) rollback transaction
219
+  (0.1ms) begin transaction
220
+ -------------------------------------------
221
+ PublicIdTest: test_Ident_should_==_to_param
222
+ -------------------------------------------
223
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-Idi8JIgkq0OBgQ' LIMIT 1
224
+  (0.1ms) rollback transaction
225
+  (0.1ms) begin transaction
226
+ -------------------------------------------------
227
+ PublicIdTest: test_Initialize_all_the_public_id's
228
+ -------------------------------------------------
229
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-Za2IF4ljkm0rfA' LIMIT 1
230
+  (0.0ms) SAVEPOINT active_record_1
231
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:51:15 UTC +00:00], ["ident", "use-Za2IF4ljkm0rfA"], ["updated_at", Thu, 09 Jan 2014 18:51:15 UTC +00:00]]
232
+  (0.1ms) RELEASE SAVEPOINT active_record_1
233
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-JrX0P9yBJzTFeQ' LIMIT 1
234
+  (0.0ms) SAVEPOINT active_record_1
235
+ SQL (1.0ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:51:15 UTC +00:00], ["ident", "use-JrX0P9yBJzTFeQ"], ["updated_at", Thu, 09 Jan 2014 18:51:15 UTC +00:00]]
236
+  (0.1ms) RELEASE SAVEPOINT active_record_1
237
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-PrnKkC4NOmOpNQ' LIMIT 1
238
+  (0.0ms) SAVEPOINT active_record_1
239
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:51:15 UTC +00:00], ["ident", "use-PrnKkC4NOmOpNQ"], ["updated_at", Thu, 09 Jan 2014 18:51:15 UTC +00:00]]
240
+  (0.0ms) RELEASE SAVEPOINT active_record_1
241
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
242
+  (0.7ms) rollback transaction
243
+  (0.1ms) begin transaction
244
+ --------------------------------------------------
245
+ PublicIdTest: test_New_users_get_an_ID_initialized
246
+ --------------------------------------------------
247
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-cj9LGWiXLsyYQw' LIMIT 1
248
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-ArP3GW5LW8l2yQ' LIMIT 1
249
+  (0.1ms) rollback transaction
250
+  (0.4ms) begin transaction
251
+ --------------------------------------------------------------------------
252
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
253
+ --------------------------------------------------------------------------
254
+  (0.1ms) rollback transaction
255
+  (0.1ms) begin transaction
256
+ ------------------------------------------------
257
+ PublicIdTest: test_Can_be_looked_up_by_the_ident
258
+ ------------------------------------------------
259
+ User Exists (0.7ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-Sz2vGu2vpWTNdQ' LIMIT 1
260
+  (0.1ms) SAVEPOINT active_record_1
261
+ SQL (9.1ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:14:55 UTC +00:00], ["ident", "use-Sz2vGu2vpWTNdQ"], ["name", "joey"], ["updated_at", Thu, 09 Jan 2014 21:14:55 UTC +00:00]]
262
+  (0.1ms) RELEASE SAVEPOINT active_record_1
263
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ident" = 'use-Sz2vGu2vpWTNdQ' ORDER BY "users"."id" ASC LIMIT 1
264
+  (0.4ms) rollback transaction
265
+  (0.1ms) begin transaction
266
+ -------------------------------------------------
267
+ PublicIdTest: test_Doesn't_change_on_save,_update
268
+ -------------------------------------------------
269
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-z0SslfxG54xLfg' LIMIT 1
270
+  (0.1ms) SAVEPOINT active_record_1
271
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:14:55 UTC +00:00], ["ident", "use-z0SslfxG54xLfg"], ["updated_at", Thu, 09 Jan 2014 21:14:55 UTC +00:00]]
272
+  (0.0ms) RELEASE SAVEPOINT active_record_1
273
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
274
+  (0.0ms) SAVEPOINT active_record_1
275
+  (0.1ms) RELEASE SAVEPOINT active_record_1
276
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
277
+  (0.4ms) rollback transaction
278
+  (0.1ms) begin transaction
279
+ -------------------------------------------
280
+ PublicIdTest: test_Ident_should_==_to_param
281
+ -------------------------------------------
282
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-jNaV9uEqsU8vuw' LIMIT 1
283
+  (0.1ms) rollback transaction
284
+  (0.1ms) begin transaction
285
+ -------------------------------------------------
286
+ PublicIdTest: test_Initialize_all_the_public_id's
287
+ -------------------------------------------------
288
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-dvG8Xfg9D5ttuA' LIMIT 1
289
+  (0.0ms) SAVEPOINT active_record_1
290
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:14:55 UTC +00:00], ["ident", "use-dvG8Xfg9D5ttuA"], ["updated_at", Thu, 09 Jan 2014 21:14:55 UTC +00:00]]
291
+  (0.0ms) RELEASE SAVEPOINT active_record_1
292
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-u4VAkpYq4xQSpg' LIMIT 1
293
+  (0.0ms) SAVEPOINT active_record_1
294
+ SQL (1.1ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:14:55 UTC +00:00], ["ident", "use-u4VAkpYq4xQSpg"], ["updated_at", Thu, 09 Jan 2014 21:14:55 UTC +00:00]]
295
+  (0.1ms) RELEASE SAVEPOINT active_record_1
296
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-5WBPyEqvRk0Sbw' LIMIT 1
297
+  (0.0ms) SAVEPOINT active_record_1
298
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:14:55 UTC +00:00], ["ident", "use-5WBPyEqvRk0Sbw"], ["updated_at", Thu, 09 Jan 2014 21:14:55 UTC +00:00]]
299
+  (0.0ms) RELEASE SAVEPOINT active_record_1
300
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
301
+  (0.7ms) rollback transaction
302
+  (0.1ms) begin transaction
303
+ --------------------------------------------------
304
+ PublicIdTest: test_New_users_get_an_ID_initialized
305
+ --------------------------------------------------
306
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-1cn30r8DGWx8ZA' LIMIT 1
307
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-UzlkJLYfmW5adA' LIMIT 1
308
+  (0.1ms) rollback transaction
309
+  (0.5ms) begin transaction
310
+ --------------------------------------------------------------------------
311
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
312
+ --------------------------------------------------------------------------
313
+  (0.1ms) rollback transaction
314
+  (0.1ms) begin transaction
315
+ ------------------------------------------------
316
+ PublicIdTest: test_Can_be_looked_up_by_the_ident
317
+ ------------------------------------------------
318
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-Y8kHars3FEc_6w' LIMIT 1
319
+  (0.1ms) SAVEPOINT active_record_1
320
+ SQL (7.3ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:15:47 UTC +00:00], ["ident", "use-Y8kHars3FEc_6w"], ["name", "joey"], ["updated_at", Thu, 09 Jan 2014 21:15:47 UTC +00:00]]
321
+  (0.1ms) RELEASE SAVEPOINT active_record_1
322
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ident" = 'use-Y8kHars3FEc_6w' ORDER BY "users"."id" ASC LIMIT 1
323
+  (0.5ms) rollback transaction
324
+  (0.1ms) begin transaction
325
+ -------------------------------------------------
326
+ PublicIdTest: test_Doesn't_change_on_save,_update
327
+ -------------------------------------------------
328
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-3B9jka4rOxBLgg' LIMIT 1
329
+  (0.1ms) SAVEPOINT active_record_1
330
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:15:47 UTC +00:00], ["ident", "use-3B9jka4rOxBLgg"], ["updated_at", Thu, 09 Jan 2014 21:15:47 UTC +00:00]]
331
+  (0.1ms) RELEASE SAVEPOINT active_record_1
332
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
333
+  (0.0ms) SAVEPOINT active_record_1
334
+  (0.1ms) RELEASE SAVEPOINT active_record_1
335
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
336
+  (0.5ms) rollback transaction
337
+  (0.1ms) begin transaction
338
+ -------------------------------------------
339
+ PublicIdTest: test_Ident_should_==_to_param
340
+ -------------------------------------------
341
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-8IOx_n5AWz4axQ' LIMIT 1
342
+  (0.1ms) rollback transaction
343
+  (0.1ms) begin transaction
344
+ -------------------------------------------------
345
+ PublicIdTest: test_Initialize_all_the_public_id's
346
+ -------------------------------------------------
347
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-vJvHrNcLPDLhBA' LIMIT 1
348
+  (0.0ms) SAVEPOINT active_record_1
349
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:15:47 UTC +00:00], ["ident", "use-vJvHrNcLPDLhBA"], ["updated_at", Thu, 09 Jan 2014 21:15:47 UTC +00:00]]
350
+  (0.0ms) RELEASE SAVEPOINT active_record_1
351
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-Pq53LCMolACpDA' LIMIT 1
352
+  (0.0ms) SAVEPOINT active_record_1
353
+ SQL (1.0ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:15:47 UTC +00:00], ["ident", "use-Pq53LCMolACpDA"], ["updated_at", Thu, 09 Jan 2014 21:15:47 UTC +00:00]]
354
+  (0.1ms) RELEASE SAVEPOINT active_record_1
355
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-cr59M6U3zzI6zg' LIMIT 1
356
+  (0.0ms) SAVEPOINT active_record_1
357
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:15:47 UTC +00:00], ["ident", "use-cr59M6U3zzI6zg"], ["updated_at", Thu, 09 Jan 2014 21:15:47 UTC +00:00]]
358
+  (0.0ms) RELEASE SAVEPOINT active_record_1
359
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
360
+  (0.6ms) rollback transaction
361
+  (0.1ms) begin transaction
362
+ --------------------------------------------------
363
+ PublicIdTest: test_New_users_get_an_ID_initialized
364
+ --------------------------------------------------
365
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-jDlIPWs8CHRpbA' LIMIT 1
366
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-nhOkXuZd9RU72g' LIMIT 1
367
+  (0.1ms) rollback transaction
368
+  (0.4ms) begin transaction
369
+ --------------------------------------------------------------------------
370
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
371
+ --------------------------------------------------------------------------
372
+  (0.1ms) rollback transaction
373
+  (0.1ms) begin transaction
374
+ ------------------------------------------------
375
+ PublicIdTest: test_Can_be_looked_up_by_the_ident
376
+ ------------------------------------------------
377
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-skU6lSrmtr63cg' LIMIT 1
378
+  (0.0ms) SAVEPOINT active_record_1
379
+ SQL (5.4ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:16:09 UTC +00:00], ["ident", "use-skU6lSrmtr63cg"], ["name", "joey"], ["updated_at", Thu, 09 Jan 2014 21:16:09 UTC +00:00]]
380
+  (0.2ms) RELEASE SAVEPOINT active_record_1
381
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."ident" = 'use-skU6lSrmtr63cg' ORDER BY "users"."id" ASC LIMIT 1
382
+  (1.6ms) rollback transaction
383
+  (0.1ms) begin transaction
384
+ -------------------------------------------------
385
+ PublicIdTest: test_Doesn't_change_on_save,_update
386
+ -------------------------------------------------
387
+ User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-fO6yyNn3cwy1fg' LIMIT 1
388
+  (0.1ms) SAVEPOINT active_record_1
389
+ SQL (0.8ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:16:09 UTC +00:00], ["ident", "use-fO6yyNn3cwy1fg"], ["updated_at", Thu, 09 Jan 2014 21:16:09 UTC +00:00]]
390
+  (0.1ms) RELEASE SAVEPOINT active_record_1
391
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
392
+  (0.1ms) SAVEPOINT active_record_1
393
+  (0.1ms) RELEASE SAVEPOINT active_record_1
394
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
395
+  (0.5ms) rollback transaction
396
+  (0.1ms) begin transaction
397
+ -------------------------------------------
398
+ PublicIdTest: test_Ident_should_==_to_param
399
+ -------------------------------------------
400
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-nGqjayObqF2qrA' LIMIT 1
401
+  (0.0ms) rollback transaction
402
+  (0.1ms) begin transaction
403
+ -------------------------------------------------
404
+ PublicIdTest: test_Initialize_all_the_public_id's
405
+ -------------------------------------------------
406
+ SQL (0.1ms) UPDATE "users" SET "ident" = NULL
407
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
408
+  (0.1ms) rollback transaction
409
+  (0.1ms) begin transaction
410
+ --------------------------------------------------
411
+ PublicIdTest: test_New_users_get_an_ID_initialized
412
+ --------------------------------------------------
413
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-iWauzfsZ00XLIA' LIMIT 1
414
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-X6tsXLP7kJK42Q' LIMIT 1
415
+  (0.1ms) rollback transaction
416
+  (0.4ms) begin transaction
417
+ --------------------------------------------------------------------------
418
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
419
+ --------------------------------------------------------------------------
420
+  (0.1ms) rollback transaction
421
+  (0.1ms) begin transaction
422
+ ------------------------------------------------
423
+ PublicIdTest: test_Can_be_looked_up_by_the_ident
424
+ ------------------------------------------------
425
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-O7U-xLC2ElS1wg' LIMIT 1
426
+  (0.1ms) SAVEPOINT active_record_1
427
+ SQL (6.6ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:16:51 UTC +00:00], ["ident", "use-O7U-xLC2ElS1wg"], ["name", "joey"], ["updated_at", Thu, 09 Jan 2014 21:16:51 UTC +00:00]]
428
+  (0.2ms) RELEASE SAVEPOINT active_record_1
429
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."ident" = 'use-O7U-xLC2ElS1wg' ORDER BY "users"."id" ASC LIMIT 1
430
+  (1.7ms) rollback transaction
431
+  (0.1ms) begin transaction
432
+ -------------------------------------------------
433
+ PublicIdTest: test_Doesn't_change_on_save,_update
434
+ -------------------------------------------------
435
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-zFCmyXhWMPJWUg' LIMIT 1
436
+  (0.1ms) SAVEPOINT active_record_1
437
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:16:52 UTC +00:00], ["ident", "use-zFCmyXhWMPJWUg"], ["updated_at", Thu, 09 Jan 2014 21:16:52 UTC +00:00]]
438
+  (0.1ms) RELEASE SAVEPOINT active_record_1
439
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
440
+  (0.0ms) SAVEPOINT active_record_1
441
+  (0.1ms) RELEASE SAVEPOINT active_record_1
442
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
443
+  (0.5ms) rollback transaction
444
+  (0.1ms) begin transaction
445
+ -------------------------------------------
446
+ PublicIdTest: test_Ident_should_==_to_param
447
+ -------------------------------------------
448
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-8buLbOJrCsq1hg' LIMIT 1
449
+  (0.1ms) rollback transaction
450
+  (0.1ms) begin transaction
451
+ -------------------------------------------------
452
+ PublicIdTest: test_Initialize_all_the_public_id's
453
+ -------------------------------------------------
454
+  (0.2ms) SELECT COUNT(*) FROM "users"
455
+  (0.2ms) rollback transaction
456
+  (0.1ms) begin transaction
457
+ --------------------------------------------------
458
+ PublicIdTest: test_New_users_get_an_ID_initialized
459
+ --------------------------------------------------
460
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-dwJmTCjcFH5HHQ' LIMIT 1
461
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-hXRnSAs08fXeUg' LIMIT 1
462
+  (0.0ms) rollback transaction
463
+  (0.7ms) begin transaction
464
+ --------------------------------------------------------------------------
465
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
466
+ --------------------------------------------------------------------------
467
+  (0.1ms) rollback transaction
468
+  (0.1ms) begin transaction
469
+ ------------------------------------------------
470
+ PublicIdTest: test_Can_be_looked_up_by_the_ident
471
+ ------------------------------------------------
472
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-ItD3xjJn6eq9NA' LIMIT 1
473
+  (0.0ms) SAVEPOINT active_record_1
474
+ SQL (6.9ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:18:13 UTC +00:00], ["ident", "use-ItD3xjJn6eq9NA"], ["name", "joey"], ["updated_at", Thu, 09 Jan 2014 21:18:13 UTC +00:00]]
475
+  (0.1ms) RELEASE SAVEPOINT active_record_1
476
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."ident" = 'use-ItD3xjJn6eq9NA' ORDER BY "users"."id" ASC LIMIT 1
477
+  (1.7ms) rollback transaction
478
+  (0.1ms) begin transaction
479
+ -------------------------------------------------
480
+ PublicIdTest: test_Doesn't_change_on_save,_update
481
+ -------------------------------------------------
482
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-q4KYpZlCIo2wSQ' LIMIT 1
483
+  (0.1ms) SAVEPOINT active_record_1
484
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:18:13 UTC +00:00], ["ident", "use-q4KYpZlCIo2wSQ"], ["updated_at", Thu, 09 Jan 2014 21:18:13 UTC +00:00]]
485
+  (0.1ms) RELEASE SAVEPOINT active_record_1
486
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
487
+  (0.0ms) SAVEPOINT active_record_1
488
+  (0.1ms) RELEASE SAVEPOINT active_record_1
489
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
490
+  (0.4ms) rollback transaction
491
+  (0.1ms) begin transaction
492
+ -------------------------------------------
493
+ PublicIdTest: test_Ident_should_==_to_param
494
+ -------------------------------------------
495
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-TAlN98_GrBnq4w' LIMIT 1
496
+  (0.0ms) rollback transaction
497
+  (0.1ms) begin transaction
498
+ -------------------------------------------------
499
+ PublicIdTest: test_Initialize_all_the_public_id's
500
+ -------------------------------------------------
501
+ SQL (0.1ms) UPDATE "users" SET "ident" = NULL
502
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
503
+  (0.2ms) rollback transaction
504
+  (0.1ms) begin transaction
505
+ --------------------------------------------------
506
+ PublicIdTest: test_New_users_get_an_ID_initialized
507
+ --------------------------------------------------
508
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-oxnPeR58vciL5g' LIMIT 1
509
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-SCAryef478edNw' LIMIT 1
510
+  (0.1ms) rollback transaction
511
+  (0.6ms) begin transaction
512
+ Fixture Delete (1.3ms) DELETE FROM "users"
513
+ Fixture Insert (0.6ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Sammy', NULL, '2014-01-09 21:19:31', '2014-01-09 21:19:31', 980190962)
514
+ Fixture Insert (0.2ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Joe', NULL, '2014-01-09 21:19:31', '2014-01-09 21:19:31', 298486374)
515
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Susan', NULL, '2014-01-09 21:19:31', '2014-01-09 21:19:31', 113629430)
516
+  (1.1ms) commit transaction
517
+  (0.1ms) begin transaction
518
+ --------------------------------------------------------------------------
519
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
520
+ --------------------------------------------------------------------------
521
+  (0.1ms) rollback transaction
522
+  (0.1ms) begin transaction
523
+ ------------------------------------------------
524
+ PublicIdTest: test_Can_be_looked_up_by_the_ident
525
+ ------------------------------------------------
526
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-j5ym0IVj_ExIWg' LIMIT 1
527
+  (0.1ms) SAVEPOINT active_record_1
528
+ SQL (3.7ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:19:31 UTC +00:00], ["ident", "use-j5ym0IVj_ExIWg"], ["name", "joey"], ["updated_at", Thu, 09 Jan 2014 21:19:31 UTC +00:00]]
529
+  (0.1ms) RELEASE SAVEPOINT active_record_1
530
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ident" = 'use-j5ym0IVj_ExIWg' ORDER BY "users"."id" ASC LIMIT 1
531
+  (0.5ms) rollback transaction
532
+  (0.1ms) begin transaction
533
+ -------------------------------------------------
534
+ PublicIdTest: test_Doesn't_change_on_save,_update
535
+ -------------------------------------------------
536
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-7OSyCIcJ5Fob_Q' LIMIT 1
537
+  (0.1ms) SAVEPOINT active_record_1
538
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:19:32 UTC +00:00], ["ident", "use-7OSyCIcJ5Fob_Q"], ["updated_at", Thu, 09 Jan 2014 21:19:32 UTC +00:00]]
539
+  (0.1ms) RELEASE SAVEPOINT active_record_1
540
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
541
+  (0.1ms) SAVEPOINT active_record_1
542
+  (0.1ms) RELEASE SAVEPOINT active_record_1
543
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
544
+  (0.5ms) rollback transaction
545
+  (0.1ms) begin transaction
546
+ -------------------------------------------
547
+ PublicIdTest: test_Ident_should_==_to_param
548
+ -------------------------------------------
549
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-snQn2PeE2fAtVA' LIMIT 1
550
+  (0.1ms) rollback transaction
551
+  (0.1ms) begin transaction
552
+ -------------------------------------------------
553
+ PublicIdTest: test_Initialize_all_the_public_id's
554
+ -------------------------------------------------
555
+ SQL (0.3ms) UPDATE "users" SET "ident" = NULL
556
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
557
+  (0.4ms) rollback transaction
558
+  (0.1ms) begin transaction
559
+ --------------------------------------------------
560
+ PublicIdTest: test_New_users_get_an_ID_initialized
561
+ --------------------------------------------------
562
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-SoyY8TinnCxL3w' LIMIT 1
563
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-N5Fye9GrMTiqfQ' LIMIT 1
564
+  (0.1ms) rollback transaction
565
+  (0.5ms) begin transaction
566
+ Fixture Delete (0.3ms) DELETE FROM "users"
567
+ Fixture Insert (0.2ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Sammy', NULL, '2014-01-09 21:19:53', '2014-01-09 21:19:53', 980190962)
568
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Joe', NULL, '2014-01-09 21:19:53', '2014-01-09 21:19:53', 298486374)
569
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Susan', NULL, '2014-01-09 21:19:53', '2014-01-09 21:19:53', 113629430)
570
+  (2.2ms) commit transaction
571
+  (0.1ms) begin transaction
572
+ --------------------------------------------------------------------------
573
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
574
+ --------------------------------------------------------------------------
575
+  (0.1ms) rollback transaction
576
+  (0.1ms) begin transaction
577
+ ------------------------------------------------
578
+ PublicIdTest: test_Can_be_looked_up_by_the_ident
579
+ ------------------------------------------------
580
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-9xnyYuY3wrIYJA' LIMIT 1
581
+  (0.1ms) SAVEPOINT active_record_1
582
+ SQL (3.4ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:19:53 UTC +00:00], ["ident", "use-9xnyYuY3wrIYJA"], ["name", "joey"], ["updated_at", Thu, 09 Jan 2014 21:19:53 UTC +00:00]]
583
+  (0.1ms) RELEASE SAVEPOINT active_record_1
584
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ident" = 'use-9xnyYuY3wrIYJA' ORDER BY "users"."id" ASC LIMIT 1
585
+  (0.5ms) rollback transaction
586
+  (0.1ms) begin transaction
587
+ -------------------------------------------------
588
+ PublicIdTest: test_Doesn't_change_on_save,_update
589
+ -------------------------------------------------
590
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-Rb78jGz1u_uoog' LIMIT 1
591
+  (0.0ms) SAVEPOINT active_record_1
592
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:19:53 UTC +00:00], ["ident", "use-Rb78jGz1u_uoog"], ["updated_at", Thu, 09 Jan 2014 21:19:53 UTC +00:00]]
593
+  (0.0ms) RELEASE SAVEPOINT active_record_1
594
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
595
+  (0.0ms) SAVEPOINT active_record_1
596
+  (0.1ms) RELEASE SAVEPOINT active_record_1
597
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
598
+  (0.4ms) rollback transaction
599
+  (0.1ms) begin transaction
600
+ -------------------------------------------
601
+ PublicIdTest: test_Ident_should_==_to_param
602
+ -------------------------------------------
603
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-1c_VvYfVOhiEHw' LIMIT 1
604
+  (0.0ms) rollback transaction
605
+  (0.1ms) begin transaction
606
+ -------------------------------------------------
607
+ PublicIdTest: test_Initialize_all_the_public_id's
608
+ -------------------------------------------------
609
+ SQL (0.4ms) UPDATE "users" SET "ident" = NULL
610
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
611
+  (0.5ms) rollback transaction
612
+  (0.1ms) begin transaction
613
+ --------------------------------------------------
614
+ PublicIdTest: test_New_users_get_an_ID_initialized
615
+ --------------------------------------------------
616
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-e-LM3DG0HbG2OQ' LIMIT 1
617
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-lTHqHNALmpXoYQ' LIMIT 1
618
+  (0.1ms) rollback transaction
619
+  (0.4ms) begin transaction
620
+ Fixture Delete (0.3ms) DELETE FROM "users"
621
+ Fixture Insert (0.2ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Sammy', NULL, '2014-01-09 21:20:08', '2014-01-09 21:20:08', 980190962)
622
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Joe', NULL, '2014-01-09 21:20:08', '2014-01-09 21:20:08', 298486374)
623
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Susan', NULL, '2014-01-09 21:20:08', '2014-01-09 21:20:08', 113629430)
624
+  (2.2ms) commit transaction
625
+  (0.1ms) begin transaction
626
+ --------------------------------------------------------------------------
627
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
628
+ --------------------------------------------------------------------------
629
+  (0.1ms) rollback transaction
630
+  (0.1ms) begin transaction
631
+ ------------------------------------------------
632
+ PublicIdTest: test_Can_be_looked_up_by_the_ident
633
+ ------------------------------------------------
634
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-DqhzgAvfXkN79g' LIMIT 1
635
+  (0.0ms) SAVEPOINT active_record_1
636
+ SQL (3.0ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:20:08 UTC +00:00], ["ident", "use-DqhzgAvfXkN79g"], ["name", "joey"], ["updated_at", Thu, 09 Jan 2014 21:20:08 UTC +00:00]]
637
+  (0.1ms) RELEASE SAVEPOINT active_record_1
638
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."ident" = 'use-DqhzgAvfXkN79g' ORDER BY "users"."id" ASC LIMIT 1
639
+  (0.6ms) rollback transaction
640
+  (0.2ms) begin transaction
641
+ -------------------------------------------------
642
+ PublicIdTest: test_Doesn't_change_on_save,_update
643
+ -------------------------------------------------
644
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-BER7Mx1hlrHCIA' LIMIT 1
645
+  (0.0ms) SAVEPOINT active_record_1
646
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:20:08 UTC +00:00], ["ident", "use-BER7Mx1hlrHCIA"], ["updated_at", Thu, 09 Jan 2014 21:20:08 UTC +00:00]]
647
+  (0.1ms) RELEASE SAVEPOINT active_record_1
648
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
649
+  (0.0ms) SAVEPOINT active_record_1
650
+  (0.1ms) RELEASE SAVEPOINT active_record_1
651
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
652
+  (0.4ms) rollback transaction
653
+  (0.1ms) begin transaction
654
+ -------------------------------------------
655
+ PublicIdTest: test_Ident_should_==_to_param
656
+ -------------------------------------------
657
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-2F7GMREfXcQXfg' LIMIT 1
658
+  (0.1ms) rollback transaction
659
+  (0.0ms) begin transaction
660
+ -------------------------------------------------
661
+ PublicIdTest: test_Initialize_all_the_public_id's
662
+ -------------------------------------------------
663
+  (0.3ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
664
+  (0.1ms) rollback transaction
665
+  (0.1ms) begin transaction
666
+ --------------------------------------------------
667
+ PublicIdTest: test_New_users_get_an_ID_initialized
668
+ --------------------------------------------------
669
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-ROyujHpmp1-PXg' LIMIT 1
670
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-IP1UY8cHJ5s01Q' LIMIT 1
671
+  (0.1ms) rollback transaction
672
+  (0.4ms) begin transaction
673
+ Fixture Delete (0.3ms) DELETE FROM "users"
674
+ Fixture Insert (0.2ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Sammy', NULL, '2014-01-09 21:22:02', '2014-01-09 21:22:02', 980190962)
675
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Joe', NULL, '2014-01-09 21:22:02', '2014-01-09 21:22:02', 298486374)
676
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Susan', NULL, '2014-01-09 21:22:02', '2014-01-09 21:22:02', 113629430)
677
+  (3.4ms) commit transaction
678
+  (0.1ms) begin transaction
679
+ --------------------------------------------------------------------------
680
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
681
+ --------------------------------------------------------------------------
682
+  (0.1ms) rollback transaction
683
+  (0.1ms) begin transaction
684
+ ------------------------------------------------
685
+ PublicIdTest: test_Can_be_looked_up_by_the_ident
686
+ ------------------------------------------------
687
+ User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-CZxQxZcwB6FmMA' LIMIT 1
688
+  (0.1ms) SAVEPOINT active_record_1
689
+ SQL (2.3ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:22:02 UTC +00:00], ["ident", "use-CZxQxZcwB6FmMA"], ["name", "joey"], ["updated_at", Thu, 09 Jan 2014 21:22:02 UTC +00:00]]
690
+  (0.1ms) RELEASE SAVEPOINT active_record_1
691
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."ident" = 'use-CZxQxZcwB6FmMA' ORDER BY "users"."id" ASC LIMIT 1
692
+  (0.6ms) rollback transaction
693
+  (0.1ms) begin transaction
694
+ -------------------------------------------------
695
+ PublicIdTest: test_Doesn't_change_on_save,_update
696
+ -------------------------------------------------
697
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-lzrKC6ag2gVMmg' LIMIT 1
698
+  (0.1ms) SAVEPOINT active_record_1
699
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:22:02 UTC +00:00], ["ident", "use-lzrKC6ag2gVMmg"], ["updated_at", Thu, 09 Jan 2014 21:22:02 UTC +00:00]]
700
+  (0.1ms) RELEASE SAVEPOINT active_record_1
701
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
702
+  (0.0ms) SAVEPOINT active_record_1
703
+  (0.1ms) RELEASE SAVEPOINT active_record_1
704
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
705
+  (0.5ms) rollback transaction
706
+  (0.1ms) begin transaction
707
+ -------------------------------------------
708
+ PublicIdTest: test_Ident_should_==_to_param
709
+ -------------------------------------------
710
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-AyxIHD51B0jyrA' LIMIT 1
711
+  (0.1ms) rollback transaction
712
+  (0.1ms) begin transaction
713
+ -------------------------------------------------
714
+ PublicIdTest: test_Initialize_all_the_public_id's
715
+ -------------------------------------------------
716
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
717
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ident" IS NULL ORDER BY "users"."id" ASC LIMIT 1000
718
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-GMDgeknoGssLfQ' LIMIT 1
719
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-cqivC-HYXFlRlQ' LIMIT 1
720
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-FgFbFK5YZWu6oA' LIMIT 1
721
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-Zl9f_x87n3cqcQ' LIMIT 1
722
+  (0.0ms) SAVEPOINT active_record_1
723
+ SQL (0.8ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 113629430 [["ident", "use-Zl9f_x87n3cqcQ"], ["updated_at", Thu, 09 Jan 2014 21:22:02 UTC +00:00]]
724
+  (0.1ms) RELEASE SAVEPOINT active_record_1
725
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-iakYHawSotuKbA' LIMIT 1
726
+  (0.0ms) SAVEPOINT active_record_1
727
+ SQL (1.1ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 298486374 [["ident", "use-iakYHawSotuKbA"], ["updated_at", Thu, 09 Jan 2014 21:22:02 UTC +00:00]]
728
+  (0.1ms) RELEASE SAVEPOINT active_record_1
729
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-9VOHQdu_KpwAgA' LIMIT 1
730
+  (0.0ms) SAVEPOINT active_record_1
731
+ SQL (0.2ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 980190962 [["ident", "use-9VOHQdu_KpwAgA"], ["updated_at", Thu, 09 Jan 2014 21:22:02 UTC +00:00]]
732
+  (0.0ms) RELEASE SAVEPOINT active_record_1
733
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
734
+  (0.4ms) rollback transaction
735
+  (0.1ms) begin transaction
736
+ --------------------------------------------------
737
+ PublicIdTest: test_New_users_get_an_ID_initialized
738
+ --------------------------------------------------
739
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-G5F_xBxYvusalg' LIMIT 1
740
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-CTxxama4tvTTPA' LIMIT 1
741
+  (0.0ms) rollback transaction
742
+  (0.4ms) begin transaction
743
+ Fixture Delete (0.7ms) DELETE FROM "users"
744
+ Fixture Insert (0.2ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Sammy', NULL, '2014-01-09 21:35:21', '2014-01-09 21:35:21', 980190962)
745
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Joe', NULL, '2014-01-09 21:35:21', '2014-01-09 21:35:21', 298486374)
746
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Susan', NULL, '2014-01-09 21:35:21', '2014-01-09 21:35:21', 113629430)
747
+  (0.8ms) commit transaction
748
+  (0.1ms) begin transaction
749
+ --------------------------------------------------------------------------
750
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
751
+ --------------------------------------------------------------------------
752
+  (0.1ms) rollback transaction
753
+  (0.1ms) begin transaction
754
+ ------------------------------------------------
755
+ PublicIdTest: test_Can_be_looked_up_by_the_ident
756
+ ------------------------------------------------
757
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-kNcYEodpO4u-wQ' LIMIT 1
758
+  (0.1ms) SAVEPOINT active_record_1
759
+ SQL (5.2ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:35:21 UTC +00:00], ["ident", "use-kNcYEodpO4u-wQ"], ["name", "joey"], ["updated_at", Thu, 09 Jan 2014 21:35:21 UTC +00:00]]
760
+  (0.1ms) RELEASE SAVEPOINT active_record_1
761
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ident" = 'use-kNcYEodpO4u-wQ' ORDER BY "users"."id" ASC LIMIT 1
762
+  (0.6ms) rollback transaction
763
+  (0.1ms) begin transaction
764
+ -------------------------------------------------
765
+ PublicIdTest: test_Doesn't_change_on_save,_update
766
+ -------------------------------------------------
767
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-co2wKwJjMlFORg' LIMIT 1
768
+  (0.0ms) SAVEPOINT active_record_1
769
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:35:21 UTC +00:00], ["ident", "use-co2wKwJjMlFORg"], ["updated_at", Thu, 09 Jan 2014 21:35:21 UTC +00:00]]
770
+  (0.1ms) RELEASE SAVEPOINT active_record_1
771
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
772
+  (0.0ms) SAVEPOINT active_record_1
773
+  (0.1ms) RELEASE SAVEPOINT active_record_1
774
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
775
+  (0.4ms) rollback transaction
776
+  (0.1ms) begin transaction
777
+ ---------------------------------------------------------------------------------------------------------------------
778
+ PublicIdTest: test_Ensure_that,_in_the_1/bazillion_case_where_a_non_unique_value_is_returned,_we_handle_it_gracefully
779
+ ---------------------------------------------------------------------------------------------------------------------
780
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-DrW-oSPBZS3CfQ' LIMIT 1
781
+  (0.1ms) SAVEPOINT active_record_1
782
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:35:21 UTC +00:00], ["ident", "use-DrW-oSPBZS3CfQ"], ["name", "Unique"], ["updated_at", Thu, 09 Jan 2014 21:35:21 UTC +00:00]]
783
+  (0.1ms) RELEASE SAVEPOINT active_record_1
784
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-use-DrW-oSPBZS3CfQ' LIMIT 1
785
+  (0.1ms) SAVEPOINT active_record_1
786
+ SQL (1.0ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:35:21 UTC +00:00], ["ident", "use-use-DrW-oSPBZS3CfQ"], ["name", "Conflict!"], ["updated_at", Thu, 09 Jan 2014 21:35:21 UTC +00:00]]
787
+  (0.1ms) RELEASE SAVEPOINT active_record_1
788
+  (0.5ms) rollback transaction
789
+  (0.1ms) begin transaction
790
+ -------------------------------------------
791
+ PublicIdTest: test_Ident_should_==_to_param
792
+ -------------------------------------------
793
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-6M-gnw8w1dhC7Q' LIMIT 1
794
+  (0.1ms) rollback transaction
795
+  (0.1ms) begin transaction
796
+ -------------------------------------------------
797
+ PublicIdTest: test_Initialize_all_the_public_id's
798
+ -------------------------------------------------
799
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
800
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ident" IS NULL ORDER BY "users"."id" ASC LIMIT 1000
801
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-qNw6RBoYcvTNSA' LIMIT 1
802
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-_Lj6b-5VGcZuyg' LIMIT 1
803
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-O7KrfC940sD0ug' LIMIT 1
804
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-d_amqC5GaLqVdg' LIMIT 1
805
+  (0.0ms) SAVEPOINT active_record_1
806
+ SQL (0.7ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 113629430 [["ident", "use-d_amqC5GaLqVdg"], ["updated_at", Thu, 09 Jan 2014 21:35:21 UTC +00:00]]
807
+  (0.2ms) RELEASE SAVEPOINT active_record_1
808
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-KjkM_mgPA13XTA' LIMIT 1
809
+  (0.0ms) SAVEPOINT active_record_1
810
+ SQL (0.7ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 298486374 [["ident", "use-KjkM_mgPA13XTA"], ["updated_at", Thu, 09 Jan 2014 21:35:21 UTC +00:00]]
811
+  (0.1ms) RELEASE SAVEPOINT active_record_1
812
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-57Gt6SHWjFKUnA' LIMIT 1
813
+  (0.1ms) SAVEPOINT active_record_1
814
+ SQL (0.2ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 980190962 [["ident", "use-57Gt6SHWjFKUnA"], ["updated_at", Thu, 09 Jan 2014 21:35:21 UTC +00:00]]
815
+  (0.1ms) RELEASE SAVEPOINT active_record_1
816
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
817
+  (0.4ms) rollback transaction
818
+  (0.1ms) begin transaction
819
+ --------------------------------------------------
820
+ PublicIdTest: test_New_users_get_an_ID_initialized
821
+ --------------------------------------------------
822
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-D5-K9EgJJdOc_g' LIMIT 1
823
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-KKKQyUM2LBfUKQ' LIMIT 1
824
+  (0.1ms) rollback transaction
825
+  (0.4ms) begin transaction
826
+ Fixture Delete (1.4ms) DELETE FROM "users"
827
+ Fixture Insert (0.2ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Sammy', NULL, '2014-01-09 21:37:56', '2014-01-09 21:37:56', 980190962)
828
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Joe', NULL, '2014-01-09 21:37:56', '2014-01-09 21:37:56', 298486374)
829
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Susan', NULL, '2014-01-09 21:37:56', '2014-01-09 21:37:56', 113629430)
830
+  (0.9ms) commit transaction
831
+  (0.1ms) begin transaction
832
+ --------------------------------------------------------------------------
833
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
834
+ --------------------------------------------------------------------------
835
+  (0.1ms) rollback transaction
836
+  (0.2ms) begin transaction
837
+ ------------------------------------------------
838
+ PublicIdTest: test_Can_be_looked_up_by_the_ident
839
+ ------------------------------------------------
840
+  (0.1ms) SAVEPOINT active_record_1
841
+ SQL (4.5ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:37:56 UTC +00:00], ["ident", "use-iXvEw6jHeyVP7Q"], ["name", "joey"], ["updated_at", Thu, 09 Jan 2014 21:37:56 UTC +00:00]]
842
+  (0.1ms) RELEASE SAVEPOINT active_record_1
843
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."ident" = 'use-iXvEw6jHeyVP7Q' ORDER BY "users"."id" ASC LIMIT 1
844
+  (0.5ms) rollback transaction
845
+  (0.1ms) begin transaction
846
+ -------------------------------------------------
847
+ PublicIdTest: test_Doesn't_change_on_save,_update
848
+ -------------------------------------------------
849
+  (0.1ms) SAVEPOINT active_record_1
850
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:37:56 UTC +00:00], ["ident", "use-dlpocDPzuh144Q"], ["updated_at", Thu, 09 Jan 2014 21:37:56 UTC +00:00]]
851
+  (0.1ms) RELEASE SAVEPOINT active_record_1
852
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
853
+  (0.0ms) SAVEPOINT active_record_1
854
+  (0.1ms) RELEASE SAVEPOINT active_record_1
855
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
856
+  (0.7ms) rollback transaction
857
+  (0.1ms) begin transaction
858
+ ---------------------------------------------------------------------------------------------------------------------
859
+ PublicIdTest: test_Ensure_that,_in_the_1/bazillion_case_where_a_non_unique_value_is_returned,_we_handle_it_gracefully
860
+ ---------------------------------------------------------------------------------------------------------------------
861
+  (0.1ms) SAVEPOINT active_record_1
862
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:37:56 UTC +00:00], ["ident", "use-H-QuE5012bVFRw"], ["name", "Unique"], ["updated_at", Thu, 09 Jan 2014 21:37:56 UTC +00:00]]
863
+  (0.1ms) RELEASE SAVEPOINT active_record_1
864
+  (0.1ms) SAVEPOINT active_record_1
865
+ SQL (1.2ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:37:56 UTC +00:00], ["ident", "use-use-H-QuE5012bVFRw"], ["name", "Conflict!"], ["updated_at", Thu, 09 Jan 2014 21:37:56 UTC +00:00]]
866
+  (0.1ms) RELEASE SAVEPOINT active_record_1
867
+  (0.5ms) rollback transaction
868
+  (0.1ms) begin transaction
869
+ -------------------------------------------
870
+ PublicIdTest: test_Ident_should_==_to_param
871
+ -------------------------------------------
872
+  (0.1ms) rollback transaction
873
+  (0.1ms) begin transaction
874
+ -------------------------------------------------
875
+ PublicIdTest: test_Initialize_all_the_public_id's
876
+ -------------------------------------------------
877
+  (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
878
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ident" IS NULL ORDER BY "users"."id" ASC LIMIT 1000
879
+  (0.1ms) SAVEPOINT active_record_1
880
+ SQL (0.4ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 113629430 [["ident", "use-4mGXZrkW-rc50Q"], ["updated_at", Thu, 09 Jan 2014 21:37:56 UTC +00:00]]
881
+  (0.0ms) RELEASE SAVEPOINT active_record_1
882
+  (0.0ms) SAVEPOINT active_record_1
883
+ SQL (0.4ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 298486374 [["ident", "use-2pqO5o6mkuCcEg"], ["updated_at", Thu, 09 Jan 2014 21:37:56 UTC +00:00]]
884
+  (0.1ms) RELEASE SAVEPOINT active_record_1
885
+  (0.0ms) SAVEPOINT active_record_1
886
+ SQL (0.2ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 980190962 [["ident", "use-8AegTKKEUg1NrA"], ["updated_at", Thu, 09 Jan 2014 21:37:56 UTC +00:00]]
887
+  (0.0ms) RELEASE SAVEPOINT active_record_1
888
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
889
+  (0.6ms) rollback transaction
890
+  (0.1ms) begin transaction
891
+ --------------------------------------------------
892
+ PublicIdTest: test_New_users_get_an_ID_initialized
893
+ --------------------------------------------------
894
+  (0.1ms) rollback transaction
895
+  (0.4ms) begin transaction
896
+ Fixture Delete (0.2ms) DELETE FROM "users"
897
+ Fixture Insert (0.3ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Sammy', NULL, '2014-01-09 21:38:27', '2014-01-09 21:38:27', 980190962)
898
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Joe', NULL, '2014-01-09 21:38:27', '2014-01-09 21:38:27', 298486374)
899
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Susan', NULL, '2014-01-09 21:38:27', '2014-01-09 21:38:27', 113629430)
900
+  (2.4ms) commit transaction
901
+  (0.1ms) begin transaction
902
+ --------------------------------------------------------------------------
903
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
904
+ --------------------------------------------------------------------------
905
+  (0.1ms) rollback transaction
906
+  (0.1ms) begin transaction
907
+ ------------------------------------------------
908
+ PublicIdTest: test_Can_be_looked_up_by_the_ident
909
+ ------------------------------------------------
910
+  (0.1ms) SAVEPOINT active_record_1
911
+ SQL (2.2ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:38:27 UTC +00:00], ["ident", "use-hcgw5ZzPOHpsCg"], ["name", "joey"], ["updated_at", Thu, 09 Jan 2014 21:38:27 UTC +00:00]]
912
+  (0.1ms) RELEASE SAVEPOINT active_record_1
913
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."ident" = 'use-hcgw5ZzPOHpsCg' ORDER BY "users"."id" ASC LIMIT 1
914
+  (0.6ms) rollback transaction
915
+  (0.1ms) begin transaction
916
+ -------------------------------------------------
917
+ PublicIdTest: test_Doesn't_change_on_save,_update
918
+ -------------------------------------------------
919
+  (0.1ms) SAVEPOINT active_record_1
920
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:38:27 UTC +00:00], ["ident", "use-Zvq97ykJeyYTzA"], ["updated_at", Thu, 09 Jan 2014 21:38:27 UTC +00:00]]
921
+  (0.1ms) RELEASE SAVEPOINT active_record_1
922
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
923
+  (0.1ms) SAVEPOINT active_record_1
924
+  (0.1ms) RELEASE SAVEPOINT active_record_1
925
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
926
+  (0.5ms) rollback transaction
927
+  (0.1ms) begin transaction
928
+ ---------------------------------------------------------------------------------------------------------------------
929
+ PublicIdTest: test_Ensure_that,_in_the_1/bazillion_case_where_a_non_unique_value_is_returned,_we_handle_it_gracefully
930
+ ---------------------------------------------------------------------------------------------------------------------
931
+  (0.0ms) SAVEPOINT active_record_1
932
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:38:27 UTC +00:00], ["ident", "use-X9HH6HBLZt_5cw"], ["name", "Unique"], ["updated_at", Thu, 09 Jan 2014 21:38:27 UTC +00:00]]
933
+  (0.0ms) RELEASE SAVEPOINT active_record_1
934
+  (0.1ms) SAVEPOINT active_record_1
935
+ SQL (1.1ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:38:27 UTC +00:00], ["ident", "use-use-X9HH6HBLZt_5cw"], ["name", "Conflict!"], ["updated_at", Thu, 09 Jan 2014 21:38:27 UTC +00:00]]
936
+  (0.1ms) RELEASE SAVEPOINT active_record_1
937
+  (0.5ms) rollback transaction
938
+  (0.1ms) begin transaction
939
+ -------------------------------------------
940
+ PublicIdTest: test_Ident_should_==_to_param
941
+ -------------------------------------------
942
+  (0.1ms) rollback transaction
943
+  (0.0ms) begin transaction
944
+ -------------------------------------------------
945
+ PublicIdTest: test_Initialize_all_the_public_id's
946
+ -------------------------------------------------
947
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
948
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ident" IS NULL ORDER BY "users"."id" ASC LIMIT 1000
949
+  (0.1ms) SAVEPOINT active_record_1
950
+ SQL (0.4ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 113629430 [["ident", "use-8M0OdZsJCS51SQ"], ["updated_at", Thu, 09 Jan 2014 21:38:27 UTC +00:00]]
951
+  (0.1ms) RELEASE SAVEPOINT active_record_1
952
+  (0.1ms) SAVEPOINT active_record_1
953
+ SQL (0.4ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 298486374 [["ident", "use-rHWVPyg4e4tn1g"], ["updated_at", Thu, 09 Jan 2014 21:38:27 UTC +00:00]]
954
+  (0.1ms) RELEASE SAVEPOINT active_record_1
955
+  (0.0ms) SAVEPOINT active_record_1
956
+ SQL (0.2ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 980190962 [["ident", "use-RqYAE_2yhEsScg"], ["updated_at", Thu, 09 Jan 2014 21:38:27 UTC +00:00]]
957
+  (0.0ms) RELEASE SAVEPOINT active_record_1
958
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
959
+  (0.6ms) rollback transaction
960
+  (0.1ms) begin transaction
961
+ --------------------------------------------------
962
+ PublicIdTest: test_New_users_get_an_ID_initialized
963
+ --------------------------------------------------
964
+  (0.1ms) rollback transaction
965
+  (0.4ms) begin transaction
966
+ Fixture Delete (0.3ms) DELETE FROM "users"
967
+ Fixture Insert (0.3ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Sammy', NULL, '2014-01-09 21:39:21', '2014-01-09 21:39:21', 980190962)
968
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Joe', NULL, '2014-01-09 21:39:21', '2014-01-09 21:39:21', 298486374)
969
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Susan', NULL, '2014-01-09 21:39:21', '2014-01-09 21:39:21', 113629430)
970
+  (2.4ms) commit transaction
971
+  (0.1ms) begin transaction
972
+ --------------------------------------------------------------------------
973
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
974
+ --------------------------------------------------------------------------
975
+  (0.1ms) rollback transaction
976
+  (0.1ms) begin transaction
977
+ ------------------------------------------------
978
+ PublicIdTest: test_Can_be_looked_up_by_the_ident
979
+ ------------------------------------------------
980
+  (0.1ms) SAVEPOINT active_record_1
981
+ SQL (2.3ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:39:21 UTC +00:00], ["ident", "use--LpQR5Dk_XKwtQ"], ["name", "joey"], ["updated_at", Thu, 09 Jan 2014 21:39:21 UTC +00:00]]
982
+  (0.1ms) RELEASE SAVEPOINT active_record_1
983
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ident" = 'use--LpQR5Dk_XKwtQ' ORDER BY "users"."id" ASC LIMIT 1
984
+  (0.5ms) rollback transaction
985
+  (0.1ms) begin transaction
986
+ -------------------------------------------------
987
+ PublicIdTest: test_Doesn't_change_on_save,_update
988
+ -------------------------------------------------
989
+  (0.0ms) SAVEPOINT active_record_1
990
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:39:21 UTC +00:00], ["ident", "use-BJ3sp21sS0QBeA"], ["updated_at", Thu, 09 Jan 2014 21:39:21 UTC +00:00]]
991
+  (0.0ms) RELEASE SAVEPOINT active_record_1
992
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
993
+  (0.0ms) SAVEPOINT active_record_1
994
+  (0.1ms) RELEASE SAVEPOINT active_record_1
995
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
996
+  (0.4ms) rollback transaction
997
+  (0.1ms) begin transaction
998
+ ---------------------------------------------------------------------------------------------------------------------
999
+ PublicIdTest: test_Ensure_that,_in_the_1/bazillion_case_where_a_non_unique_value_is_returned,_we_handle_it_gracefully
1000
+ ---------------------------------------------------------------------------------------------------------------------
1001
+  (0.1ms) SAVEPOINT active_record_1
1002
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:39:21 UTC +00:00], ["ident", "use-LnusueJwMTv9zQ"], ["name", "Unique"], ["updated_at", Thu, 09 Jan 2014 21:39:21 UTC +00:00]]
1003
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1004
+  (0.5ms) rollback transaction
1005
+  (0.1ms) begin transaction
1006
+ -------------------------------------------
1007
+ PublicIdTest: test_Ident_should_==_to_param
1008
+ -------------------------------------------
1009
+  (0.1ms) rollback transaction
1010
+  (0.1ms) begin transaction
1011
+ -------------------------------------------------
1012
+ PublicIdTest: test_Initialize_all_the_public_id's
1013
+ -------------------------------------------------
1014
+  (0.3ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
1015
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ident" IS NULL ORDER BY "users"."id" ASC LIMIT 1000
1016
+  (0.1ms) SAVEPOINT active_record_1
1017
+ SQL (0.4ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 113629430 [["ident", "use-9NY4FdhjGLZUlg"], ["updated_at", Thu, 09 Jan 2014 21:39:21 UTC +00:00]]
1018
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1019
+  (0.1ms) SAVEPOINT active_record_1
1020
+ SQL (1.5ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 298486374 [["ident", "use-Ns7pYa5Rt7Ae8A"], ["updated_at", Thu, 09 Jan 2014 21:39:21 UTC +00:00]]
1021
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1022
+  (0.1ms) SAVEPOINT active_record_1
1023
+ SQL (0.2ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 980190962 [["ident", "use-Udf3sThuoCyQJQ"], ["updated_at", Thu, 09 Jan 2014 21:39:21 UTC +00:00]]
1024
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1025
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
1026
+  (0.5ms) rollback transaction
1027
+  (0.1ms) begin transaction
1028
+ --------------------------------------------------
1029
+ PublicIdTest: test_New_users_get_an_ID_initialized
1030
+ --------------------------------------------------
1031
+  (0.1ms) rollback transaction
1032
+  (0.4ms) begin transaction
1033
+ Fixture Delete (0.3ms) DELETE FROM "users"
1034
+ Fixture Insert (0.2ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Sammy', NULL, '2014-01-09 21:41:01', '2014-01-09 21:41:01', 980190962)
1035
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Joe', NULL, '2014-01-09 21:41:01', '2014-01-09 21:41:01', 298486374)
1036
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Susan', NULL, '2014-01-09 21:41:01', '2014-01-09 21:41:01', 113629430)
1037
+  (3.4ms) commit transaction
1038
+  (0.1ms) begin transaction
1039
+ --------------------------------------------------------------------------
1040
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
1041
+ --------------------------------------------------------------------------
1042
+  (0.1ms) rollback transaction
1043
+  (0.1ms) begin transaction
1044
+ ------------------------------------------------
1045
+ PublicIdTest: test_Can_be_looked_up_by_the_ident
1046
+ ------------------------------------------------
1047
+  (0.1ms) SAVEPOINT active_record_1
1048
+ SQL (3.5ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:41:01 UTC +00:00], ["ident", "use-nChP4uBpFrnE5g"], ["name", "joey"], ["updated_at", Thu, 09 Jan 2014 21:41:01 UTC +00:00]]
1049
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1050
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."ident" = 'use-nChP4uBpFrnE5g' ORDER BY "users"."id" ASC LIMIT 1
1051
+  (0.5ms) rollback transaction
1052
+  (0.1ms) begin transaction
1053
+ -------------------------------------------------
1054
+ PublicIdTest: test_Doesn't_change_on_save,_update
1055
+ -------------------------------------------------
1056
+  (0.1ms) SAVEPOINT active_record_1
1057
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:41:01 UTC +00:00], ["ident", "use-vEZ6aeqb8n2ylg"], ["updated_at", Thu, 09 Jan 2014 21:41:01 UTC +00:00]]
1058
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1059
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
1060
+  (0.0ms) SAVEPOINT active_record_1
1061
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1062
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
1063
+  (7.7ms) rollback transaction
1064
+  (0.2ms) begin transaction
1065
+ ---------------------------------------------------------------------------------------------------------------------
1066
+ PublicIdTest: test_Ensure_that,_in_the_1/bazillion_case_where_a_non_unique_value_is_returned,_we_handle_it_gracefully
1067
+ ---------------------------------------------------------------------------------------------------------------------
1068
+  (0.2ms) SAVEPOINT active_record_1
1069
+ SQL (1.0ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:41:01 UTC +00:00], ["ident", "use-8_ERvzZJjb7gFg"], ["name", "Unique"], ["updated_at", Thu, 09 Jan 2014 21:41:01 UTC +00:00]]
1070
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1071
+  (0.2ms) SAVEPOINT active_record_1
1072
+ SQL (1.7ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:41:01 UTC +00:00], ["ident", "use-use-8_ERvzZJjb7gFg"], ["name", "Conflict!"], ["updated_at", Thu, 09 Jan 2014 21:41:01 UTC +00:00]]
1073
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1074
+  (0.9ms) rollback transaction
1075
+  (0.1ms) begin transaction
1076
+ -------------------------------------------
1077
+ PublicIdTest: test_Ident_should_==_to_param
1078
+ -------------------------------------------
1079
+  (0.1ms) rollback transaction
1080
+  (0.1ms) begin transaction
1081
+ -------------------------------------------------
1082
+ PublicIdTest: test_Initialize_all_the_public_id's
1083
+ -------------------------------------------------
1084
+  (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
1085
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."ident" IS NULL ORDER BY "users"."id" ASC LIMIT 1000
1086
+  (0.1ms) SAVEPOINT active_record_1
1087
+ SQL (0.4ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 113629430 [["ident", "use-WOo0ShBzwJpaeQ"], ["updated_at", Thu, 09 Jan 2014 21:41:01 UTC +00:00]]
1088
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1089
+  (0.0ms) SAVEPOINT active_record_1
1090
+ SQL (0.7ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 298486374 [["ident", "use-IuHisvoQRVRgvA"], ["updated_at", Thu, 09 Jan 2014 21:41:01 UTC +00:00]]
1091
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1092
+  (0.1ms) SAVEPOINT active_record_1
1093
+ SQL (0.2ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 980190962 [["ident", "use-gYREajjjQCjAaQ"], ["updated_at", Thu, 09 Jan 2014 21:41:01 UTC +00:00]]
1094
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1095
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
1096
+  (0.4ms) rollback transaction
1097
+  (0.1ms) begin transaction
1098
+ --------------------------------------------------
1099
+ PublicIdTest: test_New_users_get_an_ID_initialized
1100
+ --------------------------------------------------
1101
+  (0.1ms) rollback transaction
1102
+  (0.4ms) begin transaction
1103
+ Fixture Delete (0.7ms) DELETE FROM "users"
1104
+ Fixture Insert (0.3ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Sammy', NULL, '2014-01-09 21:48:36', '2014-01-09 21:48:36', 980190962)
1105
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Joe', NULL, '2014-01-09 21:48:36', '2014-01-09 21:48:36', 298486374)
1106
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Susan', NULL, '2014-01-09 21:48:36', '2014-01-09 21:48:36', 113629430)
1107
+  (0.8ms) commit transaction
1108
+  (0.1ms) begin transaction
1109
+ --------------------------------------------------------------------------
1110
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
1111
+ --------------------------------------------------------------------------
1112
+  (0.1ms) rollback transaction
1113
+  (0.1ms) begin transaction
1114
+ ------------------------------------------------
1115
+ PublicIdTest: test_Can_be_looked_up_by_the_ident
1116
+ ------------------------------------------------
1117
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-835TCxP-hrqM6g' LIMIT 1
1118
+  (0.1ms) SAVEPOINT active_record_1
1119
+ SQL (4.1ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:48:36 UTC +00:00], ["ident", "use-835TCxP-hrqM6g"], ["name", "joey"], ["updated_at", Thu, 09 Jan 2014 21:48:36 UTC +00:00]]
1120
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1121
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ident" = 'use-835TCxP-hrqM6g' ORDER BY "users"."id" ASC LIMIT 1
1122
+  (0.5ms) rollback transaction
1123
+  (0.1ms) begin transaction
1124
+ -------------------------------------------------
1125
+ PublicIdTest: test_Doesn't_change_on_save,_update
1126
+ -------------------------------------------------
1127
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-aF-1ocr4E2m1uA' LIMIT 1
1128
+  (0.1ms) SAVEPOINT active_record_1
1129
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 21:48:36 UTC +00:00], ["ident", "use-aF-1ocr4E2m1uA"], ["updated_at", Thu, 09 Jan 2014 21:48:36 UTC +00:00]]
1130
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1131
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
1132
+  (0.1ms) SAVEPOINT active_record_1
1133
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1134
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
1135
+  (0.4ms) rollback transaction
1136
+  (0.1ms) begin transaction
1137
+ -------------------------------------------
1138
+ PublicIdTest: test_Ident_should_==_to_param
1139
+ -------------------------------------------
1140
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-0hQJA5Mtos0iwg' LIMIT 1
1141
+  (0.1ms) rollback transaction
1142
+  (0.1ms) begin transaction
1143
+ -------------------------------------------------
1144
+ PublicIdTest: test_Initialize_all_the_public_id's
1145
+ -------------------------------------------------
1146
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
1147
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ident" IS NULL ORDER BY "users"."id" ASC LIMIT 1000
1148
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-jShF8X1Uqcx2Cg' LIMIT 1
1149
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-syhlZCJ7CvJlbA' LIMIT 1
1150
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-PJeXRvhP5j2KVg' LIMIT 1
1151
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-TxhNU7JQOuzQvw' LIMIT 1
1152
+  (0.1ms) SAVEPOINT active_record_1
1153
+ SQL (0.5ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 113629430 [["ident", "use-TxhNU7JQOuzQvw"], ["updated_at", Thu, 09 Jan 2014 21:48:36 UTC +00:00]]
1154
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1155
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-8AGeB5goxhawZQ' LIMIT 1
1156
+  (0.0ms) SAVEPOINT active_record_1
1157
+ SQL (1.1ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 298486374 [["ident", "use-8AGeB5goxhawZQ"], ["updated_at", Thu, 09 Jan 2014 21:48:36 UTC +00:00]]
1158
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1159
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-c2Am7ExAjYKjHg' LIMIT 1
1160
+  (0.0ms) SAVEPOINT active_record_1
1161
+ SQL (0.2ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 980190962 [["ident", "use-c2Am7ExAjYKjHg"], ["updated_at", Thu, 09 Jan 2014 21:48:36 UTC +00:00]]
1162
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1163
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
1164
+  (0.4ms) rollback transaction
1165
+  (0.1ms) begin transaction
1166
+ --------------------------------------------------
1167
+ PublicIdTest: test_New_users_get_an_ID_initialized
1168
+ --------------------------------------------------
1169
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-FBOZ7tgudb2z6w' LIMIT 1
1170
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-Qq3CGZLQZEEQ8g' LIMIT 1
1171
+  (0.1ms) rollback transaction
1172
+  (0.5ms) begin transaction
1173
+ Fixture Delete (0.7ms) DELETE FROM "users"
1174
+ Fixture Insert (0.3ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Sammy', NULL, '2014-01-09 22:00:43', '2014-01-09 22:00:43', 980190962)
1175
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Joe', NULL, '2014-01-09 22:00:43', '2014-01-09 22:00:43', 298486374)
1176
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Susan', NULL, '2014-01-09 22:00:43', '2014-01-09 22:00:43', 113629430)
1177
+  (0.9ms) commit transaction
1178
+  (0.1ms) begin transaction
1179
+ --------------------------------------------------------------------------
1180
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
1181
+ --------------------------------------------------------------------------
1182
+  (0.1ms) rollback transaction
1183
+  (0.1ms) begin transaction
1184
+ ------------------------------------------------
1185
+ PublicIdTest: test_Can_be_looked_up_by_the_ident
1186
+ ------------------------------------------------
1187
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-yWguYLNEpfTEMA' LIMIT 1
1188
+  (0.1ms) SAVEPOINT active_record_1
1189
+ SQL (4.0ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 22:00:43 UTC +00:00], ["ident", "use-yWguYLNEpfTEMA"], ["name", "joey"], ["updated_at", Thu, 09 Jan 2014 22:00:43 UTC +00:00]]
1190
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1191
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."ident" = 'use-yWguYLNEpfTEMA' ORDER BY "users"."id" ASC LIMIT 1
1192
+  (0.6ms) rollback transaction
1193
+  (0.1ms) begin transaction
1194
+ -------------------------------------------------
1195
+ PublicIdTest: test_Doesn't_change_on_save,_update
1196
+ -------------------------------------------------
1197
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-tHAVYfRYEZa_Ig' LIMIT 1
1198
+  (0.1ms) SAVEPOINT active_record_1
1199
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 22:00:43 UTC +00:00], ["ident", "use-tHAVYfRYEZa_Ig"], ["updated_at", Thu, 09 Jan 2014 22:00:43 UTC +00:00]]
1200
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1201
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
1202
+  (0.1ms) SAVEPOINT active_record_1
1203
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1204
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
1205
+  (0.6ms) rollback transaction
1206
+  (0.1ms) begin transaction
1207
+ -------------------------------------------
1208
+ PublicIdTest: test_Ident_should_==_to_param
1209
+ -------------------------------------------
1210
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-w7G5obW5wuYEFQ' LIMIT 1
1211
+  (0.1ms) rollback transaction
1212
+  (0.1ms) begin transaction
1213
+ -------------------------------------------------
1214
+ PublicIdTest: test_Initialize_all_the_public_id's
1215
+ -------------------------------------------------
1216
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
1217
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ident" IS NULL ORDER BY "users"."id" ASC LIMIT 1000
1218
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-9eEDhqGU3ivvdA' LIMIT 1
1219
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-t4ehXSLXESgBSg' LIMIT 1
1220
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-8kPCw9h4TincTA' LIMIT 1
1221
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-xW7QsHgEYlPLdA' LIMIT 1
1222
+  (0.1ms) SAVEPOINT active_record_1
1223
+ SQL (0.5ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 113629430 [["ident", "use-xW7QsHgEYlPLdA"], ["updated_at", Thu, 09 Jan 2014 22:00:43 UTC +00:00]]
1224
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1225
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-mbFjpKwILoEUOw' LIMIT 1
1226
+  (0.1ms) SAVEPOINT active_record_1
1227
+ SQL (1.4ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 298486374 [["ident", "use-mbFjpKwILoEUOw"], ["updated_at", Thu, 09 Jan 2014 22:00:43 UTC +00:00]]
1228
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1229
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-VkvJCugCu24s2A' LIMIT 1
1230
+  (0.0ms) SAVEPOINT active_record_1
1231
+ SQL (0.2ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 980190962 [["ident", "use-VkvJCugCu24s2A"], ["updated_at", Thu, 09 Jan 2014 22:00:43 UTC +00:00]]
1232
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1233
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
1234
+  (0.5ms) rollback transaction
1235
+  (0.1ms) begin transaction
1236
+ --------------------------------------------------
1237
+ PublicIdTest: test_New_users_get_an_ID_initialized
1238
+ --------------------------------------------------
1239
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-VGXEEupykQQQeA' LIMIT 1
1240
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-YZEQ56S8rrcI1g' LIMIT 1
1241
+  (0.1ms) rollback transaction
1242
+  (0.5ms) begin transaction
1243
+ Fixture Delete (0.3ms) DELETE FROM "users"
1244
+ Fixture Insert (0.2ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Sammy', NULL, '2014-01-09 22:00:55', '2014-01-09 22:00:55', 980190962)
1245
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Joe', NULL, '2014-01-09 22:00:55', '2014-01-09 22:00:55', 298486374)
1246
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Susan', NULL, '2014-01-09 22:00:55', '2014-01-09 22:00:55', 113629430)
1247
+  (2.3ms) commit transaction
1248
+  (0.1ms) begin transaction
1249
+ --------------------------------------------------------------------------
1250
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
1251
+ --------------------------------------------------------------------------
1252
+  (0.1ms) rollback transaction
1253
+  (0.1ms) begin transaction
1254
+ ------------------------------------------------
1255
+ PublicIdTest: test_Can_be_looked_up_by_the_ident
1256
+ ------------------------------------------------
1257
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-_5TS7m49DxbLuA' LIMIT 1
1258
+  (0.1ms) SAVEPOINT active_record_1
1259
+ SQL (2.3ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 22:00:56 UTC +00:00], ["ident", "use-_5TS7m49DxbLuA"], ["name", "joey"], ["updated_at", Thu, 09 Jan 2014 22:00:56 UTC +00:00]]
1260
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1261
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ident" = 'use-_5TS7m49DxbLuA' ORDER BY "users"."id" ASC LIMIT 1
1262
+  (0.7ms) rollback transaction
1263
+  (0.1ms) begin transaction
1264
+ -------------------------------------------------
1265
+ PublicIdTest: test_Doesn't_change_on_save,_update
1266
+ -------------------------------------------------
1267
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-y2JMRUyVLzXP1A' LIMIT 1
1268
+  (0.1ms) SAVEPOINT active_record_1
1269
+ SQL (0.9ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 22:00:56 UTC +00:00], ["ident", "use-y2JMRUyVLzXP1A"], ["updated_at", Thu, 09 Jan 2014 22:00:56 UTC +00:00]]
1270
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1271
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
1272
+  (0.1ms) SAVEPOINT active_record_1
1273
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1274
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
1275
+  (0.5ms) rollback transaction
1276
+  (0.1ms) begin transaction
1277
+ -------------------------------------------
1278
+ PublicIdTest: test_Ident_should_==_to_param
1279
+ -------------------------------------------
1280
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-ZgZsFB4odiSNJw' LIMIT 1
1281
+  (0.1ms) rollback transaction
1282
+  (0.1ms) begin transaction
1283
+ -------------------------------------------------
1284
+ PublicIdTest: test_Initialize_all_the_public_id's
1285
+ -------------------------------------------------
1286
+  (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
1287
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ident" IS NULL ORDER BY "users"."id" ASC LIMIT 1000
1288
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-5OPa4ZzuuEwe9Q' LIMIT 1
1289
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-do373FBcyk-k5w' LIMIT 1
1290
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-1xDWGvZkgqXaJA' LIMIT 1
1291
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-MrizbpVbcj5Zgg' LIMIT 1
1292
+  (0.1ms) SAVEPOINT active_record_1
1293
+ SQL (0.4ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 113629430 [["ident", "use-MrizbpVbcj5Zgg"], ["updated_at", Thu, 09 Jan 2014 22:00:56 UTC +00:00]]
1294
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1295
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-UITvUaoas4s_qw' LIMIT 1
1296
+  (0.1ms) SAVEPOINT active_record_1
1297
+ SQL (1.0ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 298486374 [["ident", "use-UITvUaoas4s_qw"], ["updated_at", Thu, 09 Jan 2014 22:00:56 UTC +00:00]]
1298
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1299
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-OJdS3ZtW1_ESfw' LIMIT 1
1300
+  (0.0ms) SAVEPOINT active_record_1
1301
+ SQL (0.2ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 980190962 [["ident", "use-OJdS3ZtW1_ESfw"], ["updated_at", Thu, 09 Jan 2014 22:00:56 UTC +00:00]]
1302
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1303
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
1304
+  (0.4ms) rollback transaction
1305
+  (0.1ms) begin transaction
1306
+ --------------------------------------------------
1307
+ PublicIdTest: test_New_users_get_an_ID_initialized
1308
+ --------------------------------------------------
1309
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-KFeQGGqwk8IpbQ' LIMIT 1
1310
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-ECNrdIzvCBh8jg' LIMIT 1
1311
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use--dCP7iXLPOgkXQ' LIMIT 1
1312
+  (0.0ms) rollback transaction
1313
+  (0.4ms) begin transaction
1314
+ Fixture Delete (0.3ms) DELETE FROM "users"
1315
+ Fixture Insert (0.2ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Sammy', NULL, '2014-01-09 22:01:53', '2014-01-09 22:01:53', 980190962)
1316
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Joe', NULL, '2014-01-09 22:01:53', '2014-01-09 22:01:53', 298486374)
1317
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Susan', NULL, '2014-01-09 22:01:53', '2014-01-09 22:01:53', 113629430)
1318
+  (2.2ms) commit transaction
1319
+  (0.1ms) begin transaction
1320
+ --------------------------------------------------------------------------
1321
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
1322
+ --------------------------------------------------------------------------
1323
+  (0.1ms) rollback transaction
1324
+  (0.1ms) begin transaction
1325
+ ------------------------------------------------
1326
+ PublicIdTest: test_Can_be_looked_up_by_the_ident
1327
+ ------------------------------------------------
1328
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-RnAo1-gPl37TpA' LIMIT 1
1329
+  (0.1ms) SAVEPOINT active_record_1
1330
+ SQL (4.0ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 22:01:53 UTC +00:00], ["ident", "use-RnAo1-gPl37TpA"], ["name", "joey"], ["updated_at", Thu, 09 Jan 2014 22:01:53 UTC +00:00]]
1331
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1332
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."ident" = 'use-RnAo1-gPl37TpA' ORDER BY "users"."id" ASC LIMIT 1
1333
+  (0.5ms) rollback transaction
1334
+  (0.1ms) begin transaction
1335
+ -------------------------------------------------
1336
+ PublicIdTest: test_Doesn't_change_on_save,_update
1337
+ -------------------------------------------------
1338
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-sDS--N9c-FRw2g' LIMIT 1
1339
+  (0.1ms) SAVEPOINT active_record_1
1340
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 22:01:53 UTC +00:00], ["ident", "use-sDS--N9c-FRw2g"], ["updated_at", Thu, 09 Jan 2014 22:01:53 UTC +00:00]]
1341
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1342
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
1343
+  (0.1ms) SAVEPOINT active_record_1
1344
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1345
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
1346
+  (0.4ms) rollback transaction
1347
+  (0.1ms) begin transaction
1348
+ -------------------------------------------
1349
+ PublicIdTest: test_Ident_should_==_to_param
1350
+ -------------------------------------------
1351
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-ORkWgXTr17aMeQ' LIMIT 1
1352
+  (0.1ms) rollback transaction
1353
+  (0.1ms) begin transaction
1354
+ -------------------------------------------------
1355
+ PublicIdTest: test_Initialize_all_the_public_id's
1356
+ -------------------------------------------------
1357
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
1358
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ident" IS NULL ORDER BY "users"."id" ASC LIMIT 1000
1359
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-yUnsVBSdBMy7-g' LIMIT 1
1360
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-M_--X_jKrVg7eg' LIMIT 1
1361
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-o8YK_Sq1LaOOjw' LIMIT 1
1362
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-wzZMPEmD0aPSAw' LIMIT 1
1363
+  (0.0ms) SAVEPOINT active_record_1
1364
+ SQL (0.4ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 113629430 [["ident", "use-wzZMPEmD0aPSAw"], ["updated_at", Thu, 09 Jan 2014 22:01:53 UTC +00:00]]
1365
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1366
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-0jsTEWV9_vA11Q' LIMIT 1
1367
+  (0.0ms) SAVEPOINT active_record_1
1368
+ SQL (1.7ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 298486374 [["ident", "use-0jsTEWV9_vA11Q"], ["updated_at", Thu, 09 Jan 2014 22:01:53 UTC +00:00]]
1369
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1370
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-bMKXGVvbRZUULg' LIMIT 1
1371
+  (0.1ms) SAVEPOINT active_record_1
1372
+ SQL (0.3ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 980190962 [["ident", "use-bMKXGVvbRZUULg"], ["updated_at", Thu, 09 Jan 2014 22:01:53 UTC +00:00]]
1373
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1374
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
1375
+  (0.7ms) rollback transaction
1376
+  (0.1ms) begin transaction
1377
+ --------------------------------------------------
1378
+ PublicIdTest: test_New_users_get_an_ID_initialized
1379
+ --------------------------------------------------
1380
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-lg0lZdxc7KztDw' LIMIT 1
1381
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-yjH7Ued3dBV0UA' LIMIT 1
1382
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use--tgdeLF_HC0Txw' LIMIT 1
1383
+  (0.1ms) rollback transaction
1384
+  (0.5ms) begin transaction
1385
+ Fixture Delete (0.3ms) DELETE FROM "users"
1386
+ Fixture Insert (0.2ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Sammy', NULL, '2014-01-09 22:03:17', '2014-01-09 22:03:17', 980190962)
1387
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Joe', NULL, '2014-01-09 22:03:17', '2014-01-09 22:03:17', 298486374)
1388
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Susan', NULL, '2014-01-09 22:03:17', '2014-01-09 22:03:17', 113629430)
1389
+  (2.4ms) commit transaction
1390
+  (0.1ms) begin transaction
1391
+ --------------------------------------------------------------------------
1392
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
1393
+ --------------------------------------------------------------------------
1394
+  (0.1ms) rollback transaction
1395
+  (0.1ms) begin transaction
1396
+ ------------------------------------------------
1397
+ PublicIdTest: test_Can_be_looked_up_by_the_ident
1398
+ ------------------------------------------------
1399
+  (0.1ms) rollback transaction
1400
+  (0.1ms) begin transaction
1401
+ -------------------------------------------------
1402
+ PublicIdTest: test_Doesn't_change_on_save,_update
1403
+ -------------------------------------------------
1404
+  (0.1ms) rollback transaction
1405
+  (0.1ms) begin transaction
1406
+ -------------------------------------------
1407
+ PublicIdTest: test_Ident_should_==_to_param
1408
+ -------------------------------------------
1409
+  (0.1ms) rollback transaction
1410
+  (0.1ms) begin transaction
1411
+ -------------------------------------------------
1412
+ PublicIdTest: test_Initialize_all_the_public_id's
1413
+ -------------------------------------------------
1414
+  (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
1415
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ident" IS NULL ORDER BY "users"."id" ASC LIMIT 1000
1416
+  (0.1ms) rollback transaction
1417
+  (0.1ms) begin transaction
1418
+ --------------------------------------------------
1419
+ PublicIdTest: test_New_users_get_an_ID_initialized
1420
+ --------------------------------------------------
1421
+  (0.0ms) rollback transaction
1422
+  (0.5ms) begin transaction
1423
+ Fixture Delete (0.4ms) DELETE FROM "users"
1424
+ Fixture Insert (0.2ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Sammy', NULL, '2014-01-09 22:04:31', '2014-01-09 22:04:31', 980190962)
1425
+ Fixture Insert (0.2ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Joe', NULL, '2014-01-09 22:04:31', '2014-01-09 22:04:31', 298486374)
1426
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Susan', NULL, '2014-01-09 22:04:31', '2014-01-09 22:04:31', 113629430)
1427
+  (3.2ms) commit transaction
1428
+  (0.1ms) begin transaction
1429
+ --------------------------------------------------------------------------
1430
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
1431
+ --------------------------------------------------------------------------
1432
+  (0.1ms) rollback transaction
1433
+  (0.1ms) begin transaction
1434
+ ------------------------------------------------
1435
+ PublicIdTest: test_Can_be_looked_up_by_the_ident
1436
+ ------------------------------------------------
1437
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-vosmhea1-t0q6Q' LIMIT 1
1438
+  (0.1ms) SAVEPOINT active_record_1
1439
+ SQL (3.8ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 22:04:31 UTC +00:00], ["ident", "use-vosmhea1-t0q6Q"], ["name", "joey"], ["updated_at", Thu, 09 Jan 2014 22:04:31 UTC +00:00]]
1440
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1441
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."ident" = 'use-vosmhea1-t0q6Q' ORDER BY "users"."id" ASC LIMIT 1
1442
+  (0.5ms) rollback transaction
1443
+  (0.1ms) begin transaction
1444
+ -------------------------------------------------
1445
+ PublicIdTest: test_Doesn't_change_on_save,_update
1446
+ -------------------------------------------------
1447
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-A-2xHIqF0mHJ9w' LIMIT 1
1448
+  (0.1ms) SAVEPOINT active_record_1
1449
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 22:04:31 UTC +00:00], ["ident", "use-A-2xHIqF0mHJ9w"], ["updated_at", Thu, 09 Jan 2014 22:04:31 UTC +00:00]]
1450
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1451
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
1452
+  (0.0ms) SAVEPOINT active_record_1
1453
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1454
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
1455
+  (0.4ms) rollback transaction
1456
+  (0.1ms) begin transaction
1457
+ -------------------------------------------
1458
+ PublicIdTest: test_Ident_should_==_to_param
1459
+ -------------------------------------------
1460
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-ACNWkbh9qMek3g' LIMIT 1
1461
+  (0.0ms) rollback transaction
1462
+  (0.1ms) begin transaction
1463
+ -------------------------------------------------
1464
+ PublicIdTest: test_Initialize_all_the_public_id's
1465
+ -------------------------------------------------
1466
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
1467
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ident" IS NULL ORDER BY "users"."id" ASC LIMIT 1000
1468
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-DSVxq13LiCGIEg' LIMIT 1
1469
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-ZdfE_qxp1O1nmg' LIMIT 1
1470
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-I3lOiBOKUWVobQ' LIMIT 1
1471
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-BLfG2m3bLX8A8w' LIMIT 1
1472
+  (0.0ms) SAVEPOINT active_record_1
1473
+ SQL (0.5ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 113629430 [["ident", "use-BLfG2m3bLX8A8w"], ["updated_at", Thu, 09 Jan 2014 22:04:31 UTC +00:00]]
1474
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1475
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-NqmhRQFkLecccg' LIMIT 1
1476
+  (0.0ms) SAVEPOINT active_record_1
1477
+ SQL (1.4ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 298486374 [["ident", "use-NqmhRQFkLecccg"], ["updated_at", Thu, 09 Jan 2014 22:04:31 UTC +00:00]]
1478
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1479
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-RTp6OrsnDyD3vQ' LIMIT 1
1480
+  (0.0ms) SAVEPOINT active_record_1
1481
+ SQL (0.2ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 980190962 [["ident", "use-RTp6OrsnDyD3vQ"], ["updated_at", Thu, 09 Jan 2014 22:04:31 UTC +00:00]]
1482
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1483
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
1484
+  (0.6ms) rollback transaction
1485
+  (0.1ms) begin transaction
1486
+ --------------------------------------------------
1487
+ PublicIdTest: test_New_users_get_an_ID_initialized
1488
+ --------------------------------------------------
1489
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-Z38U2TL_3VdkWg' LIMIT 1
1490
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-W1B53CFYCQspYA' LIMIT 1
1491
+  (0.1ms) rollback transaction
1492
+  (0.8ms) begin transaction
1493
+ Fixture Delete (0.7ms) DELETE FROM "users"
1494
+ Fixture Insert (0.4ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Sammy', NULL, '2014-01-09 22:13:11', '2014-01-09 22:13:11', 980190962)
1495
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Joe', NULL, '2014-01-09 22:13:11', '2014-01-09 22:13:11', 298486374)
1496
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Susan', NULL, '2014-01-09 22:13:11', '2014-01-09 22:13:11', 113629430)
1497
+  (1.0ms) commit transaction
1498
+  (0.1ms) begin transaction
1499
+ --------------------------------------------------------------------------
1500
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
1501
+ --------------------------------------------------------------------------
1502
+  (0.1ms) rollback transaction
1503
+  (0.1ms) begin transaction
1504
+ ------------------------------------------------
1505
+ PublicIdTest: test_Can_be_looked_up_by_the_ident
1506
+ ------------------------------------------------
1507
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-OL8MsZVZfJMslw' LIMIT 1
1508
+  (0.1ms) SAVEPOINT active_record_1
1509
+ SQL (3.9ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 22:13:11 UTC +00:00], ["ident", "use-OL8MsZVZfJMslw"], ["name", "joey"], ["updated_at", Thu, 09 Jan 2014 22:13:11 UTC +00:00]]
1510
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1511
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ident" = 'use-OL8MsZVZfJMslw' ORDER BY "users"."id" ASC LIMIT 1
1512
+  (0.5ms) rollback transaction
1513
+  (0.2ms) begin transaction
1514
+ -------------------------------------------------
1515
+ PublicIdTest: test_Doesn't_change_on_save,_update
1516
+ -------------------------------------------------
1517
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-OKD3l8lTuC5RIQ' LIMIT 1
1518
+  (0.1ms) SAVEPOINT active_record_1
1519
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 22:13:11 UTC +00:00], ["ident", "use-OKD3l8lTuC5RIQ"], ["updated_at", Thu, 09 Jan 2014 22:13:11 UTC +00:00]]
1520
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1521
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
1522
+  (0.1ms) SAVEPOINT active_record_1
1523
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1524
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
1525
+  (0.5ms) rollback transaction
1526
+  (0.1ms) begin transaction
1527
+ -------------------------------------------
1528
+ PublicIdTest: test_Ident_should_==_to_param
1529
+ -------------------------------------------
1530
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-BLxFpAxUkY5jCg' LIMIT 1
1531
+  (0.1ms) rollback transaction
1532
+  (0.1ms) begin transaction
1533
+ -------------------------------------------------
1534
+ PublicIdTest: test_Initialize_all_the_public_id's
1535
+ -------------------------------------------------
1536
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
1537
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ident" IS NULL ORDER BY "users"."id" ASC LIMIT 1000
1538
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-prTeVfMFWn6jWQ' LIMIT 1
1539
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-NYaT0ZW49Cch3Q' LIMIT 1
1540
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-EMtYTvhK5R2eQw' LIMIT 1
1541
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-dooMUppYxpkPRA' LIMIT 1
1542
+  (0.1ms) SAVEPOINT active_record_1
1543
+ SQL (0.5ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 113629430 [["ident", "use-dooMUppYxpkPRA"], ["updated_at", Thu, 09 Jan 2014 22:13:11 UTC +00:00]]
1544
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1545
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-J_G5uXU1QcXB6g' LIMIT 1
1546
+  (0.0ms) SAVEPOINT active_record_1
1547
+ SQL (1.1ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 298486374 [["ident", "use-J_G5uXU1QcXB6g"], ["updated_at", Thu, 09 Jan 2014 22:13:11 UTC +00:00]]
1548
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1549
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-Iie-KGavHP1Ktg' LIMIT 1
1550
+  (0.0ms) SAVEPOINT active_record_1
1551
+ SQL (0.2ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 980190962 [["ident", "use-Iie-KGavHP1Ktg"], ["updated_at", Thu, 09 Jan 2014 22:13:11 UTC +00:00]]
1552
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1553
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
1554
+  (0.4ms) rollback transaction
1555
+  (0.1ms) begin transaction
1556
+ --------------------------------------------------
1557
+ PublicIdTest: test_New_users_get_an_ID_initialized
1558
+ --------------------------------------------------
1559
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-EpbyL0DhZPyQbw' LIMIT 1
1560
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-ONsAut4vlO6iaA' LIMIT 1
1561
+  (0.1ms) rollback transaction
1562
+  (0.4ms) begin transaction
1563
+ Fixture Delete (0.3ms) DELETE FROM "users"
1564
+ Fixture Insert (0.2ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Sammy', NULL, '2014-01-09 22:14:01', '2014-01-09 22:14:01', 980190962)
1565
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Joe', NULL, '2014-01-09 22:14:01', '2014-01-09 22:14:01', 298486374)
1566
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "ident", "created_at", "updated_at", "id") VALUES ('Susan', NULL, '2014-01-09 22:14:01', '2014-01-09 22:14:01', 113629430)
1567
+  (2.3ms) commit transaction
1568
+  (0.1ms) begin transaction
1569
+ --------------------------------------------------------------------------
1570
+ PublicIdTest: test_ActiveRecord::Base_responds_to_publically_identified_by
1571
+ --------------------------------------------------------------------------
1572
+  (0.1ms) rollback transaction
1573
+  (0.1ms) begin transaction
1574
+ ------------------------------------------------
1575
+ PublicIdTest: test_Can_be_looked_up_by_the_ident
1576
+ ------------------------------------------------
1577
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-_ppv5pCUHKbQsA' LIMIT 1
1578
+  (0.1ms) SAVEPOINT active_record_1
1579
+ SQL (2.9ms) INSERT INTO "users" ("created_at", "ident", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 22:14:01 UTC +00:00], ["ident", "use-_ppv5pCUHKbQsA"], ["name", "joey"], ["updated_at", Thu, 09 Jan 2014 22:14:01 UTC +00:00]]
1580
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1581
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."ident" = 'use-_ppv5pCUHKbQsA' ORDER BY "users"."id" ASC LIMIT 1
1582
+  (0.6ms) rollback transaction
1583
+  (0.1ms) begin transaction
1584
+ -------------------------------------------------
1585
+ PublicIdTest: test_Doesn't_change_on_save,_update
1586
+ -------------------------------------------------
1587
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-hEdT05vAxfJ3aQ' LIMIT 1
1588
+  (0.1ms) SAVEPOINT active_record_1
1589
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "ident", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 22:14:01 UTC +00:00], ["ident", "use-hEdT05vAxfJ3aQ"], ["updated_at", Thu, 09 Jan 2014 22:14:01 UTC +00:00]]
1590
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1591
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
1592
+  (0.2ms) SAVEPOINT active_record_1
1593
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1594
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190963]]
1595
+  (0.6ms) rollback transaction
1596
+  (0.1ms) begin transaction
1597
+ -------------------------------------------
1598
+ PublicIdTest: test_Ident_should_==_to_param
1599
+ -------------------------------------------
1600
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-WtOrie5U4qXv1g' LIMIT 1
1601
+  (0.1ms) rollback transaction
1602
+  (0.1ms) begin transaction
1603
+ -------------------------------------------------
1604
+ PublicIdTest: test_Initialize_all_the_public_id's
1605
+ -------------------------------------------------
1606
+  (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
1607
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ident" IS NULL ORDER BY "users"."id" ASC LIMIT 1000
1608
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-A3NFEOi4p_Ibcg' LIMIT 1
1609
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-XoYwFM5SiDYOJQ' LIMIT 1
1610
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-uTbOPcBosQ7vtQ' LIMIT 1
1611
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-Hl_CI-GPO7ko4A' LIMIT 1
1612
+  (0.1ms) SAVEPOINT active_record_1
1613
+ SQL (0.4ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 113629430 [["ident", "use-Hl_CI-GPO7ko4A"], ["updated_at", Thu, 09 Jan 2014 22:14:01 UTC +00:00]]
1614
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1615
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-Fox69cmXvD798g' LIMIT 1
1616
+  (0.0ms) SAVEPOINT active_record_1
1617
+ SQL (1.2ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 298486374 [["ident", "use-Fox69cmXvD798g"], ["updated_at", Thu, 09 Jan 2014 22:14:01 UTC +00:00]]
1618
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1619
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-25Poc4n1OwlpXg' LIMIT 1
1620
+  (0.0ms) SAVEPOINT active_record_1
1621
+ SQL (0.2ms) UPDATE "users" SET "ident" = ?, "updated_at" = ? WHERE "users"."id" = 980190962 [["ident", "use-25Poc4n1OwlpXg"], ["updated_at", Thu, 09 Jan 2014 22:14:01 UTC +00:00]]
1622
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1623
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."ident" IS NULL
1624
+  (0.6ms) rollback transaction
1625
+  (0.1ms) begin transaction
1626
+ --------------------------------------------------
1627
+ PublicIdTest: test_New_users_get_an_ID_initialized
1628
+ --------------------------------------------------
1629
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-eLMHRPDhbSundQ' LIMIT 1
1630
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ident" = 'use-98OyLnCOwHO9jA' LIMIT 1
1631
+  (0.0ms) rollback transaction