collectively 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (57) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +32 -0
  4. data/lib/collectively.rb +15 -0
  5. data/lib/collectively/acts_as_collectively.rb +20 -0
  6. data/lib/collectively/base.rb +8 -0
  7. data/lib/collectively/version.rb +3 -0
  8. data/lib/rails/generators/collectively/collection_generator.rb +16 -0
  9. data/lib/rails/generators/collectively/templates/collection.rb +4 -0
  10. data/lib/tasks/collectively_tasks.rake +4 -0
  11. data/test/acts_as_collectively_test.rb +29 -0
  12. data/test/collection_generator_test.rb +13 -0
  13. data/test/collectively_test.rb +7 -0
  14. data/test/dummy/README.rdoc +28 -0
  15. data/test/dummy/Rakefile +6 -0
  16. data/test/dummy/app/assets/javascripts/application.js +13 -0
  17. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  18. data/test/dummy/app/collections/blogs_collection.rb +2 -0
  19. data/test/dummy/app/collections/posts_collection.rb +13 -0
  20. data/test/dummy/app/controllers/application_controller.rb +5 -0
  21. data/test/dummy/app/helpers/application_helper.rb +2 -0
  22. data/test/dummy/app/models/page_view.rb +3 -0
  23. data/test/dummy/app/models/post.rb +4 -0
  24. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  25. data/test/dummy/bin/bundle +3 -0
  26. data/test/dummy/bin/rails +4 -0
  27. data/test/dummy/bin/rake +4 -0
  28. data/test/dummy/config.ru +4 -0
  29. data/test/dummy/config/application.rb +23 -0
  30. data/test/dummy/config/boot.rb +5 -0
  31. data/test/dummy/config/database.yml +25 -0
  32. data/test/dummy/config/environment.rb +5 -0
  33. data/test/dummy/config/environments/development.rb +29 -0
  34. data/test/dummy/config/environments/production.rb +80 -0
  35. data/test/dummy/config/environments/test.rb +36 -0
  36. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  37. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  38. data/test/dummy/config/initializers/inflections.rb +16 -0
  39. data/test/dummy/config/initializers/mime_types.rb +5 -0
  40. data/test/dummy/config/initializers/secret_token.rb +12 -0
  41. data/test/dummy/config/initializers/session_store.rb +3 -0
  42. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  43. data/test/dummy/config/locales/en.yml +23 -0
  44. data/test/dummy/config/routes.rb +56 -0
  45. data/test/dummy/db/development.sqlite3 +0 -0
  46. data/test/dummy/db/migrate/20130730062119_create_posts.rb +18 -0
  47. data/test/dummy/db/schema.rb +30 -0
  48. data/test/dummy/db/seeds.rb +31 -0
  49. data/test/dummy/db/test.sqlite3 +0 -0
  50. data/test/dummy/log/development.log +293 -0
  51. data/test/dummy/log/test.log +2984 -0
  52. data/test/dummy/public/404.html +58 -0
  53. data/test/dummy/public/422.html +58 -0
  54. data/test/dummy/public/500.html +57 -0
  55. data/test/dummy/public/favicon.ico +0 -0
  56. data/test/test_helper.rb +20 -0
  57. metadata +172 -0
@@ -0,0 +1,2984 @@
1
+
2
+ ***** Debugger requested, but was not available (ensure the debugger gem is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
3
+
4
+  (0.3ms) begin transaction
5
+ -------------------------------------------------------------------
6
+ CollectionGeneratorTest: test_Assert_all_files_are_properly_created
7
+ -------------------------------------------------------------------
8
+  (0.1ms) rollback transaction
9
+  (0.1ms) begin transaction
10
+ ----------------------------
11
+ CollectivelyTest: test_truth
12
+ ----------------------------
13
+  (0.1ms) rollback transaction
14
+  (0.3ms) begin transaction
15
+ -------------------------------------------------------------------
16
+ CollectionGeneratorTest: test_Assert_all_files_are_properly_created
17
+ -------------------------------------------------------------------
18
+  (0.1ms) rollback transaction
19
+  (0.1ms) begin transaction
20
+ ----------------------------
21
+ CollectivelyTest: test_truth
22
+ ----------------------------
23
+  (0.1ms) rollback transaction
24
+  (1.5ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "update_at" datetime, "read_count" integer, "updated_at" datetime) 
25
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
26
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
27
+  (0.2ms) SELECT version FROM "schema_migrations"
28
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20130730062119')
29
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
30
+  (2.6ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "update_at" datetime, "read_count" integer, "updated_at" datetime) 
31
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
32
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
33
+  (0.1ms) SELECT version FROM "schema_migrations"
34
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130730062119')
35
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
36
+  (0.3ms) begin transaction
37
+ -------------------------------------------------------------------
38
+ CollectionGeneratorTest: test_Assert_all_files_are_properly_created
39
+ -------------------------------------------------------------------
40
+  (0.1ms) rollback transaction
41
+  (0.1ms) begin transaction
42
+ ----------------------------
43
+ CollectivelyTest: test_truth
44
+ ----------------------------
45
+  (0.1ms) rollback transaction
46
+  (0.4ms) begin transaction
47
+ --------------------------------------------------------------------------------
48
+ ActsAsCollectivelyTest: test_a_hickwalls_yaffle_text_field_should_be_last_squawk
49
+ --------------------------------------------------------------------------------
50
+  (0.1ms) rollback transaction
51
+  (0.1ms) begin transaction
52
+ -------------------------------------------------------------------------------
53
+ ActsAsCollectivelyTest: test_a_wickwalls_yaffle_text_field_should_be_last_tweet
54
+ -------------------------------------------------------------------------------
55
+  (0.1ms) rollback transaction
56
+  (0.1ms) begin transaction
57
+ -------------------------------------------------------------------
58
+ CollectionGeneratorTest: test_Assert_all_files_are_properly_created
59
+ -------------------------------------------------------------------
60
+  (0.1ms) rollback transaction
61
+  (0.1ms) begin transaction
62
+ ----------------------------
63
+ CollectivelyTest: test_truth
64
+ ----------------------------
65
+  (0.1ms) rollback transaction
66
+  (0.4ms) begin transaction
67
+ ---------------------------------------------------------------------------------
68
+ ActsAsCollectivelyTest: test_a_post_collectively_model_should_be_posts_collection
69
+ ---------------------------------------------------------------------------------
70
+  (0.1ms) rollback transaction
71
+  (0.1ms) begin transaction
72
+ --------------------------------------------------------------------------------
73
+ ActsAsCollectivelyTest: test_a_post_collectively_name_should_be_blogs_collection
74
+ --------------------------------------------------------------------------------
75
+  (0.1ms) rollback transaction
76
+  (0.1ms) begin transaction
77
+ -------------------------------------------------------------------
78
+ CollectionGeneratorTest: test_Assert_all_files_are_properly_created
79
+ -------------------------------------------------------------------
80
+  (0.1ms) rollback transaction
81
+  (0.1ms) begin transaction
82
+ ----------------------------
83
+ CollectivelyTest: test_truth
84
+ ----------------------------
85
+  (0.1ms) rollback transaction
86
+  (0.3ms) begin transaction
87
+ ---------------------------------------------------------------------------------
88
+ ActsAsCollectivelyTest: test_a_post_collectively_model_should_be_posts_collection
89
+ ---------------------------------------------------------------------------------
90
+  (0.1ms) rollback transaction
91
+  (0.1ms) begin transaction
92
+ --------------------------------------------------------------------------------
93
+ ActsAsCollectivelyTest: test_a_post_collectively_name_should_be_blogs_collection
94
+ --------------------------------------------------------------------------------
95
+  (0.1ms) rollback transaction
96
+  (0.1ms) begin transaction
97
+ -------------------------------------------------------------------
98
+ CollectionGeneratorTest: test_Assert_all_files_are_properly_created
99
+ -------------------------------------------------------------------
100
+  (0.1ms) rollback transaction
101
+  (0.1ms) begin transaction
102
+ ----------------------------
103
+ CollectivelyTest: test_truth
104
+ ----------------------------
105
+  (0.1ms) rollback transaction
106
+  (0.3ms) begin transaction
107
+ ---------------------------------------------------------------------------------
108
+ ActsAsCollectivelyTest: test_a_post_collectively_model_should_be_posts_collection
109
+ ---------------------------------------------------------------------------------
110
+  (0.2ms) rollback transaction
111
+  (0.2ms) begin transaction
112
+ --------------------------------------------------------------------------------
113
+ ActsAsCollectivelyTest: test_a_post_collectively_name_should_be_blogs_collection
114
+ --------------------------------------------------------------------------------
115
+  (0.1ms) rollback transaction
116
+  (0.1ms) begin transaction
117
+ -------------------------------------------------------------------
118
+ CollectionGeneratorTest: test_Assert_all_files_are_properly_created
119
+ -------------------------------------------------------------------
120
+  (0.2ms) rollback transaction
121
+  (34.1ms) begin transaction
122
+ ----------------------------
123
+ CollectivelyTest: test_truth
124
+ ----------------------------
125
+  (0.1ms) rollback transaction
126
+  (0.3ms) begin transaction
127
+ ---------------------------------------------------------------------------------
128
+ ActsAsCollectivelyTest: test_a_post_collectively_model_should_be_posts_collection
129
+ ---------------------------------------------------------------------------------
130
+  (0.1ms) rollback transaction
131
+  (0.1ms) begin transaction
132
+ --------------------------------------------------------------------------------
133
+ ActsAsCollectivelyTest: test_a_post_collectively_name_should_be_blogs_collection
134
+ --------------------------------------------------------------------------------
135
+  (0.3ms) rollback transaction
136
+  (0.1ms) begin transaction
137
+ -------------------------------------------------------------------
138
+ CollectionGeneratorTest: test_Assert_all_files_are_properly_created
139
+ -------------------------------------------------------------------
140
+  (0.1ms) rollback transaction
141
+  (0.1ms) begin transaction
142
+ ----------------------------
143
+ CollectivelyTest: test_truth
144
+ ----------------------------
145
+  (0.1ms) rollback transaction
146
+  (0.3ms) begin transaction
147
+ ---------------------------------------------------------------------------------
148
+ ActsAsCollectivelyTest: test_a_post_collectively_model_should_be_posts_collection
149
+ ---------------------------------------------------------------------------------
150
+  (0.1ms) rollback transaction
151
+  (0.1ms) begin transaction
152
+ --------------------------------------------------------------------------------
153
+ ActsAsCollectivelyTest: test_a_post_collectively_name_should_be_blogs_collection
154
+ --------------------------------------------------------------------------------
155
+  (0.1ms) rollback transaction
156
+  (0.0ms) begin transaction
157
+ -------------------------------------------------------------------
158
+ CollectionGeneratorTest: test_Assert_all_files_are_properly_created
159
+ -------------------------------------------------------------------
160
+  (0.1ms) rollback transaction
161
+  (0.1ms) begin transaction
162
+ ----------------------------
163
+ CollectivelyTest: test_truth
164
+ ----------------------------
165
+  (0.1ms) rollback transaction
166
+  (0.4ms) begin transaction
167
+ ---------------------------------------------------------------------------------
168
+ ActsAsCollectivelyTest: test_a_post_collectively_model_should_be_posts_collection
169
+ ---------------------------------------------------------------------------------
170
+  (0.1ms) rollback transaction
171
+  (0.1ms) begin transaction
172
+ --------------------------------------------------------------------------------
173
+ ActsAsCollectivelyTest: test_a_post_collectively_name_should_be_blogs_collection
174
+ --------------------------------------------------------------------------------
175
+  (0.1ms) rollback transaction
176
+  (0.1ms) begin transaction
177
+ -------------------------------------------------------------------
178
+ CollectionGeneratorTest: test_Assert_all_files_are_properly_created
179
+ -------------------------------------------------------------------
180
+  (0.1ms) rollback transaction
181
+  (0.1ms) begin transaction
182
+ ----------------------------
183
+ CollectivelyTest: test_truth
184
+ ----------------------------
185
+  (0.1ms) rollback transaction
186
+  (0.3ms) begin transaction
187
+ ---------------------------------------------------------------------------------
188
+ ActsAsCollectivelyTest: test_a_post_collectively_model_should_be_posts_collection
189
+ ---------------------------------------------------------------------------------
190
+  (0.1ms) rollback transaction
191
+  (0.1ms) begin transaction
192
+ --------------------------------------------------------------------------------
193
+ ActsAsCollectivelyTest: test_a_post_collectively_name_should_be_blogs_collection
194
+ --------------------------------------------------------------------------------
195
+  (0.1ms) rollback transaction
196
+  (0.1ms) begin transaction
197
+ -------------------------------------------------------------------
198
+ CollectionGeneratorTest: test_Assert_all_files_are_properly_created
199
+ -------------------------------------------------------------------
200
+  (0.1ms) rollback transaction
201
+  (0.1ms) begin transaction
202
+ ----------------------------
203
+ CollectivelyTest: test_truth
204
+ ----------------------------
205
+  (0.1ms) rollback transaction
206
+  (0.3ms) begin transaction
207
+ ---------------------------------------------------------------------------------
208
+ ActsAsCollectivelyTest: test_a_post_collectively_model_should_be_posts_collection
209
+ ---------------------------------------------------------------------------------
210
+  (0.1ms) rollback transaction
211
+  (0.1ms) begin transaction
212
+ --------------------------------------------------------------------------------
213
+ ActsAsCollectivelyTest: test_a_post_collectively_name_should_be_blogs_collection
214
+ --------------------------------------------------------------------------------
215
+  (0.1ms) rollback transaction
216
+  (0.0ms) begin transaction
217
+ -------------------------------------------------------------------
218
+ CollectionGeneratorTest: test_Assert_all_files_are_properly_created
219
+ -------------------------------------------------------------------
220
+  (0.2ms) rollback transaction
221
+  (0.1ms) begin transaction
222
+ ----------------------------
223
+ CollectivelyTest: test_truth
224
+ ----------------------------
225
+  (0.2ms) rollback transaction
226
+  (0.3ms) begin transaction
227
+ ---------------------------------------------------------------------------------
228
+ ActsAsCollectivelyTest: test_a_post_collectively_model_should_be_posts_collection
229
+ ---------------------------------------------------------------------------------
230
+  (0.1ms) rollback transaction
231
+  (0.1ms) begin transaction
232
+ --------------------------------------------------------------------------------
233
+ ActsAsCollectivelyTest: test_a_post_collectively_name_should_be_blogs_collection
234
+ --------------------------------------------------------------------------------
235
+  (0.1ms) rollback transaction
236
+  (0.1ms) begin transaction
237
+ -------------------------------------------------------------------
238
+ CollectionGeneratorTest: test_Assert_all_files_are_properly_created
239
+ -------------------------------------------------------------------
240
+  (0.1ms) rollback transaction
241
+  (0.1ms) begin transaction
242
+ ----------------------------
243
+ CollectivelyTest: test_truth
244
+ ----------------------------
245
+  (0.1ms) rollback transaction
246
+  (0.4ms) begin transaction
247
+ ---------------------------------------------------------------------------------
248
+ ActsAsCollectivelyTest: test_a_post_collectively_model_should_be_posts_collection
249
+ ---------------------------------------------------------------------------------
250
+  (0.1ms) rollback transaction
251
+  (0.1ms) begin transaction
252
+ --------------------------------------------------------------------------------
253
+ ActsAsCollectivelyTest: test_a_post_collectively_name_should_be_blogs_collection
254
+ --------------------------------------------------------------------------------
255
+  (0.1ms) rollback transaction
256
+  (0.1ms) begin transaction
257
+ -------------------------------------------------------------------
258
+ CollectionGeneratorTest: test_Assert_all_files_are_properly_created
259
+ -------------------------------------------------------------------
260
+  (0.2ms) rollback transaction
261
+  (0.1ms) begin transaction
262
+ ----------------------------
263
+ CollectivelyTest: test_truth
264
+ ----------------------------
265
+  (0.1ms) rollback transaction
266
+  (0.5ms) begin transaction
267
+ ---------------------------------------------------------------------------------
268
+ ActsAsCollectivelyTest: test_a_post_collectively_model_should_be_posts_collection
269
+ ---------------------------------------------------------------------------------
270
+  (0.2ms) rollback transaction
271
+  (0.3ms) begin transaction
272
+ --------------------------------------------------------------------------------
273
+ ActsAsCollectivelyTest: test_a_post_collectively_name_should_be_blogs_collection
274
+ --------------------------------------------------------------------------------
275
+  (0.1ms) rollback transaction
276
+  (0.1ms) begin transaction
277
+ -------------------------------------------------------------------
278
+ CollectionGeneratorTest: test_Assert_all_files_are_properly_created
279
+ -------------------------------------------------------------------
280
+  (0.1ms) rollback transaction
281
+  (0.1ms) begin transaction
282
+ ----------------------------
283
+ CollectivelyTest: test_truth
284
+ ----------------------------
285
+  (0.1ms) rollback transaction
286
+  (0.5ms) begin transaction
287
+ ---------------------------------------------------------------------------------
288
+ ActsAsCollectivelyTest: test_a_post_collectively_model_should_be_posts_collection
289
+ ---------------------------------------------------------------------------------
290
+  (0.1ms) rollback transaction
291
+  (0.1ms) begin transaction
292
+ --------------------------------------------------------------------------------
293
+ ActsAsCollectivelyTest: test_a_post_collectively_name_should_be_blogs_collection
294
+ --------------------------------------------------------------------------------
295
+  (0.1ms) rollback transaction
296
+  (0.1ms) begin transaction
297
+ -------------------------------------------------------------------
298
+ CollectionGeneratorTest: test_Assert_all_files_are_properly_created
299
+ -------------------------------------------------------------------
300
+  (0.1ms) rollback transaction
301
+  (0.1ms) begin transaction
302
+ ----------------------------
303
+ CollectivelyTest: test_truth
304
+ ----------------------------
305
+  (0.1ms) rollback transaction
306
+  (0.4ms) begin transaction
307
+ ---------------------------------------------------------------------------------
308
+ ActsAsCollectivelyTest: test_a_post_collectively_model_should_be_posts_collection
309
+ ---------------------------------------------------------------------------------
310
+  (0.1ms) rollback transaction
311
+  (0.1ms) begin transaction
312
+ --------------------------------------------------------------------------------
313
+ ActsAsCollectivelyTest: test_a_post_collectively_name_should_be_blogs_collection
314
+ --------------------------------------------------------------------------------
315
+  (0.1ms) rollback transaction
316
+  (0.1ms) begin transaction
317
+ -------------------------------------------------------------------
318
+ CollectionGeneratorTest: test_Assert_all_files_are_properly_created
319
+ -------------------------------------------------------------------
320
+  (0.2ms) rollback transaction
321
+  (0.1ms) begin transaction
322
+ ----------------------------
323
+ CollectivelyTest: test_truth
324
+ ----------------------------
325
+  (0.2ms) rollback transaction
326
+  (0.1ms) SELECT COUNT(*) FROM "posts"
327
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
328
+  (0.1ms) SELECT COUNT(*) FROM "posts"
329
+  (0.1ms) SELECT COUNT(*) FROM "posts"
330
+  (0.1ms) begin transaction
331
+ SQL (3.2ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "A extravagant post to read about"], ["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["title", "First best post"], ["updated_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00]]
332
+  (2.1ms) commit transaction
333
+  (0.4ms) SELECT COUNT(*) FROM "posts"
334
+  (0.3ms) begin transaction
335
+ ------------------------------------------------------------------------------
336
+ ActsAsCollectivelyTest: test_a_post_collectively_as_should_be_blogs_collection
337
+ ------------------------------------------------------------------------------
338
+  (0.1ms) rollback transaction
339
+  (0.1ms) begin transaction
340
+ ------------------------------------------------------------------------------
341
+ ActsAsCollectivelyTest: test_a_post_collectively_as_should_be_posts_collection
342
+ ------------------------------------------------------------------------------
343
+  (0.3ms) rollback transaction
344
+  (0.1ms) begin transaction
345
+ -------------------------------------------------------------------------
346
+ ActsAsCollectivelyTest: test_a_post_page_views_by_day_should_be_something
347
+ -------------------------------------------------------------------------
348
+  (0.1ms) rollback transaction
349
+  (0.1ms) begin transaction
350
+ -------------------------------------------------------
351
+ ActsAsCollectivelyTest: test_the_post_count_should_be_2
352
+ -------------------------------------------------------
353
+  (0.1ms) SELECT COUNT(*) FROM "posts"
354
+  (0.1ms) rollback transaction
355
+  (0.1ms) begin transaction
356
+ -------------------------------------------------------------------
357
+ CollectionGeneratorTest: test_Assert_all_files_are_properly_created
358
+ -------------------------------------------------------------------
359
+  (0.1ms) rollback transaction
360
+  (0.1ms) begin transaction
361
+ ----------------------------
362
+ CollectivelyTest: test_truth
363
+ ----------------------------
364
+  (0.1ms) rollback transaction
365
+  (0.1ms) SELECT COUNT(*) FROM "posts"
366
+  (0.3ms) begin transaction
367
+ ------------------------------------------------------------------------------
368
+ ActsAsCollectivelyTest: test_a_post_collectively_as_should_be_blogs_collection
369
+ ------------------------------------------------------------------------------
370
+  (0.1ms) rollback transaction
371
+  (0.1ms) begin transaction
372
+ ------------------------------------------------------------------------------
373
+ ActsAsCollectivelyTest: test_a_post_collectively_as_should_be_posts_collection
374
+ ------------------------------------------------------------------------------
375
+  (0.2ms) rollback transaction
376
+  (0.1ms) begin transaction
377
+ -------------------------------------------------------------------------
378
+ ActsAsCollectivelyTest: test_a_post_page_views_by_day_should_be_something
379
+ -------------------------------------------------------------------------
380
+  (0.1ms) rollback transaction
381
+  (0.1ms) begin transaction
382
+ -------------------------------------------------------
383
+ ActsAsCollectivelyTest: test_the_post_count_should_be_2
384
+ -------------------------------------------------------
385
+  (0.1ms) begin transaction
386
+ SQL (3.2ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "A extravagant post to read about"], ["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["title", "First best post"], ["updated_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00]]
387
+  (1.2ms) commit transaction
388
+  (0.1ms) begin transaction
389
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "A fantastic post to read about"], ["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["title", "Second best post"], ["updated_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00]]
390
+  (1.1ms) commit transaction
391
+  (0.1ms) begin transaction
392
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 2]]
393
+  (1.0ms) commit transaction
394
+  (0.1ms) begin transaction
395
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 2]]
396
+  (1.1ms) commit transaction
397
+  (0.1ms) begin transaction
398
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 2]]
399
+  (1.0ms) commit transaction
400
+  (0.1ms) begin transaction
401
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 2]]
402
+  (1.1ms) commit transaction
403
+  (0.1ms) begin transaction
404
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 2]]
405
+  (1.1ms) commit transaction
406
+  (0.1ms) begin transaction
407
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 2]]
408
+  (0.9ms) commit transaction
409
+  (0.1ms) begin transaction
410
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 2]]
411
+  (1.0ms) commit transaction
412
+  (0.1ms) begin transaction
413
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 2]]
414
+  (1.1ms) commit transaction
415
+  (0.1ms) begin transaction
416
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 2]]
417
+  (1.2ms) commit transaction
418
+  (0.1ms) begin transaction
419
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 2]]
420
+  (1.0ms) commit transaction
421
+  (0.1ms) begin transaction
422
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 2]]
423
+  (1.1ms) commit transaction
424
+  (0.1ms) begin transaction
425
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 2]]
426
+  (1.0ms) commit transaction
427
+  (0.1ms) begin transaction
428
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 2]]
429
+  (1.1ms) commit transaction
430
+  (0.1ms) begin transaction
431
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 2]]
432
+  (1.0ms) commit transaction
433
+  (0.1ms) begin transaction
434
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 2]]
435
+  (1.0ms) commit transaction
436
+  (0.1ms) begin transaction
437
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 2]]
438
+  (1.1ms) commit transaction
439
+  (0.1ms) begin transaction
440
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 2]]
441
+  (0.9ms) commit transaction
442
+  (0.1ms) begin transaction
443
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 2]]
444
+  (0.8ms) commit transaction
445
+  (0.1ms) begin transaction
446
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 2]]
447
+  (1.0ms) commit transaction
448
+  (0.1ms) begin transaction
449
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 2]]
450
+  (1.1ms) commit transaction
451
+  (0.1ms) begin transaction
452
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 2]]
453
+  (0.8ms) commit transaction
454
+  (0.1ms) begin transaction
455
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 2]]
456
+  (1.1ms) commit transaction
457
+  (0.1ms) begin transaction
458
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 2]]
459
+  (1.1ms) commit transaction
460
+  (0.1ms) begin transaction
461
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 2]]
462
+  (1.0ms) commit transaction
463
+  (0.1ms) begin transaction
464
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 2]]
465
+  (1.0ms) commit transaction
466
+  (0.1ms) begin transaction
467
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 2]]
468
+  (1.1ms) commit transaction
469
+  (0.1ms) begin transaction
470
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 2]]
471
+  (1.0ms) commit transaction
472
+  (0.1ms) begin transaction
473
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 2]]
474
+  (1.1ms) commit transaction
475
+  (0.1ms) begin transaction
476
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 2]]
477
+  (0.9ms) commit transaction
478
+  (0.1ms) begin transaction
479
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 2]]
480
+  (1.1ms) commit transaction
481
+  (0.1ms) begin transaction
482
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 2]]
483
+  (0.8ms) commit transaction
484
+  (0.1ms) begin transaction
485
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 2]]
486
+  (0.8ms) commit transaction
487
+  (0.1ms) begin transaction
488
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 2]]
489
+  (0.6ms) commit transaction
490
+  (0.1ms) begin transaction
491
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 2]]
492
+  (0.7ms) commit transaction
493
+  (0.1ms) begin transaction
494
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 2]]
495
+  (0.9ms) commit transaction
496
+  (0.1ms) begin transaction
497
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 2]]
498
+  (0.8ms) commit transaction
499
+  (0.1ms) begin transaction
500
+ SQL (0.5ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 2]]
501
+  (3.0ms) commit transaction
502
+  (0.1ms) begin transaction
503
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 2]]
504
+  (0.8ms) commit transaction
505
+  (0.1ms) begin transaction
506
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 2]]
507
+  (1.2ms) commit transaction
508
+  (0.1ms) begin transaction
509
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 2]]
510
+  (1.1ms) commit transaction
511
+  (0.1ms) begin transaction
512
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 2]]
513
+  (0.9ms) commit transaction
514
+  (0.1ms) begin transaction
515
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 2]]
516
+  (0.7ms) commit transaction
517
+  (0.1ms) begin transaction
518
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 2]]
519
+  (0.7ms) commit transaction
520
+  (0.1ms) begin transaction
521
+ SQL (0.5ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 2]]
522
+  (1.1ms) commit transaction
523
+  (0.1ms) begin transaction
524
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 2]]
525
+  (1.1ms) commit transaction
526
+  (0.1ms) begin transaction
527
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 2]]
528
+  (1.1ms) commit transaction
529
+  (0.1ms) begin transaction
530
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 2]]
531
+  (0.7ms) commit transaction
532
+  (0.1ms) begin transaction
533
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 2]]
534
+  (0.7ms) commit transaction
535
+  (0.1ms) begin transaction
536
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 2]]
537
+  (0.8ms) commit transaction
538
+  (0.1ms) begin transaction
539
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 2]]
540
+  (0.9ms) commit transaction
541
+  (0.1ms) begin transaction
542
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 2]]
543
+  (0.8ms) commit transaction
544
+  (0.1ms) begin transaction
545
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 2]]
546
+  (1.2ms) commit transaction
547
+  (0.1ms) begin transaction
548
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 2]]
549
+  (1.0ms) commit transaction
550
+  (0.1ms) begin transaction
551
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 2]]
552
+  (0.7ms) commit transaction
553
+  (0.1ms) begin transaction
554
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 2]]
555
+  (0.7ms) commit transaction
556
+  (0.1ms) begin transaction
557
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 2]]
558
+  (1.0ms) commit transaction
559
+  (0.1ms) begin transaction
560
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 2]]
561
+  (1.1ms) commit transaction
562
+  (0.1ms) begin transaction
563
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 2]]
564
+  (1.0ms) commit transaction
565
+  (0.1ms) begin transaction
566
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 2]]
567
+  (1.0ms) commit transaction
568
+  (0.1ms) begin transaction
569
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 2]]
570
+  (0.8ms) commit transaction
571
+  (0.1ms) begin transaction
572
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 3]]
573
+  (0.8ms) commit transaction
574
+  (0.1ms) begin transaction
575
+ SQL (0.5ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 3]]
576
+  (1.1ms) commit transaction
577
+  (0.1ms) begin transaction
578
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 3]]
579
+  (1.0ms) commit transaction
580
+  (0.1ms) begin transaction
581
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 3]]
582
+  (1.2ms) commit transaction
583
+  (0.1ms) begin transaction
584
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 3]]
585
+  (0.7ms) commit transaction
586
+  (0.1ms) begin transaction
587
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 3]]
588
+  (0.8ms) commit transaction
589
+  (0.1ms) begin transaction
590
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 3]]
591
+  (0.7ms) commit transaction
592
+  (0.1ms) begin transaction
593
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 3]]
594
+  (0.7ms) commit transaction
595
+  (0.1ms) begin transaction
596
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 3]]
597
+  (0.8ms) commit transaction
598
+ SQL (3.6ms) DELETE FROM "page_views"
599
+ SQL (1.3ms) DELETE FROM "posts"
600
+  (0.1ms) begin transaction
601
+ SQL (25.8ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "A extravagant post to read about"], ["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["title", "First best post"], ["updated_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00]]
602
+  (1.1ms) commit transaction
603
+  (0.1ms) begin transaction
604
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "A fantastic post to read about"], ["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["title", "Second best post"], ["updated_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00]]
605
+  (1.1ms) commit transaction
606
+  (0.1ms) begin transaction
607
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 4]]
608
+  (0.9ms) commit transaction
609
+  (0.1ms) begin transaction
610
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 4]]
611
+  (1.1ms) commit transaction
612
+  (0.1ms) begin transaction
613
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 4]]
614
+  (1.1ms) commit transaction
615
+  (0.1ms) begin transaction
616
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 4]]
617
+  (1.0ms) commit transaction
618
+  (0.1ms) begin transaction
619
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 4]]
620
+  (0.8ms) commit transaction
621
+  (0.0ms) begin transaction
622
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 4]]
623
+  (1.0ms) commit transaction
624
+  (0.1ms) begin transaction
625
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 4]]
626
+  (1.0ms) commit transaction
627
+  (0.1ms) begin transaction
628
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 4]]
629
+  (1.0ms) commit transaction
630
+  (0.1ms) begin transaction
631
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 4]]
632
+  (1.0ms) commit transaction
633
+  (0.1ms) begin transaction
634
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 4]]
635
+  (0.9ms) commit transaction
636
+  (0.1ms) begin transaction
637
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 4]]
638
+  (1.1ms) commit transaction
639
+  (0.0ms) begin transaction
640
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 4]]
641
+  (1.0ms) commit transaction
642
+  (0.1ms) begin transaction
643
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 4]]
644
+  (1.1ms) commit transaction
645
+  (0.1ms) begin transaction
646
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 4]]
647
+  (1.1ms) commit transaction
648
+  (0.1ms) begin transaction
649
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 4]]
650
+  (1.1ms) commit transaction
651
+  (0.1ms) begin transaction
652
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 4]]
653
+  (1.1ms) commit transaction
654
+  (0.1ms) begin transaction
655
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 4]]
656
+  (1.0ms) commit transaction
657
+  (0.1ms) begin transaction
658
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 4]]
659
+  (1.1ms) commit transaction
660
+  (0.0ms) begin transaction
661
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 4]]
662
+  (1.0ms) commit transaction
663
+  (0.1ms) begin transaction
664
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 4]]
665
+  (1.0ms) commit transaction
666
+  (0.0ms) begin transaction
667
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 4]]
668
+  (1.0ms) commit transaction
669
+  (0.1ms) begin transaction
670
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 4]]
671
+  (1.0ms) commit transaction
672
+  (0.1ms) begin transaction
673
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 4]]
674
+  (1.0ms) commit transaction
675
+  (0.1ms) begin transaction
676
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 4]]
677
+  (1.0ms) commit transaction
678
+  (0.1ms) begin transaction
679
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 4]]
680
+  (1.0ms) commit transaction
681
+  (0.1ms) begin transaction
682
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 4]]
683
+  (1.0ms) commit transaction
684
+  (0.1ms) begin transaction
685
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 4]]
686
+  (1.0ms) commit transaction
687
+  (0.1ms) begin transaction
688
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 4]]
689
+  (0.9ms) commit transaction
690
+  (0.1ms) begin transaction
691
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 4]]
692
+  (1.1ms) commit transaction
693
+  (0.1ms) begin transaction
694
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 4]]
695
+  (1.0ms) commit transaction
696
+  (0.1ms) begin transaction
697
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 4]]
698
+  (1.1ms) commit transaction
699
+  (0.1ms) begin transaction
700
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 4]]
701
+  (1.0ms) commit transaction
702
+  (0.1ms) begin transaction
703
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 4]]
704
+  (1.1ms) commit transaction
705
+  (0.1ms) begin transaction
706
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 4]]
707
+  (1.0ms) commit transaction
708
+  (0.1ms) begin transaction
709
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 4]]
710
+  (1.0ms) commit transaction
711
+  (0.1ms) begin transaction
712
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 4]]
713
+  (1.0ms) commit transaction
714
+  (0.1ms) begin transaction
715
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 4]]
716
+  (1.2ms) commit transaction
717
+  (0.1ms) begin transaction
718
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 4]]
719
+  (0.8ms) commit transaction
720
+  (0.1ms) begin transaction
721
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 4]]
722
+  (1.0ms) commit transaction
723
+  (0.1ms) begin transaction
724
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 4]]
725
+  (1.1ms) commit transaction
726
+  (0.1ms) begin transaction
727
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 4]]
728
+  (1.1ms) commit transaction
729
+  (0.1ms) begin transaction
730
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 4]]
731
+  (1.1ms) commit transaction
732
+  (0.1ms) begin transaction
733
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 4]]
734
+  (1.1ms) commit transaction
735
+  (0.1ms) begin transaction
736
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 4]]
737
+  (1.1ms) commit transaction
738
+  (0.1ms) begin transaction
739
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 4]]
740
+  (1.1ms) commit transaction
741
+  (0.1ms) begin transaction
742
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 4]]
743
+  (1.0ms) commit transaction
744
+  (0.1ms) begin transaction
745
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 4]]
746
+  (1.1ms) commit transaction
747
+  (0.1ms) begin transaction
748
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 4]]
749
+  (1.0ms) commit transaction
750
+  (0.1ms) begin transaction
751
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 4]]
752
+  (1.0ms) commit transaction
753
+  (0.1ms) begin transaction
754
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 4]]
755
+  (1.0ms) commit transaction
756
+  (0.1ms) begin transaction
757
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 4]]
758
+  (1.1ms) commit transaction
759
+  (0.1ms) begin transaction
760
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 4]]
761
+  (0.8ms) commit transaction
762
+  (0.1ms) begin transaction
763
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 4]]
764
+  (0.8ms) commit transaction
765
+  (0.1ms) begin transaction
766
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 4]]
767
+  (0.8ms) commit transaction
768
+  (0.1ms) begin transaction
769
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 4]]
770
+  (0.8ms) commit transaction
771
+  (0.1ms) begin transaction
772
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 4]]
773
+  (0.8ms) commit transaction
774
+  (0.1ms) begin transaction
775
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 4]]
776
+  (0.8ms) commit transaction
777
+  (0.1ms) begin transaction
778
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 4]]
779
+  (0.9ms) commit transaction
780
+  (0.1ms) begin transaction
781
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 4]]
782
+  (0.7ms) commit transaction
783
+  (0.1ms) begin transaction
784
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 4]]
785
+  (0.7ms) commit transaction
786
+  (0.1ms) begin transaction
787
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 5]]
788
+  (0.9ms) commit transaction
789
+  (0.1ms) begin transaction
790
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 5]]
791
+  (1.0ms) commit transaction
792
+  (0.1ms) begin transaction
793
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 5]]
794
+  (1.1ms) commit transaction
795
+  (0.1ms) begin transaction
796
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 5]]
797
+  (1.4ms) commit transaction
798
+  (0.1ms) begin transaction
799
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 5]]
800
+  (0.7ms) commit transaction
801
+  (0.1ms) begin transaction
802
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 5]]
803
+  (0.8ms) commit transaction
804
+  (0.1ms) begin transaction
805
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 5]]
806
+  (0.9ms) commit transaction
807
+  (0.1ms) begin transaction
808
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 5]]
809
+  (1.0ms) commit transaction
810
+  (0.1ms) begin transaction
811
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 5]]
812
+  (1.2ms) commit transaction
813
+  (0.1ms) begin transaction
814
+ ------------------------------------------------------------------------------
815
+ ActsAsCollectivelyTest: test_a_post_collectively_as_should_be_blogs_collection
816
+ ------------------------------------------------------------------------------
817
+  (0.1ms) rollback transaction
818
+  (0.1ms) begin transaction
819
+ ------------------------------------------------------------------------------
820
+ ActsAsCollectivelyTest: test_a_post_collectively_as_should_be_posts_collection
821
+ ------------------------------------------------------------------------------
822
+  (0.3ms) rollback transaction
823
+  (0.1ms) begin transaction
824
+ -------------------------------------------------------------------------
825
+ ActsAsCollectivelyTest: test_a_post_page_views_by_day_should_be_something
826
+ -------------------------------------------------------------------------
827
+  (0.1ms) rollback transaction
828
+  (0.1ms) begin transaction
829
+ -------------------------------------------------------
830
+ ActsAsCollectivelyTest: test_the_post_count_should_be_2
831
+ -------------------------------------------------------
832
+  (0.2ms) SELECT COUNT(*) FROM "posts"
833
+  (0.1ms) rollback transaction
834
+  (0.0ms) begin transaction
835
+ -------------------------------------------------------------------
836
+ CollectionGeneratorTest: test_Assert_all_files_are_properly_created
837
+ -------------------------------------------------------------------
838
+  (0.2ms) rollback transaction
839
+  (0.1ms) begin transaction
840
+ ----------------------------
841
+ CollectivelyTest: test_truth
842
+ ----------------------------
843
+  (0.1ms) rollback transaction
844
+ SQL (3.4ms) DELETE FROM "page_views"
845
+ SQL (1.3ms) DELETE FROM "posts"
846
+  (0.1ms) begin transaction
847
+ SQL (26.2ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "A extravagant post to read about"], ["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["title", "First best post"], ["updated_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00]]
848
+  (1.1ms) commit transaction
849
+  (0.1ms) begin transaction
850
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "A fantastic post to read about"], ["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["title", "Second best post"], ["updated_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00]]
851
+  (1.1ms) commit transaction
852
+  (0.1ms) begin transaction
853
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 6]]
854
+  (1.1ms) commit transaction
855
+  (0.1ms) begin transaction
856
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 6]]
857
+  (0.9ms) commit transaction
858
+  (0.1ms) begin transaction
859
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 6]]
860
+  (0.8ms) commit transaction
861
+  (0.1ms) begin transaction
862
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 6]]
863
+  (1.1ms) commit transaction
864
+  (0.1ms) begin transaction
865
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 6]]
866
+  (1.2ms) commit transaction
867
+  (0.1ms) begin transaction
868
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 6]]
869
+  (1.1ms) commit transaction
870
+  (0.0ms) begin transaction
871
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 6]]
872
+  (1.0ms) commit transaction
873
+  (0.1ms) begin transaction
874
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 6]]
875
+  (1.0ms) commit transaction
876
+  (0.1ms) begin transaction
877
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 6]]
878
+  (1.2ms) commit transaction
879
+  (0.1ms) begin transaction
880
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 6]]
881
+  (1.1ms) commit transaction
882
+  (0.1ms) begin transaction
883
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 6]]
884
+  (1.0ms) commit transaction
885
+  (0.1ms) begin transaction
886
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 6]]
887
+  (0.7ms) commit transaction
888
+  (0.1ms) begin transaction
889
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 6]]
890
+  (0.7ms) commit transaction
891
+  (0.1ms) begin transaction
892
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 6]]
893
+  (0.7ms) commit transaction
894
+  (0.1ms) begin transaction
895
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 6]]
896
+  (0.7ms) commit transaction
897
+  (0.1ms) begin transaction
898
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 6]]
899
+  (0.8ms) commit transaction
900
+  (0.1ms) begin transaction
901
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 6]]
902
+  (0.8ms) commit transaction
903
+  (0.1ms) begin transaction
904
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 6]]
905
+  (0.8ms) commit transaction
906
+  (0.1ms) begin transaction
907
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 6]]
908
+  (0.7ms) commit transaction
909
+  (0.1ms) begin transaction
910
+ SQL (0.5ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 6]]
911
+  (0.8ms) commit transaction
912
+  (0.1ms) begin transaction
913
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 6]]
914
+  (0.8ms) commit transaction
915
+  (0.1ms) begin transaction
916
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 6]]
917
+  (1.1ms) commit transaction
918
+  (0.1ms) begin transaction
919
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 6]]
920
+  (1.0ms) commit transaction
921
+  (0.1ms) begin transaction
922
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 6]]
923
+  (0.8ms) commit transaction
924
+  (0.1ms) begin transaction
925
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 6]]
926
+  (0.7ms) commit transaction
927
+  (0.1ms) begin transaction
928
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 6]]
929
+  (0.7ms) commit transaction
930
+  (0.1ms) begin transaction
931
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 6]]
932
+  (0.7ms) commit transaction
933
+  (0.1ms) begin transaction
934
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 6]]
935
+  (1.1ms) commit transaction
936
+  (0.1ms) begin transaction
937
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 6]]
938
+  (1.1ms) commit transaction
939
+  (0.1ms) begin transaction
940
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 6]]
941
+  (0.9ms) commit transaction
942
+  (0.1ms) begin transaction
943
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 6]]
944
+  (1.3ms) commit transaction
945
+  (0.1ms) begin transaction
946
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 6]]
947
+  (0.7ms) commit transaction
948
+  (0.1ms) begin transaction
949
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 6]]
950
+  (0.8ms) commit transaction
951
+  (0.1ms) begin transaction
952
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 6]]
953
+  (1.0ms) commit transaction
954
+  (0.1ms) begin transaction
955
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 6]]
956
+  (1.1ms) commit transaction
957
+  (0.1ms) begin transaction
958
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 6]]
959
+  (1.0ms) commit transaction
960
+  (0.1ms) begin transaction
961
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 6]]
962
+  (0.9ms) commit transaction
963
+  (0.1ms) begin transaction
964
+ SQL (0.5ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 6]]
965
+  (0.8ms) commit transaction
966
+  (0.1ms) begin transaction
967
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 6]]
968
+  (0.7ms) commit transaction
969
+  (0.1ms) begin transaction
970
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 6]]
971
+  (0.9ms) commit transaction
972
+  (0.1ms) begin transaction
973
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 6]]
974
+  (1.1ms) commit transaction
975
+  (0.1ms) begin transaction
976
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 6]]
977
+  (0.9ms) commit transaction
978
+  (0.1ms) begin transaction
979
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 6]]
980
+  (1.0ms) commit transaction
981
+  (0.1ms) begin transaction
982
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 6]]
983
+  (0.8ms) commit transaction
984
+  (0.1ms) begin transaction
985
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 6]]
986
+  (0.7ms) commit transaction
987
+  (0.1ms) begin transaction
988
+ SQL (0.5ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 6]]
989
+  (0.7ms) commit transaction
990
+  (0.1ms) begin transaction
991
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 6]]
992
+  (0.9ms) commit transaction
993
+  (0.1ms) begin transaction
994
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 6]]
995
+  (1.1ms) commit transaction
996
+  (0.1ms) begin transaction
997
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 6]]
998
+  (1.1ms) commit transaction
999
+  (0.1ms) begin transaction
1000
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 6]]
1001
+  (0.7ms) commit transaction
1002
+  (0.1ms) begin transaction
1003
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 6]]
1004
+  (0.7ms) commit transaction
1005
+  (0.1ms) begin transaction
1006
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 6]]
1007
+  (0.7ms) commit transaction
1008
+  (0.1ms) begin transaction
1009
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 6]]
1010
+  (0.7ms) commit transaction
1011
+  (0.1ms) begin transaction
1012
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 6]]
1013
+  (0.8ms) commit transaction
1014
+  (0.1ms) begin transaction
1015
+ SQL (0.5ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 6]]
1016
+  (0.9ms) commit transaction
1017
+  (0.1ms) begin transaction
1018
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 6]]
1019
+  (1.0ms) commit transaction
1020
+  (0.1ms) begin transaction
1021
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 6]]
1022
+  (1.1ms) commit transaction
1023
+  (0.1ms) begin transaction
1024
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 6]]
1025
+  (1.0ms) commit transaction
1026
+  (0.1ms) begin transaction
1027
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 6]]
1028
+  (0.8ms) commit transaction
1029
+  (0.1ms) begin transaction
1030
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 6]]
1031
+  (1.1ms) commit transaction
1032
+  (0.1ms) begin transaction
1033
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 7]]
1034
+  (1.2ms) commit transaction
1035
+  (0.1ms) begin transaction
1036
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 7]]
1037
+  (0.8ms) commit transaction
1038
+  (0.1ms) begin transaction
1039
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 7]]
1040
+  (1.3ms) commit transaction
1041
+  (0.0ms) begin transaction
1042
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 7]]
1043
+  (1.2ms) commit transaction
1044
+  (0.1ms) begin transaction
1045
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 7]]
1046
+  (0.9ms) commit transaction
1047
+  (0.1ms) begin transaction
1048
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 7]]
1049
+  (1.1ms) commit transaction
1050
+  (0.1ms) begin transaction
1051
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 7]]
1052
+  (0.9ms) commit transaction
1053
+  (0.1ms) begin transaction
1054
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 7]]
1055
+  (1.0ms) commit transaction
1056
+  (0.1ms) begin transaction
1057
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 7]]
1058
+  (1.1ms) commit transaction
1059
+  (0.1ms) begin transaction
1060
+ ------------------------------------------------------------------------------
1061
+ ActsAsCollectivelyTest: test_a_post_collectively_as_should_be_blogs_collection
1062
+ ------------------------------------------------------------------------------
1063
+  (0.1ms) rollback transaction
1064
+  (0.1ms) begin transaction
1065
+ ------------------------------------------------------------------------------
1066
+ ActsAsCollectivelyTest: test_a_post_collectively_as_should_be_posts_collection
1067
+ ------------------------------------------------------------------------------
1068
+  (0.3ms) rollback transaction
1069
+  (0.1ms) begin transaction
1070
+ -------------------------------------------------------------------------
1071
+ ActsAsCollectivelyTest: test_a_post_page_views_by_day_should_be_something
1072
+ -------------------------------------------------------------------------
1073
+  (0.1ms) rollback transaction
1074
+  (0.1ms) begin transaction
1075
+ -------------------------------------------------------
1076
+ ActsAsCollectivelyTest: test_the_post_count_should_be_2
1077
+ -------------------------------------------------------
1078
+  (0.2ms) SELECT COUNT(*) FROM "posts"
1079
+  (0.1ms) rollback transaction
1080
+  (0.1ms) begin transaction
1081
+ -------------------------------------------------------------------
1082
+ CollectionGeneratorTest: test_Assert_all_files_are_properly_created
1083
+ -------------------------------------------------------------------
1084
+  (0.1ms) rollback transaction
1085
+  (0.1ms) begin transaction
1086
+ ----------------------------
1087
+ CollectivelyTest: test_truth
1088
+ ----------------------------
1089
+  (0.1ms) rollback transaction
1090
+ SQL (3.2ms) DELETE FROM "page_views"
1091
+ SQL (1.4ms) DELETE FROM "posts"
1092
+  (0.1ms) begin transaction
1093
+ SQL (25.8ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "A extravagant post to read about"], ["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["title", "First best post"], ["updated_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00]]
1094
+  (0.9ms) commit transaction
1095
+  (0.1ms) begin transaction
1096
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "A fantastic post to read about"], ["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["title", "Second best post"], ["updated_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00]]
1097
+  (0.9ms) commit transaction
1098
+  (0.1ms) begin transaction
1099
+ SQL (0.5ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 8]]
1100
+  (0.9ms) commit transaction
1101
+  (0.1ms) begin transaction
1102
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 8]]
1103
+  (0.7ms) commit transaction
1104
+  (0.0ms) begin transaction
1105
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 8]]
1106
+  (0.9ms) commit transaction
1107
+  (0.1ms) begin transaction
1108
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 8]]
1109
+  (0.8ms) commit transaction
1110
+  (0.1ms) begin transaction
1111
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 8]]
1112
+  (0.7ms) commit transaction
1113
+  (0.1ms) begin transaction
1114
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 8]]
1115
+  (0.8ms) commit transaction
1116
+  (0.1ms) begin transaction
1117
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 8]]
1118
+  (0.8ms) commit transaction
1119
+  (0.1ms) begin transaction
1120
+ SQL (0.5ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 8]]
1121
+  (0.8ms) commit transaction
1122
+  (0.1ms) begin transaction
1123
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 8]]
1124
+  (1.0ms) commit transaction
1125
+  (0.1ms) begin transaction
1126
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 8]]
1127
+  (1.1ms) commit transaction
1128
+  (0.1ms) begin transaction
1129
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 8]]
1130
+  (1.1ms) commit transaction
1131
+  (0.1ms) begin transaction
1132
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 8]]
1133
+  (1.0ms) commit transaction
1134
+  (0.1ms) begin transaction
1135
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 8]]
1136
+  (1.0ms) commit transaction
1137
+  (0.1ms) begin transaction
1138
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 8]]
1139
+  (0.9ms) commit transaction
1140
+  (0.1ms) begin transaction
1141
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 8]]
1142
+  (1.0ms) commit transaction
1143
+  (0.1ms) begin transaction
1144
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 8]]
1145
+  (1.1ms) commit transaction
1146
+  (0.1ms) begin transaction
1147
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 8]]
1148
+  (1.0ms) commit transaction
1149
+  (0.1ms) begin transaction
1150
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 8]]
1151
+  (1.1ms) commit transaction
1152
+  (0.1ms) begin transaction
1153
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 8]]
1154
+  (1.1ms) commit transaction
1155
+  (0.1ms) begin transaction
1156
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 8]]
1157
+  (1.0ms) commit transaction
1158
+  (0.1ms) begin transaction
1159
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 8]]
1160
+  (0.8ms) commit transaction
1161
+  (0.1ms) begin transaction
1162
+ SQL (0.5ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 8]]
1163
+  (0.8ms) commit transaction
1164
+  (0.1ms) begin transaction
1165
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 8]]
1166
+  (1.2ms) commit transaction
1167
+  (0.1ms) begin transaction
1168
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 8]]
1169
+  (1.1ms) commit transaction
1170
+  (0.1ms) begin transaction
1171
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 8]]
1172
+  (1.1ms) commit transaction
1173
+  (0.1ms) begin transaction
1174
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 8]]
1175
+  (0.9ms) commit transaction
1176
+  (0.0ms) begin transaction
1177
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 8]]
1178
+  (1.0ms) commit transaction
1179
+  (0.1ms) begin transaction
1180
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 8]]
1181
+  (1.0ms) commit transaction
1182
+  (0.1ms) begin transaction
1183
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 8]]
1184
+  (1.0ms) commit transaction
1185
+  (0.1ms) begin transaction
1186
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 8]]
1187
+  (0.8ms) commit transaction
1188
+  (0.1ms) begin transaction
1189
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 8]]
1190
+  (1.0ms) commit transaction
1191
+  (0.0ms) begin transaction
1192
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 8]]
1193
+  (1.1ms) commit transaction
1194
+  (0.1ms) begin transaction
1195
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 8]]
1196
+  (1.1ms) commit transaction
1197
+  (0.1ms) begin transaction
1198
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 8]]
1199
+  (1.0ms) commit transaction
1200
+  (0.1ms) begin transaction
1201
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 8]]
1202
+  (0.9ms) commit transaction
1203
+  (0.1ms) begin transaction
1204
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 8]]
1205
+  (1.0ms) commit transaction
1206
+  (0.1ms) begin transaction
1207
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 8]]
1208
+  (0.8ms) commit transaction
1209
+  (0.0ms) begin transaction
1210
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 8]]
1211
+  (0.9ms) commit transaction
1212
+  (0.1ms) begin transaction
1213
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 8]]
1214
+  (0.8ms) commit transaction
1215
+  (0.1ms) begin transaction
1216
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 8]]
1217
+  (1.1ms) commit transaction
1218
+  (0.1ms) begin transaction
1219
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 8]]
1220
+  (1.1ms) commit transaction
1221
+  (0.1ms) begin transaction
1222
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 8]]
1223
+  (1.1ms) commit transaction
1224
+  (0.1ms) begin transaction
1225
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 8]]
1226
+  (1.2ms) commit transaction
1227
+  (0.1ms) begin transaction
1228
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 8]]
1229
+  (1.0ms) commit transaction
1230
+  (0.1ms) begin transaction
1231
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 8]]
1232
+  (1.0ms) commit transaction
1233
+  (0.1ms) begin transaction
1234
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 8]]
1235
+  (1.0ms) commit transaction
1236
+  (0.1ms) begin transaction
1237
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 8]]
1238
+  (1.0ms) commit transaction
1239
+  (0.1ms) begin transaction
1240
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 8]]
1241
+  (1.1ms) commit transaction
1242
+  (0.1ms) begin transaction
1243
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 8]]
1244
+  (1.2ms) commit transaction
1245
+  (0.1ms) begin transaction
1246
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 8]]
1247
+  (1.0ms) commit transaction
1248
+  (0.1ms) begin transaction
1249
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 8]]
1250
+  (0.9ms) commit transaction
1251
+  (0.1ms) begin transaction
1252
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 8]]
1253
+  (0.8ms) commit transaction
1254
+  (0.1ms) begin transaction
1255
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 8]]
1256
+  (1.1ms) commit transaction
1257
+  (0.1ms) begin transaction
1258
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 8]]
1259
+  (1.0ms) commit transaction
1260
+  (0.1ms) begin transaction
1261
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 8]]
1262
+  (0.9ms) commit transaction
1263
+  (0.1ms) begin transaction
1264
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 8]]
1265
+  (0.9ms) commit transaction
1266
+  (0.1ms) begin transaction
1267
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 8]]
1268
+  (1.0ms) commit transaction
1269
+  (0.1ms) begin transaction
1270
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 8]]
1271
+  (1.0ms) commit transaction
1272
+  (0.1ms) begin transaction
1273
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 8]]
1274
+  (1.1ms) commit transaction
1275
+  (0.1ms) begin transaction
1276
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 8]]
1277
+  (1.0ms) commit transaction
1278
+  (0.1ms) begin transaction
1279
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 9]]
1280
+  (1.2ms) commit transaction
1281
+  (0.1ms) begin transaction
1282
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 9]]
1283
+  (1.0ms) commit transaction
1284
+  (0.1ms) begin transaction
1285
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 9]]
1286
+  (1.1ms) commit transaction
1287
+  (0.1ms) begin transaction
1288
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 9]]
1289
+  (0.8ms) commit transaction
1290
+  (0.1ms) begin transaction
1291
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 9]]
1292
+  (1.0ms) commit transaction
1293
+  (0.1ms) begin transaction
1294
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 9]]
1295
+  (1.1ms) commit transaction
1296
+  (0.1ms) begin transaction
1297
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 9]]
1298
+  (1.1ms) commit transaction
1299
+  (0.1ms) begin transaction
1300
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 9]]
1301
+  (1.0ms) commit transaction
1302
+  (0.1ms) begin transaction
1303
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 9]]
1304
+  (1.1ms) commit transaction
1305
+  (0.1ms) begin transaction
1306
+ ------------------------------------------------------------------------------
1307
+ ActsAsCollectivelyTest: test_a_post_collectively_as_should_be_blogs_collection
1308
+ ------------------------------------------------------------------------------
1309
+  (0.1ms) rollback transaction
1310
+  (0.1ms) begin transaction
1311
+ ------------------------------------------------------------------------------
1312
+ ActsAsCollectivelyTest: test_a_post_collectively_as_should_be_posts_collection
1313
+ ------------------------------------------------------------------------------
1314
+  (0.0ms) rollback transaction
1315
+  (0.1ms) begin transaction
1316
+ -------------------------------------------------------------------------
1317
+ ActsAsCollectivelyTest: test_a_post_page_views_by_day_should_be_something
1318
+ -------------------------------------------------------------------------
1319
+  (0.2ms) rollback transaction
1320
+  (0.1ms) begin transaction
1321
+ -------------------------------------------------------
1322
+ ActsAsCollectivelyTest: test_the_post_count_should_be_2
1323
+ -------------------------------------------------------
1324
+  (0.2ms) SELECT COUNT(*) FROM "posts"
1325
+  (0.1ms) rollback transaction
1326
+  (0.1ms) begin transaction
1327
+ -------------------------------------------------------------------
1328
+ CollectionGeneratorTest: test_Assert_all_files_are_properly_created
1329
+ -------------------------------------------------------------------
1330
+  (0.1ms) rollback transaction
1331
+  (0.1ms) begin transaction
1332
+ ----------------------------
1333
+ CollectivelyTest: test_truth
1334
+ ----------------------------
1335
+  (0.1ms) rollback transaction
1336
+ SQL (3.6ms) DELETE FROM "page_views"
1337
+ SQL (1.4ms) DELETE FROM "posts"
1338
+  (0.1ms) begin transaction
1339
+ SQL (24.3ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "A extravagant post to read about"], ["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["title", "First best post"], ["updated_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00]]
1340
+  (1.2ms) commit transaction
1341
+  (0.1ms) begin transaction
1342
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "A fantastic post to read about"], ["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["title", "Second best post"], ["updated_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00]]
1343
+  (1.0ms) commit transaction
1344
+  (0.1ms) begin transaction
1345
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 10]]
1346
+  (1.1ms) commit transaction
1347
+  (0.1ms) begin transaction
1348
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 10]]
1349
+  (1.0ms) commit transaction
1350
+  (0.1ms) begin transaction
1351
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 10]]
1352
+  (1.0ms) commit transaction
1353
+  (0.1ms) begin transaction
1354
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 10]]
1355
+  (1.0ms) commit transaction
1356
+  (0.1ms) begin transaction
1357
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 10]]
1358
+  (1.0ms) commit transaction
1359
+  (0.1ms) begin transaction
1360
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 10]]
1361
+  (1.1ms) commit transaction
1362
+  (0.1ms) begin transaction
1363
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 10]]
1364
+  (1.1ms) commit transaction
1365
+  (0.1ms) begin transaction
1366
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 10]]
1367
+  (1.1ms) commit transaction
1368
+  (0.1ms) begin transaction
1369
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 10]]
1370
+  (1.2ms) commit transaction
1371
+  (0.1ms) begin transaction
1372
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 10]]
1373
+  (0.8ms) commit transaction
1374
+  (0.1ms) begin transaction
1375
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 10]]
1376
+  (0.8ms) commit transaction
1377
+  (0.1ms) begin transaction
1378
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 10]]
1379
+  (0.8ms) commit transaction
1380
+  (0.1ms) begin transaction
1381
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 10]]
1382
+  (0.7ms) commit transaction
1383
+  (0.1ms) begin transaction
1384
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 10]]
1385
+  (0.7ms) commit transaction
1386
+  (0.1ms) begin transaction
1387
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 10]]
1388
+  (0.7ms) commit transaction
1389
+  (0.1ms) begin transaction
1390
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 10]]
1391
+  (0.7ms) commit transaction
1392
+  (0.1ms) begin transaction
1393
+ SQL (0.5ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 10]]
1394
+  (0.7ms) commit transaction
1395
+  (0.1ms) begin transaction
1396
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 10]]
1397
+  (0.7ms) commit transaction
1398
+  (0.1ms) begin transaction
1399
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 10]]
1400
+  (0.8ms) commit transaction
1401
+  (0.1ms) begin transaction
1402
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 10]]
1403
+  (1.1ms) commit transaction
1404
+  (0.1ms) begin transaction
1405
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 10]]
1406
+  (1.2ms) commit transaction
1407
+  (0.1ms) begin transaction
1408
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 10]]
1409
+  (0.8ms) commit transaction
1410
+  (0.1ms) begin transaction
1411
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 10]]
1412
+  (0.8ms) commit transaction
1413
+  (0.1ms) begin transaction
1414
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 10]]
1415
+  (0.7ms) commit transaction
1416
+  (0.1ms) begin transaction
1417
+ SQL (0.5ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 10]]
1418
+  (0.8ms) commit transaction
1419
+  (0.1ms) begin transaction
1420
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 10]]
1421
+  (1.1ms) commit transaction
1422
+  (0.1ms) begin transaction
1423
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 10]]
1424
+  (1.1ms) commit transaction
1425
+  (0.1ms) begin transaction
1426
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 10]]
1427
+  (1.0ms) commit transaction
1428
+  (0.1ms) begin transaction
1429
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 10]]
1430
+  (0.8ms) commit transaction
1431
+  (0.1ms) begin transaction
1432
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 10]]
1433
+  (0.7ms) commit transaction
1434
+  (0.1ms) begin transaction
1435
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 10]]
1436
+  (0.9ms) commit transaction
1437
+  (0.1ms) begin transaction
1438
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 10]]
1439
+  (1.2ms) commit transaction
1440
+  (0.1ms) begin transaction
1441
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 10]]
1442
+  (0.9ms) commit transaction
1443
+  (0.1ms) begin transaction
1444
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 10]]
1445
+  (1.0ms) commit transaction
1446
+  (0.1ms) begin transaction
1447
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 10]]
1448
+  (0.8ms) commit transaction
1449
+  (0.1ms) begin transaction
1450
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 10]]
1451
+  (0.7ms) commit transaction
1452
+  (0.1ms) begin transaction
1453
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 10]]
1454
+  (0.7ms) commit transaction
1455
+  (0.1ms) begin transaction
1456
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 10]]
1457
+  (1.2ms) commit transaction
1458
+  (0.1ms) begin transaction
1459
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 10]]
1460
+  (1.1ms) commit transaction
1461
+  (0.1ms) begin transaction
1462
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 10]]
1463
+  (1.1ms) commit transaction
1464
+  (0.1ms) begin transaction
1465
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 10]]
1466
+  (1.0ms) commit transaction
1467
+  (0.1ms) begin transaction
1468
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 10]]
1469
+  (0.7ms) commit transaction
1470
+  (0.1ms) begin transaction
1471
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 10]]
1472
+  (0.8ms) commit transaction
1473
+  (0.1ms) begin transaction
1474
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 10]]
1475
+  (1.2ms) commit transaction
1476
+  (0.1ms) begin transaction
1477
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 10]]
1478
+  (1.2ms) commit transaction
1479
+  (0.1ms) begin transaction
1480
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 10]]
1481
+  (1.1ms) commit transaction
1482
+  (0.1ms) begin transaction
1483
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 10]]
1484
+  (0.8ms) commit transaction
1485
+  (0.1ms) begin transaction
1486
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 10]]
1487
+  (0.8ms) commit transaction
1488
+  (0.1ms) begin transaction
1489
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 10]]
1490
+  (0.8ms) commit transaction
1491
+  (0.1ms) begin transaction
1492
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 10]]
1493
+  (0.8ms) commit transaction
1494
+  (0.1ms) begin transaction
1495
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 10]]
1496
+  (0.7ms) commit transaction
1497
+  (0.1ms) begin transaction
1498
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 10]]
1499
+  (0.7ms) commit transaction
1500
+  (0.1ms) begin transaction
1501
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 10]]
1502
+  (0.7ms) commit transaction
1503
+  (0.1ms) begin transaction
1504
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 10]]
1505
+  (1.1ms) commit transaction
1506
+  (0.1ms) begin transaction
1507
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 10]]
1508
+  (1.1ms) commit transaction
1509
+  (0.1ms) begin transaction
1510
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 10]]
1511
+  (1.0ms) commit transaction
1512
+  (0.1ms) begin transaction
1513
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 10]]
1514
+  (1.1ms) commit transaction
1515
+  (0.1ms) begin transaction
1516
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 10]]
1517
+  (0.9ms) commit transaction
1518
+  (0.1ms) begin transaction
1519
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 10]]
1520
+  (1.0ms) commit transaction
1521
+  (0.1ms) begin transaction
1522
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 10]]
1523
+  (1.0ms) commit transaction
1524
+  (0.1ms) begin transaction
1525
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 11]]
1526
+  (1.2ms) commit transaction
1527
+  (0.1ms) begin transaction
1528
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 11]]
1529
+  (1.1ms) commit transaction
1530
+  (0.1ms) begin transaction
1531
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 11]]
1532
+  (1.1ms) commit transaction
1533
+  (0.1ms) begin transaction
1534
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 11]]
1535
+  (1.1ms) commit transaction
1536
+  (0.1ms) begin transaction
1537
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 11]]
1538
+  (0.9ms) commit transaction
1539
+  (0.1ms) begin transaction
1540
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 11]]
1541
+  (1.0ms) commit transaction
1542
+  (0.1ms) begin transaction
1543
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 11]]
1544
+  (1.1ms) commit transaction
1545
+  (0.1ms) begin transaction
1546
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 11]]
1547
+  (1.1ms) commit transaction
1548
+  (0.1ms) begin transaction
1549
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 11]]
1550
+  (1.2ms) commit transaction
1551
+  (0.1ms) begin transaction
1552
+ ------------------------------------------------------------------------------
1553
+ ActsAsCollectivelyTest: test_a_post_collectively_as_should_be_blogs_collection
1554
+ ------------------------------------------------------------------------------
1555
+  (0.1ms) rollback transaction
1556
+  (0.1ms) begin transaction
1557
+ ------------------------------------------------------------------------------
1558
+ ActsAsCollectivelyTest: test_a_post_collectively_as_should_be_posts_collection
1559
+ ------------------------------------------------------------------------------
1560
+  (0.0ms) rollback transaction
1561
+  (0.1ms) begin transaction
1562
+ -------------------------------------------------------------------------
1563
+ ActsAsCollectivelyTest: test_a_post_page_views_by_day_should_be_something
1564
+ -------------------------------------------------------------------------
1565
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" ASC LIMIT 1
1566
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" ASC LIMIT 1
1567
+ PageView Load (0.5ms) SELECT "page_views".* FROM "page_views" WHERE "page_views"."post_id" = ? [["post_id", 10]]
1568
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
1569
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
1570
+ SQL (4.1ms) DELETE FROM "page_views"
1571
+ SQL (1.1ms) DELETE FROM "posts"
1572
+  (0.1ms) begin transaction
1573
+ SQL (25.9ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "A extravagant post to read about"], ["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["title", "First best post"], ["updated_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00]]
1574
+  (1.2ms) commit transaction
1575
+  (0.1ms) begin transaction
1576
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "A fantastic post to read about"], ["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["title", "Second best post"], ["updated_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00]]
1577
+  (1.1ms) commit transaction
1578
+  (0.1ms) begin transaction
1579
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 12]]
1580
+  (1.1ms) commit transaction
1581
+  (0.1ms) begin transaction
1582
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 12]]
1583
+  (1.0ms) commit transaction
1584
+  (0.1ms) begin transaction
1585
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 12]]
1586
+  (1.1ms) commit transaction
1587
+  (0.1ms) begin transaction
1588
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 12]]
1589
+  (1.1ms) commit transaction
1590
+  (0.1ms) begin transaction
1591
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 12]]
1592
+  (0.9ms) commit transaction
1593
+  (0.1ms) begin transaction
1594
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 12]]
1595
+  (1.2ms) commit transaction
1596
+  (0.1ms) begin transaction
1597
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 12]]
1598
+  (1.0ms) commit transaction
1599
+  (0.1ms) begin transaction
1600
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 12]]
1601
+  (1.1ms) commit transaction
1602
+  (0.1ms) begin transaction
1603
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 12]]
1604
+  (1.0ms) commit transaction
1605
+  (0.1ms) begin transaction
1606
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 12]]
1607
+  (1.1ms) commit transaction
1608
+  (0.1ms) begin transaction
1609
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 12]]
1610
+  (0.9ms) commit transaction
1611
+  (0.1ms) begin transaction
1612
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 12]]
1613
+  (1.1ms) commit transaction
1614
+  (0.1ms) begin transaction
1615
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 12]]
1616
+  (1.1ms) commit transaction
1617
+  (0.1ms) begin transaction
1618
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 12]]
1619
+  (0.8ms) commit transaction
1620
+  (0.1ms) begin transaction
1621
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 12]]
1622
+  (1.0ms) commit transaction
1623
+  (0.1ms) begin transaction
1624
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 12]]
1625
+  (1.0ms) commit transaction
1626
+  (0.1ms) begin transaction
1627
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 12]]
1628
+  (1.0ms) commit transaction
1629
+  (0.1ms) begin transaction
1630
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 12]]
1631
+  (0.9ms) commit transaction
1632
+  (0.1ms) begin transaction
1633
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 12]]
1634
+  (0.9ms) commit transaction
1635
+  (0.1ms) begin transaction
1636
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 12]]
1637
+  (0.7ms) commit transaction
1638
+  (0.1ms) begin transaction
1639
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 12]]
1640
+  (0.7ms) commit transaction
1641
+  (0.1ms) begin transaction
1642
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 12]]
1643
+  (0.7ms) commit transaction
1644
+  (0.1ms) begin transaction
1645
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 12]]
1646
+  (0.8ms) commit transaction
1647
+  (0.1ms) begin transaction
1648
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 12]]
1649
+  (0.9ms) commit transaction
1650
+  (0.1ms) begin transaction
1651
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 12]]
1652
+  (1.2ms) commit transaction
1653
+  (0.1ms) begin transaction
1654
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 12]]
1655
+  (0.9ms) commit transaction
1656
+  (0.0ms) begin transaction
1657
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 12]]
1658
+  (1.1ms) commit transaction
1659
+  (0.1ms) begin transaction
1660
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 12]]
1661
+  (1.0ms) commit transaction
1662
+  (0.1ms) begin transaction
1663
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 12]]
1664
+  (1.1ms) commit transaction
1665
+  (0.1ms) begin transaction
1666
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 12]]
1667
+  (1.1ms) commit transaction
1668
+  (0.1ms) begin transaction
1669
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 12]]
1670
+  (0.8ms) commit transaction
1671
+  (0.1ms) begin transaction
1672
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 12]]
1673
+  (1.1ms) commit transaction
1674
+  (0.1ms) begin transaction
1675
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 12]]
1676
+  (0.9ms) commit transaction
1677
+  (0.1ms) begin transaction
1678
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 12]]
1679
+  (1.1ms) commit transaction
1680
+  (0.1ms) begin transaction
1681
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 12]]
1682
+  (1.2ms) commit transaction
1683
+  (0.1ms) begin transaction
1684
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 12]]
1685
+  (1.0ms) commit transaction
1686
+  (0.1ms) begin transaction
1687
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 12]]
1688
+  (1.1ms) commit transaction
1689
+  (0.1ms) begin transaction
1690
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 12]]
1691
+  (1.2ms) commit transaction
1692
+  (0.1ms) begin transaction
1693
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 12]]
1694
+  (0.8ms) commit transaction
1695
+  (0.1ms) begin transaction
1696
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 12]]
1697
+  (0.7ms) commit transaction
1698
+  (0.1ms) begin transaction
1699
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 12]]
1700
+  (0.7ms) commit transaction
1701
+  (0.1ms) begin transaction
1702
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 12]]
1703
+  (0.8ms) commit transaction
1704
+  (0.1ms) begin transaction
1705
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 12]]
1706
+  (0.8ms) commit transaction
1707
+  (0.1ms) begin transaction
1708
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 12]]
1709
+  (1.1ms) commit transaction
1710
+  (0.1ms) begin transaction
1711
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 12]]
1712
+  (1.1ms) commit transaction
1713
+  (0.1ms) begin transaction
1714
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 12]]
1715
+  (1.1ms) commit transaction
1716
+  (0.1ms) begin transaction
1717
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 12]]
1718
+  (1.2ms) commit transaction
1719
+  (0.1ms) begin transaction
1720
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 12]]
1721
+  (1.0ms) commit transaction
1722
+  (0.1ms) begin transaction
1723
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 12]]
1724
+  (0.9ms) commit transaction
1725
+  (0.1ms) begin transaction
1726
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 12]]
1727
+  (1.2ms) commit transaction
1728
+  (0.1ms) begin transaction
1729
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 12]]
1730
+  (1.2ms) commit transaction
1731
+  (0.1ms) begin transaction
1732
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 12]]
1733
+  (1.2ms) commit transaction
1734
+  (0.1ms) begin transaction
1735
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 12]]
1736
+  (1.1ms) commit transaction
1737
+  (0.1ms) begin transaction
1738
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 12]]
1739
+  (1.0ms) commit transaction
1740
+  (0.1ms) begin transaction
1741
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 12]]
1742
+  (1.0ms) commit transaction
1743
+  (0.1ms) begin transaction
1744
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 12]]
1745
+  (1.2ms) commit transaction
1746
+  (0.1ms) begin transaction
1747
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 12]]
1748
+  (1.0ms) commit transaction
1749
+  (0.1ms) begin transaction
1750
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 12]]
1751
+  (1.1ms) commit transaction
1752
+  (0.1ms) begin transaction
1753
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 12]]
1754
+  (1.0ms) commit transaction
1755
+  (0.1ms) begin transaction
1756
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 12]]
1757
+  (0.8ms) commit transaction
1758
+  (0.1ms) begin transaction
1759
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 13]]
1760
+  (0.8ms) commit transaction
1761
+  (0.1ms) begin transaction
1762
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 13]]
1763
+  (1.1ms) commit transaction
1764
+  (0.1ms) begin transaction
1765
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 13]]
1766
+  (0.9ms) commit transaction
1767
+  (0.1ms) begin transaction
1768
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 13]]
1769
+  (1.0ms) commit transaction
1770
+  (0.1ms) begin transaction
1771
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 13]]
1772
+  (1.2ms) commit transaction
1773
+  (0.1ms) begin transaction
1774
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 13]]
1775
+  (1.0ms) commit transaction
1776
+  (0.1ms) begin transaction
1777
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 13]]
1778
+  (1.1ms) commit transaction
1779
+  (0.1ms) begin transaction
1780
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 13]]
1781
+  (1.0ms) commit transaction
1782
+  (0.1ms) begin transaction
1783
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 13]]
1784
+  (1.2ms) commit transaction
1785
+  (0.1ms) begin transaction
1786
+ ----------------------------------------------------------------------------------
1787
+ ActsAsCollectivelyTest: test_a_post_collection_should_respond_to_page_views_by_day
1788
+ ----------------------------------------------------------------------------------
1789
+  (0.1ms) rollback transaction
1790
+  (0.1ms) begin transaction
1791
+ ------------------------------------------------------------------------------
1792
+ ActsAsCollectivelyTest: test_a_post_collectively_as_should_be_blogs_collection
1793
+ ------------------------------------------------------------------------------
1794
+  (0.1ms) rollback transaction
1795
+  (0.1ms) begin transaction
1796
+ ------------------------------------------------------------------------------
1797
+ ActsAsCollectivelyTest: test_a_post_collectively_as_should_be_posts_collection
1798
+ ------------------------------------------------------------------------------
1799
+  (0.0ms) rollback transaction
1800
+  (0.1ms) begin transaction
1801
+ -------------------------------------------------------
1802
+ ActsAsCollectivelyTest: test_the_post_count_should_be_2
1803
+ -------------------------------------------------------
1804
+  (0.1ms) SELECT COUNT(*) FROM "posts"
1805
+  (0.1ms) rollback transaction
1806
+  (0.0ms) begin transaction
1807
+ -------------------------------------------------------------------
1808
+ CollectionGeneratorTest: test_Assert_all_files_are_properly_created
1809
+ -------------------------------------------------------------------
1810
+  (0.1ms) rollback transaction
1811
+  (0.1ms) begin transaction
1812
+ ----------------------------
1813
+ CollectivelyTest: test_truth
1814
+ ----------------------------
1815
+  (0.1ms) rollback transaction
1816
+ SQL (2.3ms) DELETE FROM "page_views"
1817
+ SQL (1.2ms) DELETE FROM "posts"
1818
+  (0.1ms) begin transaction
1819
+ SQL (1.9ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "A extravagant post to read about"], ["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["title", "First best post"], ["updated_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00]]
1820
+  (1.0ms) commit transaction
1821
+  (0.1ms) begin transaction
1822
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "A fantastic post to read about"], ["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["title", "Second best post"], ["updated_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00]]
1823
+  (1.1ms) commit transaction
1824
+  (0.1ms) begin transaction
1825
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 14]]
1826
+  (1.1ms) commit transaction
1827
+  (0.1ms) begin transaction
1828
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 14]]
1829
+  (1.0ms) commit transaction
1830
+  (0.1ms) begin transaction
1831
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 14]]
1832
+  (1.0ms) commit transaction
1833
+  (0.1ms) begin transaction
1834
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 14]]
1835
+  (1.0ms) commit transaction
1836
+  (0.1ms) begin transaction
1837
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 14]]
1838
+  (1.1ms) commit transaction
1839
+  (0.1ms) begin transaction
1840
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 14]]
1841
+  (1.1ms) commit transaction
1842
+  (0.1ms) begin transaction
1843
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 14]]
1844
+  (1.1ms) commit transaction
1845
+  (0.1ms) begin transaction
1846
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 14]]
1847
+  (1.0ms) commit transaction
1848
+  (0.1ms) begin transaction
1849
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 14]]
1850
+  (1.0ms) commit transaction
1851
+  (0.1ms) begin transaction
1852
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 14]]
1853
+  (1.0ms) commit transaction
1854
+  (0.1ms) begin transaction
1855
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 14]]
1856
+  (1.0ms) commit transaction
1857
+  (0.1ms) begin transaction
1858
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 14]]
1859
+  (1.0ms) commit transaction
1860
+  (0.1ms) begin transaction
1861
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 14]]
1862
+  (0.8ms) commit transaction
1863
+  (0.1ms) begin transaction
1864
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 14]]
1865
+  (1.1ms) commit transaction
1866
+  (0.1ms) begin transaction
1867
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 14]]
1868
+  (0.8ms) commit transaction
1869
+  (0.1ms) begin transaction
1870
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 14]]
1871
+  (0.9ms) commit transaction
1872
+  (0.1ms) begin transaction
1873
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 14]]
1874
+  (0.9ms) commit transaction
1875
+  (0.1ms) begin transaction
1876
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 14]]
1877
+  (1.2ms) commit transaction
1878
+  (0.1ms) begin transaction
1879
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 14]]
1880
+  (1.0ms) commit transaction
1881
+  (0.1ms) begin transaction
1882
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 14]]
1883
+  (0.9ms) commit transaction
1884
+  (0.1ms) begin transaction
1885
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 14]]
1886
+  (1.1ms) commit transaction
1887
+  (0.1ms) begin transaction
1888
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 14]]
1889
+  (1.0ms) commit transaction
1890
+  (0.1ms) begin transaction
1891
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 14]]
1892
+  (1.1ms) commit transaction
1893
+  (0.1ms) begin transaction
1894
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 14]]
1895
+  (1.0ms) commit transaction
1896
+  (0.1ms) begin transaction
1897
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 14]]
1898
+  (1.1ms) commit transaction
1899
+  (0.1ms) begin transaction
1900
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 14]]
1901
+  (1.1ms) commit transaction
1902
+  (0.1ms) begin transaction
1903
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 14]]
1904
+  (1.1ms) commit transaction
1905
+  (0.1ms) begin transaction
1906
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 14]]
1907
+  (1.1ms) commit transaction
1908
+  (0.1ms) begin transaction
1909
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 14]]
1910
+  (0.7ms) commit transaction
1911
+  (0.1ms) begin transaction
1912
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 14]]
1913
+  (1.1ms) commit transaction
1914
+  (0.1ms) begin transaction
1915
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 14]]
1916
+  (1.0ms) commit transaction
1917
+  (0.1ms) begin transaction
1918
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 14]]
1919
+  (1.0ms) commit transaction
1920
+  (0.1ms) begin transaction
1921
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 14]]
1922
+  (1.1ms) commit transaction
1923
+  (0.1ms) begin transaction
1924
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 14]]
1925
+  (1.2ms) commit transaction
1926
+  (0.1ms) begin transaction
1927
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 14]]
1928
+  (1.1ms) commit transaction
1929
+  (0.1ms) begin transaction
1930
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 14]]
1931
+  (1.0ms) commit transaction
1932
+  (0.1ms) begin transaction
1933
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 14]]
1934
+  (1.1ms) commit transaction
1935
+  (0.1ms) begin transaction
1936
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 14]]
1937
+  (1.1ms) commit transaction
1938
+  (0.1ms) begin transaction
1939
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 14]]
1940
+  (1.2ms) commit transaction
1941
+  (0.1ms) begin transaction
1942
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 14]]
1943
+  (1.2ms) commit transaction
1944
+  (0.1ms) begin transaction
1945
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 14]]
1946
+  (1.0ms) commit transaction
1947
+  (0.1ms) begin transaction
1948
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 14]]
1949
+  (1.0ms) commit transaction
1950
+  (0.1ms) begin transaction
1951
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 14]]
1952
+  (1.1ms) commit transaction
1953
+  (0.1ms) begin transaction
1954
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 14]]
1955
+  (0.9ms) commit transaction
1956
+  (0.1ms) begin transaction
1957
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 14]]
1958
+  (0.9ms) commit transaction
1959
+  (0.1ms) begin transaction
1960
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 14]]
1961
+  (1.0ms) commit transaction
1962
+  (0.1ms) begin transaction
1963
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 14]]
1964
+  (1.2ms) commit transaction
1965
+  (0.1ms) begin transaction
1966
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 14]]
1967
+  (1.0ms) commit transaction
1968
+  (0.1ms) begin transaction
1969
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 14]]
1970
+  (1.1ms) commit transaction
1971
+  (0.1ms) begin transaction
1972
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 14]]
1973
+  (0.8ms) commit transaction
1974
+  (0.1ms) begin transaction
1975
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 14]]
1976
+  (0.8ms) commit transaction
1977
+  (0.1ms) begin transaction
1978
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 14]]
1979
+  (0.8ms) commit transaction
1980
+  (0.1ms) begin transaction
1981
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 14]]
1982
+  (0.8ms) commit transaction
1983
+  (0.1ms) begin transaction
1984
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 14]]
1985
+  (0.7ms) commit transaction
1986
+  (0.1ms) begin transaction
1987
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 14]]
1988
+  (0.7ms) commit transaction
1989
+  (0.1ms) begin transaction
1990
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 14]]
1991
+  (0.7ms) commit transaction
1992
+  (0.1ms) begin transaction
1993
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 14]]
1994
+  (0.8ms) commit transaction
1995
+  (0.1ms) begin transaction
1996
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 14]]
1997
+  (0.7ms) commit transaction
1998
+  (0.1ms) begin transaction
1999
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 14]]
2000
+  (0.7ms) commit transaction
2001
+  (0.1ms) begin transaction
2002
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 14]]
2003
+  (0.7ms) commit transaction
2004
+  (0.1ms) begin transaction
2005
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 15]]
2006
+  (0.7ms) commit transaction
2007
+  (0.1ms) begin transaction
2008
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 15]]
2009
+  (0.7ms) commit transaction
2010
+  (0.1ms) begin transaction
2011
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 15]]
2012
+  (1.0ms) commit transaction
2013
+  (0.1ms) begin transaction
2014
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 15]]
2015
+  (1.3ms) commit transaction
2016
+  (0.1ms) begin transaction
2017
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 15]]
2018
+  (1.1ms) commit transaction
2019
+  (0.1ms) begin transaction
2020
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 15]]
2021
+  (1.1ms) commit transaction
2022
+  (0.1ms) begin transaction
2023
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 15]]
2024
+  (0.8ms) commit transaction
2025
+  (0.1ms) begin transaction
2026
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 15]]
2027
+  (1.0ms) commit transaction
2028
+  (0.1ms) begin transaction
2029
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 15]]
2030
+  (1.0ms) commit transaction
2031
+  (0.1ms) begin transaction
2032
+ ----------------------------------------------------------------------------
2033
+ ActsAsCollectivelyTest: test_a_post_collection_should_have_page_views_by_day
2034
+ ----------------------------------------------------------------------------
2035
+ Post Load (0.3ms) SELECT "posts".* FROM "posts"
2036
+ SQL (2.3ms) DELETE FROM "page_views"
2037
+ SQL (1.2ms) DELETE FROM "posts"
2038
+  (0.1ms) begin transaction
2039
+ SQL (2.0ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "A extravagant post to read about"], ["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["title", "First best post"], ["updated_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00]]
2040
+  (1.2ms) commit transaction
2041
+  (0.1ms) begin transaction
2042
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "A fantastic post to read about"], ["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["title", "Second best post"], ["updated_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00]]
2043
+  (1.1ms) commit transaction
2044
+  (0.1ms) begin transaction
2045
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 16]]
2046
+  (1.1ms) commit transaction
2047
+  (0.1ms) begin transaction
2048
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 16]]
2049
+  (1.0ms) commit transaction
2050
+  (0.1ms) begin transaction
2051
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 16]]
2052
+  (1.0ms) commit transaction
2053
+  (0.1ms) begin transaction
2054
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 16]]
2055
+  (1.0ms) commit transaction
2056
+  (0.1ms) begin transaction
2057
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 16]]
2058
+  (0.9ms) commit transaction
2059
+  (0.1ms) begin transaction
2060
+ SQL (0.6ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 16]]
2061
+  (1.5ms) commit transaction
2062
+  (0.1ms) begin transaction
2063
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 16]]
2064
+  (1.1ms) commit transaction
2065
+  (0.1ms) begin transaction
2066
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 16]]
2067
+  (1.1ms) commit transaction
2068
+  (0.1ms) begin transaction
2069
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 16]]
2070
+  (1.1ms) commit transaction
2071
+  (0.1ms) begin transaction
2072
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 16]]
2073
+  (1.1ms) commit transaction
2074
+  (0.1ms) begin transaction
2075
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 16]]
2076
+  (1.2ms) commit transaction
2077
+  (0.1ms) begin transaction
2078
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 16]]
2079
+  (0.8ms) commit transaction
2080
+  (0.1ms) begin transaction
2081
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 16]]
2082
+  (0.8ms) commit transaction
2083
+  (0.1ms) begin transaction
2084
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 16]]
2085
+  (0.7ms) commit transaction
2086
+  (0.1ms) begin transaction
2087
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 16]]
2088
+  (0.7ms) commit transaction
2089
+  (0.1ms) begin transaction
2090
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 16]]
2091
+  (0.7ms) commit transaction
2092
+  (0.1ms) begin transaction
2093
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 16]]
2094
+  (0.8ms) commit transaction
2095
+  (0.1ms) begin transaction
2096
+ SQL (0.5ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 16]]
2097
+  (0.9ms) commit transaction
2098
+  (0.1ms) begin transaction
2099
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 16]]
2100
+  (0.8ms) commit transaction
2101
+  (0.1ms) begin transaction
2102
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 16]]
2103
+  (0.8ms) commit transaction
2104
+  (0.1ms) begin transaction
2105
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 16]]
2106
+  (0.9ms) commit transaction
2107
+  (0.1ms) begin transaction
2108
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 16]]
2109
+  (1.1ms) commit transaction
2110
+  (0.1ms) begin transaction
2111
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 16]]
2112
+  (1.0ms) commit transaction
2113
+  (0.1ms) begin transaction
2114
+ SQL (0.5ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 16]]
2115
+  (0.9ms) commit transaction
2116
+  (0.1ms) begin transaction
2117
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 16]]
2118
+  (0.9ms) commit transaction
2119
+  (0.1ms) begin transaction
2120
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 16]]
2121
+  (0.7ms) commit transaction
2122
+  (0.1ms) begin transaction
2123
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 16]]
2124
+  (0.7ms) commit transaction
2125
+  (0.1ms) begin transaction
2126
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 16]]
2127
+  (0.8ms) commit transaction
2128
+  (0.1ms) begin transaction
2129
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 16]]
2130
+  (1.1ms) commit transaction
2131
+  (0.1ms) begin transaction
2132
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 16]]
2133
+  (0.8ms) commit transaction
2134
+  (0.1ms) begin transaction
2135
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 16]]
2136
+  (1.2ms) commit transaction
2137
+  (0.1ms) begin transaction
2138
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 16]]
2139
+  (0.8ms) commit transaction
2140
+  (0.1ms) begin transaction
2141
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 16]]
2142
+  (0.8ms) commit transaction
2143
+  (0.1ms) begin transaction
2144
+ SQL (0.6ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 16]]
2145
+  (1.2ms) commit transaction
2146
+  (0.1ms) begin transaction
2147
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 16]]
2148
+  (1.2ms) commit transaction
2149
+  (0.1ms) begin transaction
2150
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 16]]
2151
+  (1.1ms) commit transaction
2152
+  (0.1ms) begin transaction
2153
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 16]]
2154
+  (0.8ms) commit transaction
2155
+  (0.1ms) begin transaction
2156
+ SQL (0.5ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 16]]
2157
+  (0.8ms) commit transaction
2158
+  (0.1ms) begin transaction
2159
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 16]]
2160
+  (1.0ms) commit transaction
2161
+  (0.1ms) begin transaction
2162
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 16]]
2163
+  (1.2ms) commit transaction
2164
+  (0.1ms) begin transaction
2165
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 16]]
2166
+  (1.2ms) commit transaction
2167
+  (0.1ms) begin transaction
2168
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 16]]
2169
+  (1.1ms) commit transaction
2170
+  (0.1ms) begin transaction
2171
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 16]]
2172
+  (0.8ms) commit transaction
2173
+  (0.1ms) begin transaction
2174
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 16]]
2175
+  (0.8ms) commit transaction
2176
+  (0.1ms) begin transaction
2177
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 16]]
2178
+  (0.9ms) commit transaction
2179
+  (0.1ms) begin transaction
2180
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 16]]
2181
+  (1.1ms) commit transaction
2182
+  (0.1ms) begin transaction
2183
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 16]]
2184
+  (0.9ms) commit transaction
2185
+  (0.1ms) begin transaction
2186
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 16]]
2187
+  (1.0ms) commit transaction
2188
+  (0.1ms) begin transaction
2189
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 16]]
2190
+  (0.8ms) commit transaction
2191
+  (0.1ms) begin transaction
2192
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 16]]
2193
+  (0.7ms) commit transaction
2194
+  (0.1ms) begin transaction
2195
+ SQL (0.5ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 16]]
2196
+  (1.0ms) commit transaction
2197
+  (0.1ms) begin transaction
2198
+ SQL (0.5ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 16]]
2199
+  (0.7ms) commit transaction
2200
+  (0.1ms) begin transaction
2201
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 16]]
2202
+  (1.1ms) commit transaction
2203
+  (0.1ms) begin transaction
2204
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 16]]
2205
+  (1.1ms) commit transaction
2206
+  (0.1ms) begin transaction
2207
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 16]]
2208
+  (1.1ms) commit transaction
2209
+  (0.1ms) begin transaction
2210
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 16]]
2211
+  (0.9ms) commit transaction
2212
+  (0.1ms) begin transaction
2213
+ SQL (0.5ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 16]]
2214
+  (1.0ms) commit transaction
2215
+  (0.1ms) begin transaction
2216
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 16]]
2217
+  (0.8ms) commit transaction
2218
+  (0.1ms) begin transaction
2219
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 16]]
2220
+  (1.2ms) commit transaction
2221
+  (0.1ms) begin transaction
2222
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 16]]
2223
+  (1.0ms) commit transaction
2224
+  (0.1ms) begin transaction
2225
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 17]]
2226
+  (1.2ms) commit transaction
2227
+  (0.1ms) begin transaction
2228
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 17]]
2229
+  (1.2ms) commit transaction
2230
+  (0.1ms) begin transaction
2231
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 17]]
2232
+  (1.2ms) commit transaction
2233
+  (0.1ms) begin transaction
2234
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 17]]
2235
+  (1.1ms) commit transaction
2236
+  (0.1ms) begin transaction
2237
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 17]]
2238
+  (1.1ms) commit transaction
2239
+  (0.1ms) begin transaction
2240
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 17]]
2241
+  (0.8ms) commit transaction
2242
+  (0.1ms) begin transaction
2243
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 17]]
2244
+  (1.1ms) commit transaction
2245
+  (0.1ms) begin transaction
2246
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 17]]
2247
+  (1.3ms) commit transaction
2248
+  (0.1ms) begin transaction
2249
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 17]]
2250
+  (1.1ms) commit transaction
2251
+  (0.1ms) begin transaction
2252
+ ----------------------------------------------------------------------------
2253
+ ActsAsCollectivelyTest: test_a_post_collection_should_have_page_views_by_day
2254
+ ----------------------------------------------------------------------------
2255
+ Post Load (0.3ms) SELECT "posts".* FROM "posts"
2256
+ PageView Load (0.4ms) SELECT "page_views".* FROM "page_views" WHERE "page_views"."post_id" = ? [["post_id", 16]]
2257
+ PageView Load (0.1ms) SELECT "page_views".* FROM "page_views" WHERE "page_views"."post_id" = ? [["post_id", 17]]
2258
+ SQL (3.6ms) DELETE FROM "page_views"
2259
+ SQL (1.4ms) DELETE FROM "posts"
2260
+  (0.1ms) begin transaction
2261
+ SQL (2.0ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "A extravagant post to read about"], ["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["title", "First best post"], ["updated_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00]]
2262
+  (1.1ms) commit transaction
2263
+  (0.1ms) begin transaction
2264
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "A fantastic post to read about"], ["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["title", "Second best post"], ["updated_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00]]
2265
+  (1.0ms) commit transaction
2266
+  (0.1ms) begin transaction
2267
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 18]]
2268
+  (1.1ms) commit transaction
2269
+  (0.1ms) begin transaction
2270
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 18]]
2271
+  (0.9ms) commit transaction
2272
+  (0.1ms) begin transaction
2273
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 18]]
2274
+  (1.0ms) commit transaction
2275
+  (0.1ms) begin transaction
2276
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 18]]
2277
+  (1.0ms) commit transaction
2278
+  (0.1ms) begin transaction
2279
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 18]]
2280
+  (1.1ms) commit transaction
2281
+  (0.1ms) begin transaction
2282
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 18]]
2283
+  (1.0ms) commit transaction
2284
+  (0.1ms) begin transaction
2285
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 18]]
2286
+  (1.0ms) commit transaction
2287
+  (0.1ms) begin transaction
2288
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 18]]
2289
+  (1.1ms) commit transaction
2290
+  (0.1ms) begin transaction
2291
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 18]]
2292
+  (1.1ms) commit transaction
2293
+  (0.1ms) begin transaction
2294
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 18]]
2295
+  (1.1ms) commit transaction
2296
+  (0.1ms) begin transaction
2297
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 18]]
2298
+  (0.8ms) commit transaction
2299
+  (0.1ms) begin transaction
2300
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 18]]
2301
+  (1.2ms) commit transaction
2302
+  (0.1ms) begin transaction
2303
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 18]]
2304
+  (1.2ms) commit transaction
2305
+  (0.1ms) begin transaction
2306
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 18]]
2307
+  (1.0ms) commit transaction
2308
+  (0.1ms) begin transaction
2309
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 18]]
2310
+  (1.1ms) commit transaction
2311
+  (0.1ms) begin transaction
2312
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 18]]
2313
+  (1.2ms) commit transaction
2314
+  (0.1ms) begin transaction
2315
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 18]]
2316
+  (1.1ms) commit transaction
2317
+  (0.1ms) begin transaction
2318
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 18]]
2319
+  (0.9ms) commit transaction
2320
+  (0.1ms) begin transaction
2321
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 18]]
2322
+  (1.1ms) commit transaction
2323
+  (0.1ms) begin transaction
2324
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 18]]
2325
+  (1.1ms) commit transaction
2326
+  (0.1ms) begin transaction
2327
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 18]]
2328
+  (0.9ms) commit transaction
2329
+  (0.1ms) begin transaction
2330
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 18]]
2331
+  (1.1ms) commit transaction
2332
+  (0.1ms) begin transaction
2333
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 18]]
2334
+  (1.1ms) commit transaction
2335
+  (0.1ms) begin transaction
2336
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 18]]
2337
+  (1.1ms) commit transaction
2338
+  (0.1ms) begin transaction
2339
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 18]]
2340
+  (1.0ms) commit transaction
2341
+  (0.1ms) begin transaction
2342
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 18]]
2343
+  (1.1ms) commit transaction
2344
+  (0.1ms) begin transaction
2345
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 18]]
2346
+  (1.1ms) commit transaction
2347
+  (0.1ms) begin transaction
2348
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 18]]
2349
+  (1.0ms) commit transaction
2350
+  (0.1ms) begin transaction
2351
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 18]]
2352
+  (0.9ms) commit transaction
2353
+  (0.1ms) begin transaction
2354
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 18]]
2355
+  (1.0ms) commit transaction
2356
+  (0.1ms) begin transaction
2357
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 18]]
2358
+  (1.2ms) commit transaction
2359
+  (0.1ms) begin transaction
2360
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 18]]
2361
+  (1.1ms) commit transaction
2362
+  (0.1ms) begin transaction
2363
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 18]]
2364
+  (1.1ms) commit transaction
2365
+  (0.1ms) begin transaction
2366
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 18]]
2367
+  (1.0ms) commit transaction
2368
+  (0.1ms) begin transaction
2369
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 18]]
2370
+  (1.0ms) commit transaction
2371
+  (0.1ms) begin transaction
2372
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 18]]
2373
+  (0.9ms) commit transaction
2374
+  (0.1ms) begin transaction
2375
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 18]]
2376
+  (1.1ms) commit transaction
2377
+  (0.1ms) begin transaction
2378
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 18]]
2379
+  (1.0ms) commit transaction
2380
+  (0.1ms) begin transaction
2381
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 18]]
2382
+  (1.0ms) commit transaction
2383
+  (0.1ms) begin transaction
2384
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 18]]
2385
+  (1.1ms) commit transaction
2386
+  (0.1ms) begin transaction
2387
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 18]]
2388
+  (1.2ms) commit transaction
2389
+  (0.1ms) begin transaction
2390
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 18]]
2391
+  (1.0ms) commit transaction
2392
+  (0.1ms) begin transaction
2393
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 18]]
2394
+  (1.1ms) commit transaction
2395
+  (0.1ms) begin transaction
2396
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 18]]
2397
+  (1.0ms) commit transaction
2398
+  (0.1ms) begin transaction
2399
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 18]]
2400
+  (1.1ms) commit transaction
2401
+  (0.1ms) begin transaction
2402
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 18]]
2403
+  (1.1ms) commit transaction
2404
+  (0.1ms) begin transaction
2405
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 18]]
2406
+  (1.2ms) commit transaction
2407
+  (0.1ms) begin transaction
2408
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 18]]
2409
+  (1.1ms) commit transaction
2410
+  (0.1ms) begin transaction
2411
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 18]]
2412
+  (1.0ms) commit transaction
2413
+  (0.1ms) begin transaction
2414
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 18]]
2415
+  (1.0ms) commit transaction
2416
+  (0.1ms) begin transaction
2417
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 18]]
2418
+  (0.9ms) commit transaction
2419
+  (0.1ms) begin transaction
2420
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 18]]
2421
+  (1.1ms) commit transaction
2422
+  (0.1ms) begin transaction
2423
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 18]]
2424
+  (1.0ms) commit transaction
2425
+  (0.1ms) begin transaction
2426
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 18]]
2427
+  (0.9ms) commit transaction
2428
+  (0.1ms) begin transaction
2429
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 18]]
2430
+  (1.1ms) commit transaction
2431
+  (0.1ms) begin transaction
2432
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 18]]
2433
+  (1.1ms) commit transaction
2434
+  (0.1ms) begin transaction
2435
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 18]]
2436
+  (1.0ms) commit transaction
2437
+  (0.1ms) begin transaction
2438
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 18]]
2439
+  (1.0ms) commit transaction
2440
+  (0.1ms) begin transaction
2441
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 18]]
2442
+  (1.1ms) commit transaction
2443
+  (0.1ms) begin transaction
2444
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 18]]
2445
+  (1.0ms) commit transaction
2446
+  (0.1ms) begin transaction
2447
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 19]]
2448
+  (1.1ms) commit transaction
2449
+  (0.1ms) begin transaction
2450
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 19]]
2451
+  (1.0ms) commit transaction
2452
+  (0.1ms) begin transaction
2453
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 19]]
2454
+  (1.2ms) commit transaction
2455
+  (0.1ms) begin transaction
2456
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 19]]
2457
+  (1.2ms) commit transaction
2458
+  (0.1ms) begin transaction
2459
+ SQL (0.5ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 19]]
2460
+  (1.1ms) commit transaction
2461
+  (0.1ms) begin transaction
2462
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 19]]
2463
+  (0.9ms) commit transaction
2464
+  (0.1ms) begin transaction
2465
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 19]]
2466
+  (1.1ms) commit transaction
2467
+  (0.1ms) begin transaction
2468
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 19]]
2469
+  (1.2ms) commit transaction
2470
+  (0.1ms) begin transaction
2471
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 19]]
2472
+  (1.1ms) commit transaction
2473
+  (0.1ms) begin transaction
2474
+ ----------------------------------------------------------------------------
2475
+ ActsAsCollectivelyTest: test_a_post_collection_should_have_page_views_by_day
2476
+ ----------------------------------------------------------------------------
2477
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
2478
+ PageView Load (0.3ms) SELECT "page_views".* FROM "page_views" WHERE "page_views"."post_id" = ? [["post_id", 18]]
2479
+ PageView Load (0.2ms) SELECT "page_views".* FROM "page_views" WHERE "page_views"."post_id" = ? [["post_id", 19]]
2480
+  (0.1ms) rollback transaction
2481
+  (0.1ms) begin transaction
2482
+ ----------------------------------------------------------------------------------
2483
+ ActsAsCollectivelyTest: test_a_post_collection_should_respond_to_page_views_by_day
2484
+ ----------------------------------------------------------------------------------
2485
+  (0.0ms) rollback transaction
2486
+  (0.1ms) begin transaction
2487
+ ------------------------------------------------------------------------------
2488
+ ActsAsCollectivelyTest: test_a_post_collectively_as_should_be_blogs_collection
2489
+ ------------------------------------------------------------------------------
2490
+  (0.1ms) rollback transaction
2491
+  (0.1ms) begin transaction
2492
+ ------------------------------------------------------------------------------
2493
+ ActsAsCollectivelyTest: test_a_post_collectively_as_should_be_posts_collection
2494
+ ------------------------------------------------------------------------------
2495
+  (0.0ms) rollback transaction
2496
+  (0.1ms) begin transaction
2497
+ -------------------------------------------------------
2498
+ ActsAsCollectivelyTest: test_the_post_count_should_be_2
2499
+ -------------------------------------------------------
2500
+  (0.1ms) SELECT COUNT(*) FROM "posts"
2501
+  (0.1ms) rollback transaction
2502
+  (0.0ms) begin transaction
2503
+ -------------------------------------------------------------------
2504
+ CollectionGeneratorTest: test_Assert_all_files_are_properly_created
2505
+ -------------------------------------------------------------------
2506
+  (0.1ms) rollback transaction
2507
+  (0.1ms) begin transaction
2508
+ ----------------------------
2509
+ CollectivelyTest: test_truth
2510
+ ----------------------------
2511
+  (0.1ms) rollback transaction
2512
+ SQL (3.0ms) DELETE FROM "page_views"
2513
+ SQL (1.2ms) DELETE FROM "posts"
2514
+  (0.1ms) begin transaction
2515
+ SQL (2.0ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "A extravagant post to read about"], ["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["title", "First best post"], ["updated_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00]]
2516
+  (1.2ms) commit transaction
2517
+  (0.1ms) begin transaction
2518
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "A fantastic post to read about"], ["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["title", "Second best post"], ["updated_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00]]
2519
+  (1.1ms) commit transaction
2520
+  (0.1ms) begin transaction
2521
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 20]]
2522
+  (1.2ms) commit transaction
2523
+  (0.1ms) begin transaction
2524
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 20]]
2525
+  (1.2ms) commit transaction
2526
+  (0.1ms) begin transaction
2527
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 20]]
2528
+  (1.2ms) commit transaction
2529
+  (0.1ms) begin transaction
2530
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 20]]
2531
+  (1.0ms) commit transaction
2532
+  (0.1ms) begin transaction
2533
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 20]]
2534
+  (1.0ms) commit transaction
2535
+  (0.1ms) begin transaction
2536
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 20]]
2537
+  (1.0ms) commit transaction
2538
+  (0.1ms) begin transaction
2539
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 20]]
2540
+  (1.1ms) commit transaction
2541
+  (0.1ms) begin transaction
2542
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 20]]
2543
+  (1.0ms) commit transaction
2544
+  (0.1ms) begin transaction
2545
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 20]]
2546
+  (0.7ms) commit transaction
2547
+  (0.1ms) begin transaction
2548
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 20]]
2549
+  (1.1ms) commit transaction
2550
+  (0.1ms) begin transaction
2551
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 20]]
2552
+  (1.0ms) commit transaction
2553
+  (0.1ms) begin transaction
2554
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 20]]
2555
+  (1.2ms) commit transaction
2556
+  (0.1ms) begin transaction
2557
+ SQL (1.1ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 20]]
2558
+  (1.0ms) commit transaction
2559
+  (0.1ms) begin transaction
2560
+ SQL (0.5ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 20]]
2561
+  (0.8ms) commit transaction
2562
+  (0.1ms) begin transaction
2563
+ SQL (0.5ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 20]]
2564
+  (0.8ms) commit transaction
2565
+  (0.1ms) begin transaction
2566
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 20]]
2567
+  (0.7ms) commit transaction
2568
+  (0.1ms) begin transaction
2569
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 20]]
2570
+  (0.8ms) commit transaction
2571
+  (0.1ms) begin transaction
2572
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 20]]
2573
+  (0.7ms) commit transaction
2574
+  (0.1ms) begin transaction
2575
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 20]]
2576
+  (0.9ms) commit transaction
2577
+  (0.1ms) begin transaction
2578
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 20]]
2579
+  (0.8ms) commit transaction
2580
+  (0.1ms) begin transaction
2581
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 20]]
2582
+  (0.8ms) commit transaction
2583
+  (0.1ms) begin transaction
2584
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 20]]
2585
+  (0.7ms) commit transaction
2586
+  (0.1ms) begin transaction
2587
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 20]]
2588
+  (0.7ms) commit transaction
2589
+  (0.1ms) begin transaction
2590
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 20]]
2591
+  (0.7ms) commit transaction
2592
+  (0.1ms) begin transaction
2593
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 20]]
2594
+  (0.7ms) commit transaction
2595
+  (0.1ms) begin transaction
2596
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 20]]
2597
+  (0.8ms) commit transaction
2598
+  (0.1ms) begin transaction
2599
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 20]]
2600
+  (0.8ms) commit transaction
2601
+  (0.1ms) begin transaction
2602
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 20]]
2603
+  (1.1ms) commit transaction
2604
+  (0.1ms) begin transaction
2605
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 20]]
2606
+  (1.0ms) commit transaction
2607
+  (0.1ms) begin transaction
2608
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 20]]
2609
+  (1.0ms) commit transaction
2610
+  (0.1ms) begin transaction
2611
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 20]]
2612
+  (1.1ms) commit transaction
2613
+  (0.1ms) begin transaction
2614
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 20]]
2615
+  (1.2ms) commit transaction
2616
+  (0.1ms) begin transaction
2617
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 20]]
2618
+  (1.0ms) commit transaction
2619
+  (0.1ms) begin transaction
2620
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 20]]
2621
+  (1.1ms) commit transaction
2622
+  (0.1ms) begin transaction
2623
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 20]]
2624
+  (1.1ms) commit transaction
2625
+  (0.1ms) begin transaction
2626
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 20]]
2627
+  (1.0ms) commit transaction
2628
+  (0.1ms) begin transaction
2629
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 20]]
2630
+  (1.1ms) commit transaction
2631
+  (0.1ms) begin transaction
2632
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 20]]
2633
+  (1.0ms) commit transaction
2634
+  (0.1ms) begin transaction
2635
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 20]]
2636
+  (1.1ms) commit transaction
2637
+  (0.1ms) begin transaction
2638
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 20]]
2639
+  (1.1ms) commit transaction
2640
+  (0.1ms) begin transaction
2641
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 20]]
2642
+  (1.2ms) commit transaction
2643
+  (0.1ms) begin transaction
2644
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 20]]
2645
+  (0.9ms) commit transaction
2646
+  (0.1ms) begin transaction
2647
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 20]]
2648
+  (1.0ms) commit transaction
2649
+  (0.1ms) begin transaction
2650
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 20]]
2651
+  (1.1ms) commit transaction
2652
+  (0.1ms) begin transaction
2653
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 20]]
2654
+  (1.0ms) commit transaction
2655
+  (0.1ms) begin transaction
2656
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 20]]
2657
+  (0.9ms) commit transaction
2658
+  (0.1ms) begin transaction
2659
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 20]]
2660
+  (1.0ms) commit transaction
2661
+  (0.1ms) begin transaction
2662
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 20]]
2663
+  (1.1ms) commit transaction
2664
+  (0.1ms) begin transaction
2665
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 20]]
2666
+  (1.2ms) commit transaction
2667
+  (0.1ms) begin transaction
2668
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 20]]
2669
+  (1.1ms) commit transaction
2670
+  (0.1ms) begin transaction
2671
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 20]]
2672
+  (1.2ms) commit transaction
2673
+  (0.1ms) begin transaction
2674
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 20]]
2675
+  (0.8ms) commit transaction
2676
+  (0.1ms) begin transaction
2677
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 20]]
2678
+  (1.1ms) commit transaction
2679
+  (0.1ms) begin transaction
2680
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 20]]
2681
+  (1.5ms) commit transaction
2682
+  (0.1ms) begin transaction
2683
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 20]]
2684
+  (1.1ms) commit transaction
2685
+  (0.1ms) begin transaction
2686
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 20]]
2687
+  (1.1ms) commit transaction
2688
+  (0.1ms) begin transaction
2689
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 20]]
2690
+  (1.0ms) commit transaction
2691
+  (0.1ms) begin transaction
2692
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 20]]
2693
+  (1.0ms) commit transaction
2694
+  (0.1ms) begin transaction
2695
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 20]]
2696
+  (1.1ms) commit transaction
2697
+  (0.1ms) begin transaction
2698
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 20]]
2699
+  (1.1ms) commit transaction
2700
+  (0.1ms) begin transaction
2701
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 21]]
2702
+  (1.1ms) commit transaction
2703
+  (0.1ms) begin transaction
2704
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 21]]
2705
+  (1.0ms) commit transaction
2706
+  (0.1ms) begin transaction
2707
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 21]]
2708
+  (1.1ms) commit transaction
2709
+  (0.1ms) begin transaction
2710
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 21]]
2711
+  (1.1ms) commit transaction
2712
+  (0.1ms) begin transaction
2713
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 21]]
2714
+  (1.0ms) commit transaction
2715
+  (0.1ms) begin transaction
2716
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 21]]
2717
+  (1.0ms) commit transaction
2718
+  (0.1ms) begin transaction
2719
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 21]]
2720
+  (0.8ms) commit transaction
2721
+  (0.1ms) begin transaction
2722
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 21]]
2723
+  (1.1ms) commit transaction
2724
+  (0.1ms) begin transaction
2725
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 21]]
2726
+  (1.1ms) commit transaction
2727
+  (0.1ms) begin transaction
2728
+ ----------------------------------------------------------------------------
2729
+ ActsAsCollectivelyTest: test_a_post_collection_should_have_page_views_by_day
2730
+ ----------------------------------------------------------------------------
2731
+ SQL (4.7ms) DELETE FROM "page_views"
2732
+ SQL (1.4ms) DELETE FROM "posts"
2733
+  (0.1ms) begin transaction
2734
+ SQL (2.0ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "A extravagant post to read about"], ["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["title", "First best post"], ["updated_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00]]
2735
+  (1.2ms) commit transaction
2736
+  (0.1ms) begin transaction
2737
+ SQL (0.5ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "A fantastic post to read about"], ["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["title", "Second best post"], ["updated_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00]]
2738
+  (0.8ms) commit transaction
2739
+  (0.1ms) begin transaction
2740
+ SQL (0.5ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 22]]
2741
+  (1.2ms) commit transaction
2742
+  (0.1ms) begin transaction
2743
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 22]]
2744
+  (0.9ms) commit transaction
2745
+  (0.1ms) begin transaction
2746
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 22]]
2747
+  (1.0ms) commit transaction
2748
+  (0.1ms) begin transaction
2749
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 22]]
2750
+  (1.1ms) commit transaction
2751
+  (0.1ms) begin transaction
2752
+ SQL (0.5ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 22]]
2753
+  (1.0ms) commit transaction
2754
+  (0.1ms) begin transaction
2755
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 22]]
2756
+  (1.1ms) commit transaction
2757
+  (0.1ms) begin transaction
2758
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 22]]
2759
+  (1.0ms) commit transaction
2760
+  (0.1ms) begin transaction
2761
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 22]]
2762
+  (1.2ms) commit transaction
2763
+  (0.1ms) begin transaction
2764
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 22]]
2765
+  (1.1ms) commit transaction
2766
+  (0.1ms) begin transaction
2767
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 22]]
2768
+  (1.0ms) commit transaction
2769
+  (0.1ms) begin transaction
2770
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 22]]
2771
+  (0.7ms) commit transaction
2772
+  (0.1ms) begin transaction
2773
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 22]]
2774
+  (1.1ms) commit transaction
2775
+  (0.1ms) begin transaction
2776
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 22]]
2777
+  (0.9ms) commit transaction
2778
+  (0.1ms) begin transaction
2779
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 22]]
2780
+  (1.0ms) commit transaction
2781
+  (0.1ms) begin transaction
2782
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 22]]
2783
+  (1.1ms) commit transaction
2784
+  (0.1ms) begin transaction
2785
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 22]]
2786
+  (1.0ms) commit transaction
2787
+  (0.1ms) begin transaction
2788
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 22]]
2789
+  (0.8ms) commit transaction
2790
+  (0.1ms) begin transaction
2791
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 22]]
2792
+  (1.0ms) commit transaction
2793
+  (0.1ms) begin transaction
2794
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 22]]
2795
+  (1.0ms) commit transaction
2796
+  (0.1ms) begin transaction
2797
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Tue, 14 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 22]]
2798
+  (1.0ms) commit transaction
2799
+  (0.1ms) begin transaction
2800
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 22]]
2801
+  (1.0ms) commit transaction
2802
+  (0.0ms) begin transaction
2803
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 22]]
2804
+  (1.1ms) commit transaction
2805
+  (0.1ms) begin transaction
2806
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 22]]
2807
+  (0.9ms) commit transaction
2808
+  (0.1ms) begin transaction
2809
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 22]]
2810
+  (1.0ms) commit transaction
2811
+  (0.1ms) begin transaction
2812
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 22]]
2813
+  (1.1ms) commit transaction
2814
+  (0.1ms) begin transaction
2815
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 22]]
2816
+  (1.1ms) commit transaction
2817
+  (0.1ms) begin transaction
2818
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 22]]
2819
+  (0.7ms) commit transaction
2820
+  (0.1ms) begin transaction
2821
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 22]]
2822
+  (0.7ms) commit transaction
2823
+  (0.1ms) begin transaction
2824
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 22]]
2825
+  (0.8ms) commit transaction
2826
+  (0.1ms) begin transaction
2827
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 22]]
2828
+  (1.0ms) commit transaction
2829
+  (0.1ms) begin transaction
2830
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 22]]
2831
+  (1.1ms) commit transaction
2832
+  (0.1ms) begin transaction
2833
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 22]]
2834
+  (1.0ms) commit transaction
2835
+  (0.1ms) begin transaction
2836
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 22]]
2837
+  (1.1ms) commit transaction
2838
+  (0.1ms) begin transaction
2839
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 22]]
2840
+  (0.9ms) commit transaction
2841
+  (0.1ms) begin transaction
2842
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 22]]
2843
+  (1.1ms) commit transaction
2844
+  (0.1ms) begin transaction
2845
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 22]]
2846
+  (1.1ms) commit transaction
2847
+  (0.1ms) begin transaction
2848
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 22]]
2849
+  (1.0ms) commit transaction
2850
+  (0.1ms) begin transaction
2851
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 22]]
2852
+  (1.0ms) commit transaction
2853
+  (0.1ms) begin transaction
2854
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 22]]
2855
+  (1.1ms) commit transaction
2856
+  (0.1ms) begin transaction
2857
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 15 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 22]]
2858
+  (1.1ms) commit transaction
2859
+  (0.1ms) begin transaction
2860
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.0"], ["post_id", 22]]
2861
+  (1.0ms) commit transaction
2862
+  (0.1ms) begin transaction
2863
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.1"], ["post_id", 22]]
2864
+  (1.0ms) commit transaction
2865
+  (0.1ms) begin transaction
2866
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.2"], ["post_id", 22]]
2867
+  (1.2ms) commit transaction
2868
+  (0.1ms) begin transaction
2869
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.3"], ["post_id", 22]]
2870
+  (1.1ms) commit transaction
2871
+  (0.1ms) begin transaction
2872
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.4"], ["post_id", 22]]
2873
+  (1.0ms) commit transaction
2874
+  (0.1ms) begin transaction
2875
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.5"], ["post_id", 22]]
2876
+  (0.8ms) commit transaction
2877
+  (0.1ms) begin transaction
2878
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.6"], ["post_id", 22]]
2879
+  (0.8ms) commit transaction
2880
+  (0.1ms) begin transaction
2881
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.7"], ["post_id", 22]]
2882
+  (0.8ms) commit transaction
2883
+  (0.1ms) begin transaction
2884
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.8"], ["post_id", 22]]
2885
+  (0.7ms) commit transaction
2886
+  (0.1ms) begin transaction
2887
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.9"], ["post_id", 22]]
2888
+  (0.8ms) commit transaction
2889
+  (0.1ms) begin transaction
2890
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.10"], ["post_id", 22]]
2891
+  (0.8ms) commit transaction
2892
+  (0.1ms) begin transaction
2893
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.11"], ["post_id", 22]]
2894
+  (0.8ms) commit transaction
2895
+  (0.1ms) begin transaction
2896
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.12"], ["post_id", 22]]
2897
+  (0.7ms) commit transaction
2898
+  (0.1ms) begin transaction
2899
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.13"], ["post_id", 22]]
2900
+  (0.7ms) commit transaction
2901
+  (0.1ms) begin transaction
2902
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.14"], ["post_id", 22]]
2903
+  (1.2ms) commit transaction
2904
+  (0.1ms) begin transaction
2905
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.15"], ["post_id", 22]]
2906
+  (1.2ms) commit transaction
2907
+  (0.1ms) begin transaction
2908
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.16"], ["post_id", 22]]
2909
+  (1.1ms) commit transaction
2910
+  (0.1ms) begin transaction
2911
+ SQL (0.5ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.17"], ["post_id", 22]]
2912
+  (1.1ms) commit transaction
2913
+  (0.1ms) begin transaction
2914
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.18"], ["post_id", 22]]
2915
+  (1.1ms) commit transaction
2916
+  (0.1ms) begin transaction
2917
+ SQL (0.4ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 16 Feb 2012 00:00:00 UTC +00:00], ["ip", "192.168.1.19"], ["post_id", 22]]
2918
+  (1.2ms) commit transaction
2919
+  (0.1ms) begin transaction
2920
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 23]]
2921
+  (1.0ms) commit transaction
2922
+  (0.1ms) begin transaction
2923
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 23]]
2924
+  (1.1ms) commit transaction
2925
+  (0.1ms) begin transaction
2926
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Wed, 14 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 23]]
2927
+  (1.1ms) commit transaction
2928
+  (0.1ms) begin transaction
2929
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 23]]
2930
+  (1.1ms) commit transaction
2931
+  (0.1ms) begin transaction
2932
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 23]]
2933
+  (1.1ms) commit transaction
2934
+  (0.1ms) begin transaction
2935
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Thu, 15 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 23]]
2936
+  (1.0ms) commit transaction
2937
+  (0.1ms) begin transaction
2938
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.30"], ["post_id", 23]]
2939
+  (1.1ms) commit transaction
2940
+  (0.1ms) begin transaction
2941
+ SQL (0.2ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.31"], ["post_id", 23]]
2942
+  (1.1ms) commit transaction
2943
+  (0.1ms) begin transaction
2944
+ SQL (0.3ms) INSERT INTO "page_views" ("created_at", "ip", "post_id") VALUES (?, ?, ?) [["created_at", Fri, 16 Mar 2012 00:00:00 UTC +00:00], ["ip", "192.168.2.32"], ["post_id", 23]]
2945
+  (1.0ms) commit transaction
2946
+  (0.1ms) begin transaction
2947
+ ----------------------------------------------------------------------------
2948
+ ActsAsCollectivelyTest: test_a_post_collection_should_have_page_views_by_day
2949
+ ----------------------------------------------------------------------------
2950
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
2951
+ PageView Load (0.3ms) SELECT "page_views".* FROM "page_views" WHERE "page_views"."post_id" = ? [["post_id", 22]]
2952
+ PageView Load (0.1ms) SELECT "page_views".* FROM "page_views" WHERE "page_views"."post_id" = ? [["post_id", 23]]
2953
+  (0.1ms) rollback transaction
2954
+  (0.1ms) begin transaction
2955
+ ----------------------------------------------------------------------------------
2956
+ ActsAsCollectivelyTest: test_a_post_collection_should_respond_to_page_views_by_day
2957
+ ----------------------------------------------------------------------------------
2958
+  (0.0ms) rollback transaction
2959
+  (0.1ms) begin transaction
2960
+ ------------------------------------------------------------------------------
2961
+ ActsAsCollectivelyTest: test_a_post_collectively_as_should_be_blogs_collection
2962
+ ------------------------------------------------------------------------------
2963
+  (0.1ms) rollback transaction
2964
+  (0.1ms) begin transaction
2965
+ ------------------------------------------------------------------------------
2966
+ ActsAsCollectivelyTest: test_a_post_collectively_as_should_be_posts_collection
2967
+ ------------------------------------------------------------------------------
2968
+  (0.0ms) rollback transaction
2969
+  (0.0ms) begin transaction
2970
+ -------------------------------------------------------
2971
+ ActsAsCollectivelyTest: test_the_post_count_should_be_2
2972
+ -------------------------------------------------------
2973
+  (0.1ms) SELECT COUNT(*) FROM "posts"
2974
+  (0.1ms) rollback transaction
2975
+  (0.0ms) begin transaction
2976
+ -------------------------------------------------------------------
2977
+ CollectionGeneratorTest: test_Assert_all_files_are_properly_created
2978
+ -------------------------------------------------------------------
2979
+  (0.1ms) rollback transaction
2980
+  (0.0ms) begin transaction
2981
+ ----------------------------
2982
+ CollectivelyTest: test_truth
2983
+ ----------------------------
2984
+  (0.1ms) rollback transaction