bob-builder 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +32 -0
  5. data/lib/bob/builder.rb +44 -0
  6. data/lib/bob/math.rb +7 -0
  7. data/lib/bob/meta_builder.rb +82 -0
  8. data/lib/bob/version.rb +3 -0
  9. data/lib/bob.rb +5 -0
  10. data/lib/tasks/bob_tasks.rake +4 -0
  11. data/test/dummy/README.rdoc +28 -0
  12. data/test/dummy/Rakefile +6 -0
  13. data/test/dummy/app/assets/javascripts/application.js +13 -0
  14. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  15. data/test/dummy/app/controllers/application_controller.rb +5 -0
  16. data/test/dummy/app/helpers/application_helper.rb +2 -0
  17. data/test/dummy/app/models/comment.rb +3 -0
  18. data/test/dummy/app/models/user.rb +3 -0
  19. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  20. data/test/dummy/bin/bundle +3 -0
  21. data/test/dummy/bin/rails +4 -0
  22. data/test/dummy/bin/rake +4 -0
  23. data/test/dummy/config/application.rb +25 -0
  24. data/test/dummy/config/boot.rb +5 -0
  25. data/test/dummy/config/database.yml +25 -0
  26. data/test/dummy/config/environment.rb +5 -0
  27. data/test/dummy/config/environments/development.rb +37 -0
  28. data/test/dummy/config/environments/production.rb +82 -0
  29. data/test/dummy/config/environments/test.rb +39 -0
  30. data/test/dummy/config/initializers/assets.rb +8 -0
  31. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  32. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  33. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  34. data/test/dummy/config/initializers/inflections.rb +16 -0
  35. data/test/dummy/config/initializers/mime_types.rb +4 -0
  36. data/test/dummy/config/initializers/session_store.rb +3 -0
  37. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  38. data/test/dummy/config/locales/en.yml +23 -0
  39. data/test/dummy/config/routes.rb +56 -0
  40. data/test/dummy/config/secrets.yml +22 -0
  41. data/test/dummy/config.ru +4 -0
  42. data/test/dummy/db/migrate/20150616050944_create_users.rb +10 -0
  43. data/test/dummy/db/migrate/20150616062934_create_comments.rb +9 -0
  44. data/test/dummy/db/schema.rb +34 -0
  45. data/test/dummy/db/test.sqlite3 +0 -0
  46. data/test/dummy/lib/builders/user_builder.rb +27 -0
  47. data/test/dummy/log/development.log +44 -0
  48. data/test/dummy/log/test.log +2900 -0
  49. data/test/dummy/public/404.html +67 -0
  50. data/test/dummy/public/422.html +67 -0
  51. data/test/dummy/public/500.html +66 -0
  52. data/test/dummy/public/favicon.ico +0 -0
  53. data/test/dummy/test/fixtures/comments.yml +11 -0
  54. data/test/dummy/test/fixtures/users.yml +11 -0
  55. data/test/dummy/test/models/comment_test.rb +7 -0
  56. data/test/dummy/test/models/user_test.rb +7 -0
  57. data/test/for_each_test.rb +19 -0
  58. data/test/meta_build_test.rb +40 -0
  59. data/test/test_helper.rb +15 -0
  60. metadata +180 -0
@@ -0,0 +1,2900 @@
1
+  (0.2ms) begin transaction
2
+ -------------------
3
+ BobTest: test_truth
4
+ -------------------
5
+  (0.1ms) rollback transaction
6
+  (0.3ms) begin transaction
7
+ --------------------------------------
8
+ BobTest: test_building_single_instance
9
+ --------------------------------------
10
+  (0.1ms) rollback transaction
11
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
12
+  (0.2ms) BEGIN
13
+ --------------------------------------
14
+ BobTest: test_building_single_instance
15
+ --------------------------------------
16
+  (0.1ms) ROLLBACK
17
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
18
+  (0.4ms) BEGIN
19
+ --------------------------------------
20
+ BobTest: test_building_single_instance
21
+ --------------------------------------
22
+  (0.3ms) ROLLBACK
23
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
24
+  (0.3ms) BEGIN
25
+ --------------------------------------
26
+ BobTest: test_building_single_instance
27
+ --------------------------------------
28
+  (0.2ms) ROLLBACK
29
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
30
+  (0.2ms) BEGIN
31
+ --------------------------------------
32
+ BobTest: test_building_single_instance
33
+ --------------------------------------
34
+  (0.2ms) ROLLBACK
35
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
36
+  (0.3ms) BEGIN
37
+ --------------------------------------
38
+ BobTest: test_building_single_instance
39
+ --------------------------------------
40
+  (0.7ms) ROLLBACK
41
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
42
+  (0.3ms) BEGIN
43
+ --------------------------------------
44
+ BobTest: test_building_single_instance
45
+ --------------------------------------
46
+  (0.7ms) ROLLBACK
47
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
48
+  (0.4ms) BEGIN
49
+ --------------------------------------
50
+ BobTest: test_building_single_instance
51
+ --------------------------------------
52
+  (0.6ms) ROLLBACK
53
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
54
+  (0.4ms) BEGIN
55
+ --------------------------------------
56
+ BobTest: test_building_single_instance
57
+ --------------------------------------
58
+  (0.4ms) ROLLBACK
59
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
60
+  (0.3ms) BEGIN
61
+ --------------------------------------
62
+ BobTest: test_building_single_instance
63
+ --------------------------------------
64
+  (0.4ms) ROLLBACK
65
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
66
+  (0.2ms) BEGIN
67
+ --------------------------------------
68
+ BobTest: test_building_single_instance
69
+ --------------------------------------
70
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
71
+  (0.3ms) BEGIN
72
+ --------------------------------------
73
+ BobTest: test_building_single_instance
74
+ --------------------------------------
75
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
76
+  (0.2ms) BEGIN
77
+ --------------------------------------
78
+ BobTest: test_building_single_instance
79
+ --------------------------------------
80
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
81
+  (0.3ms) BEGIN
82
+ --------------------------------------
83
+ BobTest: test_building_single_instance
84
+ --------------------------------------
85
+  (0.2ms) ROLLBACK
86
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
87
+  (0.3ms) BEGIN
88
+ --------------------------------------
89
+ BobTest: test_building_single_instance
90
+ --------------------------------------
91
+  (0.2ms) SAVEPOINT active_record_1
92
+ SQL (0.9ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 05:37:30.974404"], ["email", "felix_medhurst@balistreri.info"], ["name", "Ryder"], ["updated_at", "2015-06-16 05:37:30.974404"]]
93
+  (0.2ms) RELEASE SAVEPOINT active_record_1
94
+  (0.3ms) ROLLBACK
95
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
96
+  (0.3ms) BEGIN
97
+ --------------------------------------
98
+ BobTest: test_building_single_instance
99
+ --------------------------------------
100
+  (0.2ms) SAVEPOINT active_record_1
101
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 05:38:24.196852"], ["email", "aditya@carter.org"], ["name", "Marietta"], ["updated_at", "2015-06-16 05:38:24.196852"]]
102
+  (0.2ms) RELEASE SAVEPOINT active_record_1
103
+  (0.2ms) ROLLBACK
104
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
105
+  (0.2ms) BEGIN
106
+ --------------------------------------
107
+ BobTest: test_building_single_instance
108
+ --------------------------------------
109
+  (0.1ms) SAVEPOINT active_record_1
110
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 05:38:37.240035"], ["email", "albertha@mayert.biz"], ["name", "Damaris"], ["updated_at", "2015-06-16 05:38:37.240035"]]
111
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112
+  (0.4ms) ROLLBACK
113
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
114
+  (0.2ms) BEGIN
115
+ --------------------------------------
116
+ BobTest: test_building_single_instance
117
+ --------------------------------------
118
+  (0.2ms) SAVEPOINT active_record_1
119
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 05:39:42.544899"], ["email", "ellen@kunze.org"], ["name", "Johnathon"], ["updated_at", "2015-06-16 05:39:42.544899"]]
120
+  (0.2ms) RELEASE SAVEPOINT active_record_1
121
+  (0.2ms) ROLLBACK
122
+  (0.1ms) BEGIN
123
+ -------------------------------------------
124
+ BobTest: test_building_unpersisted_instance
125
+ -------------------------------------------
126
+  (0.2ms) ROLLBACK
127
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
128
+  (0.3ms) BEGIN
129
+ --------------------------------------
130
+ BobTest: test_building_single_instance
131
+ --------------------------------------
132
+  (0.5ms) SAVEPOINT active_record_1
133
+ SQL (0.8ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 05:43:12.718448"], ["email", "michel_rosenbaum@harberjones.name"], ["name", "Darlene"], ["updated_at", "2015-06-16 05:43:12.718448"]]
134
+  (0.3ms) RELEASE SAVEPOINT active_record_1
135
+  (0.3ms) ROLLBACK
136
+  (0.3ms) BEGIN
137
+ -------------------------------------------
138
+ BobTest: test_building_unpersisted_instance
139
+ -------------------------------------------
140
+  (0.3ms) ROLLBACK
141
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
142
+  (0.2ms) BEGIN
143
+ --------------------------------------
144
+ BobTest: test_building_single_instance
145
+ --------------------------------------
146
+  (0.6ms) SAVEPOINT active_record_1
147
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 05:43:39.603733"], ["email", "dayna.schmitt@kshlerin.com"], ["name", "Jacquelyn"], ["updated_at", "2015-06-16 05:43:39.603733"]]
148
+  (0.3ms) RELEASE SAVEPOINT active_record_1
149
+  (0.4ms) ROLLBACK
150
+  (0.3ms) BEGIN
151
+ -------------------------------------------
152
+ BobTest: test_building_unpersisted_instance
153
+ -------------------------------------------
154
+  (0.3ms) ROLLBACK
155
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
156
+  (0.3ms) BEGIN
157
+ --------------------------------------
158
+ BobTest: test_building_single_instance
159
+ --------------------------------------
160
+  (0.6ms) SAVEPOINT active_record_1
161
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 05:48:41.844770"], ["email", "tremayne@cartwright.org"], ["name", "Jeanette"], ["updated_at", "2015-06-16 05:48:41.844770"]]
162
+  (0.2ms) RELEASE SAVEPOINT active_record_1
163
+  (0.2ms) ROLLBACK
164
+  (0.1ms) BEGIN
165
+ -------------------------------------------
166
+ BobTest: test_building_unpersisted_instance
167
+ -------------------------------------------
168
+  (0.6ms) SAVEPOINT active_record_1
169
+  (0.4ms) RELEASE SAVEPOINT active_record_1
170
+  (0.5ms) ROLLBACK
171
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
172
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
173
+  (0.3ms) BEGIN
174
+ --------------------------------------
175
+ BobTest: test_building_single_instance
176
+ --------------------------------------
177
+  (0.2ms) SAVEPOINT active_record_1
178
+ SQL (0.8ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 05:58:56.978433"], ["email", "odea@jones.info"], ["name", "Kathryn"], ["updated_at", "2015-06-16 05:58:56.978433"]]
179
+  (0.3ms) RELEASE SAVEPOINT active_record_1
180
+  (0.3ms) ROLLBACK
181
+  (0.3ms) BEGIN
182
+ -------------------------------------------
183
+ BobTest: test_building_unpersisted_instance
184
+ -------------------------------------------
185
+  (0.3ms) SAVEPOINT active_record_1
186
+  (0.2ms) RELEASE SAVEPOINT active_record_1
187
+  (0.2ms) ROLLBACK
188
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
189
+  (0.3ms) BEGIN
190
+ -------------------------------------------
191
+ BobTest: test_building_many_valid_instances
192
+ -------------------------------------------
193
+  (0.2ms) SAVEPOINT active_record_1
194
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.168626"], ["email", "shaylee_quigley@rippin.name"], ["name", "Iva"], ["updated_at", "2015-06-16 06:01:03.168626"]]
195
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.172712"], ["email", "heber@sporerwisozk.info"], ["name", "Florence"], ["updated_at", "2015-06-16 06:01:03.172712"]]
196
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.173974"], ["email", "ezekiel_dickinson@towne.net"], ["name", "Erica"], ["updated_at", "2015-06-16 06:01:03.173974"]]
197
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.175110"], ["email", "malinda_christiansen@ward.name"], ["name", "Lisa"], ["updated_at", "2015-06-16 06:01:03.175110"]]
198
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.176576"], ["email", "keven.swaniawski@mrazgibson.com"], ["name", "Markus"], ["updated_at", "2015-06-16 06:01:03.176576"]]
199
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.177996"], ["email", "rodolfo@reichel.info"], ["name", "Frederick"], ["updated_at", "2015-06-16 06:01:03.177996"]]
200
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.179184"], ["email", "stevie_kovacek@rutherford.biz"], ["name", "Arne"], ["updated_at", "2015-06-16 06:01:03.179184"]]
201
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.180307"], ["email", "mathias@langosh.net"], ["name", "Wilmer"], ["updated_at", "2015-06-16 06:01:03.180307"]]
202
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.181444"], ["email", "mac@wehnerkuvalis.net"], ["name", "Anastacio"], ["updated_at", "2015-06-16 06:01:03.181444"]]
203
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.182518"], ["email", "jorge@kunde.info"], ["name", "Woodrow"], ["updated_at", "2015-06-16 06:01:03.182518"]]
204
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.183566"], ["email", "westley@dickinson.net"], ["name", "Trudie"], ["updated_at", "2015-06-16 06:01:03.183566"]]
205
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.184613"], ["email", "arlene@jacobs.org"], ["name", "Arvel"], ["updated_at", "2015-06-16 06:01:03.184613"]]
206
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.185727"], ["email", "francesca@schuppe.info"], ["name", "Nona"], ["updated_at", "2015-06-16 06:01:03.185727"]]
207
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.186820"], ["email", "tiana.schroeder@conndenesik.info"], ["name", "Maxie"], ["updated_at", "2015-06-16 06:01:03.186820"]]
208
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.187893"], ["email", "candelario.mante@douglas.com"], ["name", "Alva"], ["updated_at", "2015-06-16 06:01:03.187893"]]
209
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.188969"], ["email", "claudine@gottliebwisozk.org"], ["name", "Scotty"], ["updated_at", "2015-06-16 06:01:03.188969"]]
210
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.190067"], ["email", "adonis@sanford.name"], ["name", "Kara"], ["updated_at", "2015-06-16 06:01:03.190067"]]
211
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.191190"], ["email", "nels.kilback@murazik.net"], ["name", "Dereck"], ["updated_at", "2015-06-16 06:01:03.191190"]]
212
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.192303"], ["email", "theresa.padberg@runolfsdottir.name"], ["name", "Marisa"], ["updated_at", "2015-06-16 06:01:03.192303"]]
213
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.193458"], ["email", "alysha.romaguera@hermiston.biz"], ["name", "Elroy"], ["updated_at", "2015-06-16 06:01:03.193458"]]
214
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.194547"], ["email", "maida.torphy@wuckert.org"], ["name", "Esperanza"], ["updated_at", "2015-06-16 06:01:03.194547"]]
215
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.195652"], ["email", "lori.rempel@kutch.name"], ["name", "Jordane"], ["updated_at", "2015-06-16 06:01:03.195652"]]
216
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.196740"], ["email", "betty.boyle@kaulke.biz"], ["name", "Marielle"], ["updated_at", "2015-06-16 06:01:03.196740"]]
217
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.197916"], ["email", "jake.stanton@grant.info"], ["name", "Orie"], ["updated_at", "2015-06-16 06:01:03.197916"]]
218
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.198987"], ["email", "river@crist.org"], ["name", "Destini"], ["updated_at", "2015-06-16 06:01:03.198987"]]
219
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.200053"], ["email", "reba@kutchmcglynn.info"], ["name", "Brennon"], ["updated_at", "2015-06-16 06:01:03.200053"]]
220
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.201093"], ["email", "alberto@pollich.info"], ["name", "Luella"], ["updated_at", "2015-06-16 06:01:03.201093"]]
221
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.202206"], ["email", "deie@kleinsteuber.org"], ["name", "Rodrick"], ["updated_at", "2015-06-16 06:01:03.202206"]]
222
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.203326"], ["email", "donnell_sauer@senger.biz"], ["name", "Madilyn"], ["updated_at", "2015-06-16 06:01:03.203326"]]
223
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.204415"], ["email", "carmel@robel.com"], ["name", "Hayley"], ["updated_at", "2015-06-16 06:01:03.204415"]]
224
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.205525"], ["email", "markus@abshire.net"], ["name", "Guadalupe"], ["updated_at", "2015-06-16 06:01:03.205525"]]
225
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.206629"], ["email", "hermann@gusikowski.com"], ["name", "Devin"], ["updated_at", "2015-06-16 06:01:03.206629"]]
226
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.207698"], ["email", "erling@langoshprohaska.net"], ["name", "Damion"], ["updated_at", "2015-06-16 06:01:03.207698"]]
227
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.208788"], ["email", "gail_grant@conn.biz"], ["name", "Destini"], ["updated_at", "2015-06-16 06:01:03.208788"]]
228
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.209888"], ["email", "laisha.baumbach@legrosrempel.name"], ["name", "Toney"], ["updated_at", "2015-06-16 06:01:03.209888"]]
229
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.210977"], ["email", "jacinthe.roberts@walsh.com"], ["name", "Ashlee"], ["updated_at", "2015-06-16 06:01:03.210977"]]
230
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.212050"], ["email", "megane@dickinson.biz"], ["name", "Lempi"], ["updated_at", "2015-06-16 06:01:03.212050"]]
231
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.213184"], ["email", "ricky_kuhn@orn.org"], ["name", "Kaleb"], ["updated_at", "2015-06-16 06:01:03.213184"]]
232
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.214295"], ["email", "karl_okeefe@wolff.name"], ["name", "Sonya"], ["updated_at", "2015-06-16 06:01:03.214295"]]
233
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.215427"], ["email", "jamie.simonis@mcdermottsanford.net"], ["name", "Khalil"], ["updated_at", "2015-06-16 06:01:03.215427"]]
234
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.216564"], ["email", "austin_blanda@douglas.org"], ["name", "Alysson"], ["updated_at", "2015-06-16 06:01:03.216564"]]
235
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.217658"], ["email", "burnice@wilkinson.name"], ["name", "Faye"], ["updated_at", "2015-06-16 06:01:03.217658"]]
236
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.218750"], ["email", "raphaelle@dickensmoen.biz"], ["name", "Geovany"], ["updated_at", "2015-06-16 06:01:03.218750"]]
237
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.219836"], ["email", "emmanuel@ortiz.name"], ["name", "Orville"], ["updated_at", "2015-06-16 06:01:03.219836"]]
238
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.220982"], ["email", "ally.hand@watershyatt.net"], ["name", "Sebastian"], ["updated_at", "2015-06-16 06:01:03.220982"]]
239
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.222075"], ["email", "alfred_skiles@bergstrom.name"], ["name", "Manley"], ["updated_at", "2015-06-16 06:01:03.222075"]]
240
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.223170"], ["email", "perry_sipes@rennerlebsack.info"], ["name", "Earlene"], ["updated_at", "2015-06-16 06:01:03.223170"]]
241
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.224239"], ["email", "alexander@veum.biz"], ["name", "Gerhard"], ["updated_at", "2015-06-16 06:01:03.224239"]]
242
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.225525"], ["email", "alyon@price.biz"], ["name", "Virgil"], ["updated_at", "2015-06-16 06:01:03.225525"]]
243
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.226739"], ["email", "adaline_hickle@parisianschowalter.biz"], ["name", "Dallas"], ["updated_at", "2015-06-16 06:01:03.226739"]]
244
+  (0.2ms) RELEASE SAVEPOINT active_record_1
245
+  (0.3ms) ROLLBACK
246
+  (0.2ms) BEGIN
247
+ --------------------------------------
248
+ BobTest: test_building_single_instance
249
+ --------------------------------------
250
+  (0.2ms) SAVEPOINT active_record_1
251
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:01:03.230553"], ["email", "derick@deckowabshire.name"], ["name", "Tracey"], ["updated_at", "2015-06-16 06:01:03.230553"]]
252
+  (0.2ms) RELEASE SAVEPOINT active_record_1
253
+  (0.2ms) ROLLBACK
254
+  (0.2ms) BEGIN
255
+ -------------------------------------------
256
+ BobTest: test_building_unpersisted_instance
257
+ -------------------------------------------
258
+  (0.2ms) SAVEPOINT active_record_1
259
+  (0.2ms) RELEASE SAVEPOINT active_record_1
260
+  (0.2ms) ROLLBACK
261
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
262
+  (0.2ms) BEGIN
263
+ -------------------------------------------------
264
+ BobTest: test_building_many_unpersisted_instances
265
+ -------------------------------------------------
266
+  (0.2ms) SAVEPOINT active_record_1
267
+  (0.3ms) RELEASE SAVEPOINT active_record_1
268
+  (0.2ms) ROLLBACK
269
+  (0.1ms) BEGIN
270
+ -------------------------------------------
271
+ BobTest: test_building_many_valid_instances
272
+ -------------------------------------------
273
+  (0.1ms) SAVEPOINT active_record_1
274
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.332820"], ["email", "ada@kirlinswaniawski.com"], ["name", "Bruce"], ["updated_at", "2015-06-16 06:02:15.332820"]]
275
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.336389"], ["email", "marcelino@barrows.info"], ["name", "Reynold"], ["updated_at", "2015-06-16 06:02:15.336389"]]
276
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.337587"], ["email", "arianna.heaney@homenick.com"], ["name", "Lamar"], ["updated_at", "2015-06-16 06:02:15.337587"]]
277
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.338675"], ["email", "tyrel.wuckert@hoppe.net"], ["name", "Rebekah"], ["updated_at", "2015-06-16 06:02:15.338675"]]
278
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.339712"], ["email", "pamela.grady@gutmannpacocha.com"], ["name", "Adaline"], ["updated_at", "2015-06-16 06:02:15.339712"]]
279
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.340758"], ["email", "fleta.keeling@dietrichbraun.com"], ["name", "Natalia"], ["updated_at", "2015-06-16 06:02:15.340758"]]
280
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.341755"], ["email", "irving.mills@ledner.com"], ["name", "Rodger"], ["updated_at", "2015-06-16 06:02:15.341755"]]
281
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.342800"], ["email", "chloe.konopelski@gleason.name"], ["name", "Lilly"], ["updated_at", "2015-06-16 06:02:15.342800"]]
282
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.345222"], ["email", "maymie@carroll.org"], ["name", "Osvaldo"], ["updated_at", "2015-06-16 06:02:15.345222"]]
283
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.346767"], ["email", "rhianna.hackett@wuckert.biz"], ["name", "Reagan"], ["updated_at", "2015-06-16 06:02:15.346767"]]
284
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.348000"], ["email", "pansy@manteblanda.org"], ["name", "Maurine"], ["updated_at", "2015-06-16 06:02:15.348000"]]
285
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.349179"], ["email", "maurice@ryan.name"], ["name", "Amanda"], ["updated_at", "2015-06-16 06:02:15.349179"]]
286
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.350226"], ["email", "dominic.kuphal@prohaska.name"], ["name", "Zane"], ["updated_at", "2015-06-16 06:02:15.350226"]]
287
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.351249"], ["email", "kyle@howell.name"], ["name", "Cristal"], ["updated_at", "2015-06-16 06:02:15.351249"]]
288
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.352184"], ["email", "waino@runterath.info"], ["name", "Bell"], ["updated_at", "2015-06-16 06:02:15.352184"]]
289
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.353127"], ["email", "kenneth.wehner@raynorbartell.net"], ["name", "Jed"], ["updated_at", "2015-06-16 06:02:15.353127"]]
290
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.354132"], ["email", "nia.ko@cummerata.biz"], ["name", "Simone"], ["updated_at", "2015-06-16 06:02:15.354132"]]
291
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.355102"], ["email", "milton.spinka@gottlieb.net"], ["name", "Fabiola"], ["updated_at", "2015-06-16 06:02:15.355102"]]
292
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.356107"], ["email", "will@stanton.info"], ["name", "Madeline"], ["updated_at", "2015-06-16 06:02:15.356107"]]
293
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.357134"], ["email", "tremaine_bradtke@ebert.org"], ["name", "Margarette"], ["updated_at", "2015-06-16 06:02:15.357134"]]
294
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.358169"], ["email", "alisha.hudson@braun.net"], ["name", "Rogers"], ["updated_at", "2015-06-16 06:02:15.358169"]]
295
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.359152"], ["email", "marcelle@rohancronin.biz"], ["name", "Marilyne"], ["updated_at", "2015-06-16 06:02:15.359152"]]
296
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.360165"], ["email", "kevon_mante@ko.name"], ["name", "Brendan"], ["updated_at", "2015-06-16 06:02:15.360165"]]
297
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.361086"], ["email", "lila@pfeffer.name"], ["name", "Sally"], ["updated_at", "2015-06-16 06:02:15.361086"]]
298
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.361987"], ["email", "tommie@millerkaulke.name"], ["name", "Derek"], ["updated_at", "2015-06-16 06:02:15.361987"]]
299
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.362941"], ["email", "christop_murray@littel.info"], ["name", "Candida"], ["updated_at", "2015-06-16 06:02:15.362941"]]
300
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.363847"], ["email", "wyman.botsford@grady.org"], ["name", "Jules"], ["updated_at", "2015-06-16 06:02:15.363847"]]
301
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.364754"], ["email", "nellie.medhurst@hettingerzemlak.com"], ["name", "Moises"], ["updated_at", "2015-06-16 06:02:15.364754"]]
302
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.365739"], ["email", "destiny_steuber@kaulke.org"], ["name", "Melisa"], ["updated_at", "2015-06-16 06:02:15.365739"]]
303
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.366758"], ["email", "kevon.treutel@schmitthills.info"], ["name", "Vivien"], ["updated_at", "2015-06-16 06:02:15.366758"]]
304
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.367739"], ["email", "jayme_mraz@pacocha.biz"], ["name", "Bailey"], ["updated_at", "2015-06-16 06:02:15.367739"]]
305
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.368699"], ["email", "hillary@rempel.com"], ["name", "Rosalind"], ["updated_at", "2015-06-16 06:02:15.368699"]]
306
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.369831"], ["email", "hilda@murraybalistreri.name"], ["name", "Caleigh"], ["updated_at", "2015-06-16 06:02:15.369831"]]
307
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.370722"], ["email", "tyrese@oreilly.biz"], ["name", "Pearlie"], ["updated_at", "2015-06-16 06:02:15.370722"]]
308
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.371626"], ["email", "sven@daugherty.biz"], ["name", "Brown"], ["updated_at", "2015-06-16 06:02:15.371626"]]
309
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.372549"], ["email", "phyllis_osinski@grady.com"], ["name", "Rhiannon"], ["updated_at", "2015-06-16 06:02:15.372549"]]
310
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.373464"], ["email", "noelia@jakubowski.info"], ["name", "Myrtie"], ["updated_at", "2015-06-16 06:02:15.373464"]]
311
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.374402"], ["email", "gardner@ondrickamraz.info"], ["name", "Nicholaus"], ["updated_at", "2015-06-16 06:02:15.374402"]]
312
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.375372"], ["email", "cesar.nicolas@sawayn.info"], ["name", "Mia"], ["updated_at", "2015-06-16 06:02:15.375372"]]
313
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.376306"], ["email", "electa@bruen.org"], ["name", "Sandy"], ["updated_at", "2015-06-16 06:02:15.376306"]]
314
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.377238"], ["email", "jewell@schaefer.org"], ["name", "Aurelia"], ["updated_at", "2015-06-16 06:02:15.377238"]]
315
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.378244"], ["email", "lonnie_ratke@mcclure.org"], ["name", "Kenna"], ["updated_at", "2015-06-16 06:02:15.378244"]]
316
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.379868"], ["email", "waylon@wehnerrutherford.name"], ["name", "Cortney"], ["updated_at", "2015-06-16 06:02:15.379868"]]
317
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.381555"], ["email", "zelda.moriette@bernhard.name"], ["name", "Rory"], ["updated_at", "2015-06-16 06:02:15.381555"]]
318
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.382992"], ["email", "wilhelm.farrell@schinner.com"], ["name", "George"], ["updated_at", "2015-06-16 06:02:15.382992"]]
319
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.384026"], ["email", "hazle@deckow.net"], ["name", "Boyd"], ["updated_at", "2015-06-16 06:02:15.384026"]]
320
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.385671"], ["email", "dejuan@bechtelar.net"], ["name", "Clinton"], ["updated_at", "2015-06-16 06:02:15.385671"]]
321
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.386833"], ["email", "edgar@nikolauchaefer.net"], ["name", "Ralph"], ["updated_at", "2015-06-16 06:02:15.386833"]]
322
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.387806"], ["email", "colten_bernhard@dach.info"], ["name", "Destiny"], ["updated_at", "2015-06-16 06:02:15.387806"]]
323
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.388747"], ["email", "mina_gutmann@kling.name"], ["name", "Rene"], ["updated_at", "2015-06-16 06:02:15.388747"]]
324
+  (0.1ms) RELEASE SAVEPOINT active_record_1
325
+  (0.2ms) ROLLBACK
326
+  (0.1ms) BEGIN
327
+ --------------------------------------
328
+ BobTest: test_building_single_instance
329
+ --------------------------------------
330
+  (0.1ms) SAVEPOINT active_record_1
331
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:02:15.392000"], ["email", "allene.oconnell@kunze.net"], ["name", "Trystan"], ["updated_at", "2015-06-16 06:02:15.392000"]]
332
+  (0.1ms) RELEASE SAVEPOINT active_record_1
333
+  (0.1ms) ROLLBACK
334
+  (0.1ms) BEGIN
335
+ -------------------------------------------
336
+ BobTest: test_building_unpersisted_instance
337
+ -------------------------------------------
338
+  (0.1ms) SAVEPOINT active_record_1
339
+  (0.1ms) RELEASE SAVEPOINT active_record_1
340
+  (0.1ms) ROLLBACK
341
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
342
+  (0.3ms) BEGIN
343
+ -------------------------------------------------
344
+ BobTest: test_building_many_unpersisted_instances
345
+ -------------------------------------------------
346
+  (0.2ms) SAVEPOINT active_record_1
347
+  (0.4ms) RELEASE SAVEPOINT active_record_1
348
+  (0.2ms) ROLLBACK
349
+  (0.2ms) BEGIN
350
+ -------------------------------------------
351
+ BobTest: test_building_many_valid_instances
352
+ -------------------------------------------
353
+  (0.2ms) SAVEPOINT active_record_1
354
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.209317"], ["email", "arnoldo.stehr@littelweimann.info"], ["name", "Chyna"], ["updated_at", "2015-06-16 06:06:16.209317"]]
355
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.212977"], ["email", "dion@satterfield.name"], ["name", "Roger"], ["updated_at", "2015-06-16 06:06:16.212977"]]
356
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.214165"], ["email", "katherine.prosacco@schuppe.name"], ["name", "Evalyn"], ["updated_at", "2015-06-16 06:06:16.214165"]]
357
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.215173"], ["email", "albertha.schultz@loweswaniawski.net"], ["name", "Kendrick"], ["updated_at", "2015-06-16 06:06:16.215173"]]
358
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.216286"], ["email", "webster@bogisich.name"], ["name", "Freeda"], ["updated_at", "2015-06-16 06:06:16.216286"]]
359
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.217403"], ["email", "rosanna@erdman.info"], ["name", "John"], ["updated_at", "2015-06-16 06:06:16.217403"]]
360
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.218591"], ["email", "malachi.oconnell@carrollstark.name"], ["name", "Eddie"], ["updated_at", "2015-06-16 06:06:16.218591"]]
361
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.219599"], ["email", "burdette_berge@heaneyschamberger.net"], ["name", "Darrick"], ["updated_at", "2015-06-16 06:06:16.219599"]]
362
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.220551"], ["email", "clay@dietrichrohan.org"], ["name", "Nikita"], ["updated_at", "2015-06-16 06:06:16.220551"]]
363
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.221494"], ["email", "adriel@connfritsch.info"], ["name", "Cleo"], ["updated_at", "2015-06-16 06:06:16.221494"]]
364
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.222428"], ["email", "tom@bauchstrosin.info"], ["name", "Hugh"], ["updated_at", "2015-06-16 06:06:16.222428"]]
365
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.223382"], ["email", "jennyfer@turcotte.com"], ["name", "Terrance"], ["updated_at", "2015-06-16 06:06:16.223382"]]
366
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.224319"], ["email", "kieran_mayer@wittingjacobson.name"], ["name", "Aurelie"], ["updated_at", "2015-06-16 06:06:16.224319"]]
367
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.225239"], ["email", "cloyd_turcotte@pourosdibbert.org"], ["name", "Candice"], ["updated_at", "2015-06-16 06:06:16.225239"]]
368
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.226149"], ["email", "jefferey_king@ondrickalindgren.net"], ["name", "Delpha"], ["updated_at", "2015-06-16 06:06:16.226149"]]
369
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.227042"], ["email", "shad@mccullough.biz"], ["name", "Zoila"], ["updated_at", "2015-06-16 06:06:16.227042"]]
370
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.227922"], ["email", "moriah@leuschke.name"], ["name", "Eunice"], ["updated_at", "2015-06-16 06:06:16.227922"]]
371
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.228785"], ["email", "teagan@smithamtrantow.org"], ["name", "Billy"], ["updated_at", "2015-06-16 06:06:16.228785"]]
372
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.229661"], ["email", "zelda_kilback@gislason.name"], ["name", "Jasper"], ["updated_at", "2015-06-16 06:06:16.229661"]]
373
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.230504"], ["email", "jasmin@quigleystehr.name"], ["name", "Justina"], ["updated_at", "2015-06-16 06:06:16.230504"]]
374
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.231381"], ["email", "isabel_mccullough@block.org"], ["name", "Junius"], ["updated_at", "2015-06-16 06:06:16.231381"]]
375
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.232254"], ["email", "george_doyle@weinat.biz"], ["name", "Melissa"], ["updated_at", "2015-06-16 06:06:16.232254"]]
376
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.233096"], ["email", "santino@hermistonwilderman.com"], ["name", "Nikolas"], ["updated_at", "2015-06-16 06:06:16.233096"]]
377
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.234094"], ["email", "tyreek_muller@murray.com"], ["name", "Hyman"], ["updated_at", "2015-06-16 06:06:16.234094"]]
378
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.235020"], ["email", "isac.cummings@mcglynn.info"], ["name", "Garth"], ["updated_at", "2015-06-16 06:06:16.235020"]]
379
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.236001"], ["email", "quincy.walsh@faheysenger.net"], ["name", "Kenton"], ["updated_at", "2015-06-16 06:06:16.236001"]]
380
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.237069"], ["email", "kaylah.schowalter@king.biz"], ["name", "Monty"], ["updated_at", "2015-06-16 06:06:16.237069"]]
381
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.238648"], ["email", "jeramy_turcotte@rowe.name"], ["name", "Elenora"], ["updated_at", "2015-06-16 06:06:16.238648"]]
382
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.239637"], ["email", "jazmin@kris.com"], ["name", "Ryley"], ["updated_at", "2015-06-16 06:06:16.239637"]]
383
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.240587"], ["email", "carmen@kris.name"], ["name", "Dejah"], ["updated_at", "2015-06-16 06:06:16.240587"]]
384
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.241512"], ["email", "alexa@schaefer.name"], ["name", "Lexus"], ["updated_at", "2015-06-16 06:06:16.241512"]]
385
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.242359"], ["email", "hellen@moorecarroll.name"], ["name", "Eleazar"], ["updated_at", "2015-06-16 06:06:16.242359"]]
386
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.243224"], ["email", "kathryne@marks.biz"], ["name", "Jacques"], ["updated_at", "2015-06-16 06:06:16.243224"]]
387
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.244156"], ["email", "eliane_will@king.biz"], ["name", "Asia"], ["updated_at", "2015-06-16 06:06:16.244156"]]
388
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.245037"], ["email", "citlalli.mclaughlin@pouroshilpert.org"], ["name", "Jabari"], ["updated_at", "2015-06-16 06:06:16.245037"]]
389
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.245887"], ["email", "ambrose@hahnmosciski.name"], ["name", "Tyrese"], ["updated_at", "2015-06-16 06:06:16.245887"]]
390
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.246745"], ["email", "kira_funk@hirthemayer.name"], ["name", "Gideon"], ["updated_at", "2015-06-16 06:06:16.246745"]]
391
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.247593"], ["email", "uriel.mccullough@kshlerin.com"], ["name", "Eliseo"], ["updated_at", "2015-06-16 06:06:16.247593"]]
392
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.248436"], ["email", "sedrick@vandervortwilkinson.com"], ["name", "Lessie"], ["updated_at", "2015-06-16 06:06:16.248436"]]
393
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.249331"], ["email", "clyde@monahan.com"], ["name", "Rogelio"], ["updated_at", "2015-06-16 06:06:16.249331"]]
394
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.250191"], ["email", "julio@pfannerstill.info"], ["name", "Eloy"], ["updated_at", "2015-06-16 06:06:16.250191"]]
395
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.251070"], ["email", "jeanie.vandervort@smith.info"], ["name", "Susan"], ["updated_at", "2015-06-16 06:06:16.251070"]]
396
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.251931"], ["email", "antonia@kiehn.name"], ["name", "Jaeden"], ["updated_at", "2015-06-16 06:06:16.251931"]]
397
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.252783"], ["email", "delphia.dickinson@strosin.biz"], ["name", "Reilly"], ["updated_at", "2015-06-16 06:06:16.252783"]]
398
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.253630"], ["email", "johnson@lindgrengorczany.biz"], ["name", "Christop"], ["updated_at", "2015-06-16 06:06:16.253630"]]
399
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.254465"], ["email", "fabiola@mertz.info"], ["name", "Estevan"], ["updated_at", "2015-06-16 06:06:16.254465"]]
400
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.255327"], ["email", "carmella@erdmandoyle.biz"], ["name", "Shakira"], ["updated_at", "2015-06-16 06:06:16.255327"]]
401
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.256234"], ["email", "afton.jast@gutmann.info"], ["name", "Laney"], ["updated_at", "2015-06-16 06:06:16.256234"]]
402
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.257132"], ["email", "lou.dubuque@price.biz"], ["name", "Pink"], ["updated_at", "2015-06-16 06:06:16.257132"]]
403
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.258055"], ["email", "rhea@bechtelar.info"], ["name", "Leanna"], ["updated_at", "2015-06-16 06:06:16.258055"]]
404
+  (0.1ms) RELEASE SAVEPOINT active_record_1
405
+  (0.1ms) ROLLBACK
406
+  (0.1ms) BEGIN
407
+ --------------------------------------
408
+ BobTest: test_building_single_instance
409
+ --------------------------------------
410
+  (0.1ms) SAVEPOINT active_record_1
411
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:06:16.260844"], ["email", "madeline_ko@watsica.info"], ["name", "Ashlynn"], ["updated_at", "2015-06-16 06:06:16.260844"]]
412
+  (0.1ms) RELEASE SAVEPOINT active_record_1
413
+  (0.1ms) ROLLBACK
414
+  (0.1ms) BEGIN
415
+ -------------------------------------------
416
+ BobTest: test_building_unpersisted_instance
417
+ -------------------------------------------
418
+  (0.1ms) SAVEPOINT active_record_1
419
+  (0.1ms) RELEASE SAVEPOINT active_record_1
420
+  (0.1ms) ROLLBACK
421
+  (0.1ms) BEGIN
422
+ -------------------------------------------
423
+ BobTest: test_passing_arguments_to_builders
424
+ -------------------------------------------
425
+  (0.1ms) ROLLBACK
426
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
427
+  (0.2ms) BEGIN
428
+ -------------------------------------------------
429
+ BobTest: test_building_many_unpersisted_instances
430
+ -------------------------------------------------
431
+  (0.2ms) SAVEPOINT active_record_1
432
+  (0.3ms) RELEASE SAVEPOINT active_record_1
433
+  (0.2ms) ROLLBACK
434
+  (0.1ms) BEGIN
435
+ -------------------------------------------
436
+ BobTest: test_building_many_valid_instances
437
+ -------------------------------------------
438
+  (0.2ms) SAVEPOINT active_record_1
439
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.725014"], ["email", "darby_watsica@hackett.info"], ["name", "Daisha"], ["updated_at", "2015-06-16 06:08:09.725014"]]
440
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.728919"], ["email", "stefan@davis.org"], ["name", "Lorine"], ["updated_at", "2015-06-16 06:08:09.728919"]]
441
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.730073"], ["email", "baby@morar.name"], ["name", "Alyce"], ["updated_at", "2015-06-16 06:08:09.730073"]]
442
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.731150"], ["email", "celine@oconnell.net"], ["name", "Burley"], ["updated_at", "2015-06-16 06:08:09.731150"]]
443
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.732210"], ["email", "katlyn@millerbode.net"], ["name", "Laury"], ["updated_at", "2015-06-16 06:08:09.732210"]]
444
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.733303"], ["email", "clyde.buckridge@jerdesmith.info"], ["name", "Cierra"], ["updated_at", "2015-06-16 06:08:09.733303"]]
445
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.734469"], ["email", "meghan@goodwin.org"], ["name", "Adele"], ["updated_at", "2015-06-16 06:08:09.734469"]]
446
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.735468"], ["email", "sabrina_lowe@murazik.info"], ["name", "Abby"], ["updated_at", "2015-06-16 06:08:09.735468"]]
447
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.736518"], ["email", "bertram@christiansenerdman.info"], ["name", "Gwendolyn"], ["updated_at", "2015-06-16 06:08:09.736518"]]
448
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.737595"], ["email", "cruz@oconnell.name"], ["name", "Magnolia"], ["updated_at", "2015-06-16 06:08:09.737595"]]
449
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.738637"], ["email", "charlie_lowe@beier.org"], ["name", "Teagan"], ["updated_at", "2015-06-16 06:08:09.738637"]]
450
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.739645"], ["email", "adam.nolan@schinnermaggio.info"], ["name", "Adolfo"], ["updated_at", "2015-06-16 06:08:09.739645"]]
451
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.740622"], ["email", "harley@mueller.org"], ["name", "Anita"], ["updated_at", "2015-06-16 06:08:09.740622"]]
452
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.741612"], ["email", "jack@botsfordwest.name"], ["name", "Heber"], ["updated_at", "2015-06-16 06:08:09.741612"]]
453
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.742606"], ["email", "agustin@millchumm.com"], ["name", "Larissa"], ["updated_at", "2015-06-16 06:08:09.742606"]]
454
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.743529"], ["email", "dangelo.parker@stoltenberg.com"], ["name", "Trey"], ["updated_at", "2015-06-16 06:08:09.743529"]]
455
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.744554"], ["email", "neva@jastwitting.name"], ["name", "Abbigail"], ["updated_at", "2015-06-16 06:08:09.744554"]]
456
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.745592"], ["email", "eulalia.beatty@runtewiza.com"], ["name", "Marjory"], ["updated_at", "2015-06-16 06:08:09.745592"]]
457
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.746643"], ["email", "troy.rice@simonishilpert.name"], ["name", "Maiya"], ["updated_at", "2015-06-16 06:08:09.746643"]]
458
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.747663"], ["email", "anya_hilpert@stiedemann.org"], ["name", "Marietta"], ["updated_at", "2015-06-16 06:08:09.747663"]]
459
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.748660"], ["email", "sonya_emmerich@schillerquigley.biz"], ["name", "Charlie"], ["updated_at", "2015-06-16 06:08:09.748660"]]
460
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.749654"], ["email", "stephen@lueilwitz.com"], ["name", "Cornelius"], ["updated_at", "2015-06-16 06:08:09.749654"]]
461
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.750625"], ["email", "kale.greenfelder@mitchell.name"], ["name", "Pierre"], ["updated_at", "2015-06-16 06:08:09.750625"]]
462
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.751571"], ["email", "colleen@effertzledner.name"], ["name", "June"], ["updated_at", "2015-06-16 06:08:09.751571"]]
463
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.753100"], ["email", "cicero@howemclaughlin.com"], ["name", "Kristofer"], ["updated_at", "2015-06-16 06:08:09.753100"]]
464
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.754196"], ["email", "jaydon@pfannerstillnicolas.com"], ["name", "Alanna"], ["updated_at", "2015-06-16 06:08:09.754196"]]
465
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.755162"], ["email", "lura_trantow@kautzer.name"], ["name", "Abbie"], ["updated_at", "2015-06-16 06:08:09.755162"]]
466
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.756103"], ["email", "pinkie@ohara.name"], ["name", "Lexus"], ["updated_at", "2015-06-16 06:08:09.756103"]]
467
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.757015"], ["email", "emily@daniel.biz"], ["name", "Grady"], ["updated_at", "2015-06-16 06:08:09.757015"]]
468
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.757922"], ["email", "ryley@wolff.biz"], ["name", "Wayne"], ["updated_at", "2015-06-16 06:08:09.757922"]]
469
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.758802"], ["email", "charlene_lind@raynor.com"], ["name", "Christiana"], ["updated_at", "2015-06-16 06:08:09.758802"]]
470
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.759653"], ["email", "christophe@hirthelittle.name"], ["name", "Edwina"], ["updated_at", "2015-06-16 06:08:09.759653"]]
471
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.760535"], ["email", "chanel_ritchie@rowerutherford.info"], ["name", "Jace"], ["updated_at", "2015-06-16 06:08:09.760535"]]
472
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.761455"], ["email", "effie.leffler@grimes.com"], ["name", "Krystel"], ["updated_at", "2015-06-16 06:08:09.761455"]]
473
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.762323"], ["email", "dewayne.windler@koelpin.com"], ["name", "Joshuah"], ["updated_at", "2015-06-16 06:08:09.762323"]]
474
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.763198"], ["email", "peter@gaylord.info"], ["name", "Alexandria"], ["updated_at", "2015-06-16 06:08:09.763198"]]
475
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.764106"], ["email", "mireya@lakinstehr.info"], ["name", "Dariana"], ["updated_at", "2015-06-16 06:08:09.764106"]]
476
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.765014"], ["email", "emile@bailey.com"], ["name", "Kristian"], ["updated_at", "2015-06-16 06:08:09.765014"]]
477
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.765936"], ["email", "rubie@mertz.com"], ["name", "Arlene"], ["updated_at", "2015-06-16 06:08:09.765936"]]
478
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.766891"], ["email", "helene.kub@auer.info"], ["name", "Dejuan"], ["updated_at", "2015-06-16 06:08:09.766891"]]
479
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.767826"], ["email", "reva@lind.name"], ["name", "Demarcus"], ["updated_at", "2015-06-16 06:08:09.767826"]]
480
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.768766"], ["email", "isac.mante@nikolaus.info"], ["name", "Cicero"], ["updated_at", "2015-06-16 06:08:09.768766"]]
481
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.769667"], ["email", "bradford_hansen@schneider.com"], ["name", "Mariane"], ["updated_at", "2015-06-16 06:08:09.769667"]]
482
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.770520"], ["email", "sanford@swaniawskitrantow.org"], ["name", "Omer"], ["updated_at", "2015-06-16 06:08:09.770520"]]
483
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.771395"], ["email", "domenica@ward.com"], ["name", "Frederique"], ["updated_at", "2015-06-16 06:08:09.771395"]]
484
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.772285"], ["email", "donny.pouros@ortiz.org"], ["name", "Evert"], ["updated_at", "2015-06-16 06:08:09.772285"]]
485
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.773157"], ["email", "lia@glovermacejkovic.com"], ["name", "Dameon"], ["updated_at", "2015-06-16 06:08:09.773157"]]
486
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.774034"], ["email", "billie.smitham@schmelertorp.com"], ["name", "Barrett"], ["updated_at", "2015-06-16 06:08:09.774034"]]
487
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.774909"], ["email", "vivienne_rohan@coleabernathy.biz"], ["name", "Ignatius"], ["updated_at", "2015-06-16 06:08:09.774909"]]
488
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.775770"], ["email", "norma@luettgenconnelly.info"], ["name", "Katrina"], ["updated_at", "2015-06-16 06:08:09.775770"]]
489
+  (0.1ms) RELEASE SAVEPOINT active_record_1
490
+  (0.1ms) ROLLBACK
491
+  (0.1ms) BEGIN
492
+ --------------------------------------
493
+ BobTest: test_building_single_instance
494
+ --------------------------------------
495
+  (0.1ms) SAVEPOINT active_record_1
496
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:09.778560"], ["email", "alice@beerkemmer.biz"], ["name", "Kendrick"], ["updated_at", "2015-06-16 06:08:09.778560"]]
497
+  (0.1ms) RELEASE SAVEPOINT active_record_1
498
+  (0.1ms) ROLLBACK
499
+  (0.1ms) BEGIN
500
+ -------------------------------------------
501
+ BobTest: test_building_unpersisted_instance
502
+ -------------------------------------------
503
+  (0.1ms) SAVEPOINT active_record_1
504
+  (0.1ms) RELEASE SAVEPOINT active_record_1
505
+  (0.1ms) ROLLBACK
506
+  (0.1ms) BEGIN
507
+ -------------------------------------------
508
+ BobTest: test_passing_arguments_to_builders
509
+ -------------------------------------------
510
+  (0.1ms) ROLLBACK
511
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
512
+  (0.3ms) BEGIN
513
+ -------------------------------------------------
514
+ BobTest: test_building_many_unpersisted_instances
515
+ -------------------------------------------------
516
+  (0.2ms) SAVEPOINT active_record_1
517
+  (0.4ms) RELEASE SAVEPOINT active_record_1
518
+  (0.3ms) ROLLBACK
519
+  (0.2ms) BEGIN
520
+ -------------------------------------------
521
+ BobTest: test_building_many_valid_instances
522
+ -------------------------------------------
523
+  (0.2ms) SAVEPOINT active_record_1
524
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.238166"], ["email", "lindsay@stokesturner.com"], ["name", "Alessandro"], ["updated_at", "2015-06-16 06:08:20.238166"]]
525
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.242083"], ["email", "anabel.kris@oconner.org"], ["name", "Tyreek"], ["updated_at", "2015-06-16 06:08:20.242083"]]
526
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.243369"], ["email", "miouri@steuber.info"], ["name", "Trisha"], ["updated_at", "2015-06-16 06:08:20.243369"]]
527
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.244599"], ["email", "raegan_ferry@harveybeer.biz"], ["name", "Shania"], ["updated_at", "2015-06-16 06:08:20.244599"]]
528
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.245887"], ["email", "macy_west@predovic.com"], ["name", "Hellen"], ["updated_at", "2015-06-16 06:08:20.245887"]]
529
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.247185"], ["email", "susana@corkery.name"], ["name", "Felton"], ["updated_at", "2015-06-16 06:08:20.247185"]]
530
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.248384"], ["email", "bria@prohaska.net"], ["name", "Ericka"], ["updated_at", "2015-06-16 06:08:20.248384"]]
531
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.249473"], ["email", "napoleon@hackett.name"], ["name", "Gino"], ["updated_at", "2015-06-16 06:08:20.249473"]]
532
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.250426"], ["email", "desmond@padbergturner.name"], ["name", "Carlie"], ["updated_at", "2015-06-16 06:08:20.250426"]]
533
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.251388"], ["email", "yasmin@strosin.net"], ["name", "Anderson"], ["updated_at", "2015-06-16 06:08:20.251388"]]
534
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.252327"], ["email", "wilfred@johnsgusikowski.org"], ["name", "Miller"], ["updated_at", "2015-06-16 06:08:20.252327"]]
535
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.253305"], ["email", "marshall@gleichner.name"], ["name", "Rahul"], ["updated_at", "2015-06-16 06:08:20.253305"]]
536
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.254192"], ["email", "brock@keelingmueller.info"], ["name", "Bert"], ["updated_at", "2015-06-16 06:08:20.254192"]]
537
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.255104"], ["email", "elta@bogan.net"], ["name", "Daisha"], ["updated_at", "2015-06-16 06:08:20.255104"]]
538
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.256049"], ["email", "joel_lakin@wunsch.org"], ["name", "Casimer"], ["updated_at", "2015-06-16 06:08:20.256049"]]
539
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.256966"], ["email", "kevon@bahringercorkery.info"], ["name", "Kareem"], ["updated_at", "2015-06-16 06:08:20.256966"]]
540
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.257924"], ["email", "georgette.reynolds@wehner.info"], ["name", "Jolie"], ["updated_at", "2015-06-16 06:08:20.257924"]]
541
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.258855"], ["email", "victor.lubowitz@lefflerkling.biz"], ["name", "Krystel"], ["updated_at", "2015-06-16 06:08:20.258855"]]
542
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.259808"], ["email", "hettie_volkman@hagenes.net"], ["name", "Philip"], ["updated_at", "2015-06-16 06:08:20.259808"]]
543
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.260721"], ["email", "katharina@streichkeler.net"], ["name", "Esteban"], ["updated_at", "2015-06-16 06:08:20.260721"]]
544
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.261641"], ["email", "delta@bergewilderman.name"], ["name", "Wilfrid"], ["updated_at", "2015-06-16 06:08:20.261641"]]
545
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.262611"], ["email", "nathanial_predovic@wilkinson.net"], ["name", "Katelynn"], ["updated_at", "2015-06-16 06:08:20.262611"]]
546
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.263548"], ["email", "izabella.reichert@harvey.net"], ["name", "Juana"], ["updated_at", "2015-06-16 06:08:20.263548"]]
547
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.264535"], ["email", "katlynn.buckridge@botsford.net"], ["name", "Patricia"], ["updated_at", "2015-06-16 06:08:20.264535"]]
548
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.265722"], ["email", "toy@watsica.biz"], ["name", "Ralph"], ["updated_at", "2015-06-16 06:08:20.265722"]]
549
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.267047"], ["email", "mara@kuphalmoriette.name"], ["name", "Ashlee"], ["updated_at", "2015-06-16 06:08:20.267047"]]
550
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.268018"], ["email", "dane_kshlerin@friesen.name"], ["name", "Amari"], ["updated_at", "2015-06-16 06:08:20.268018"]]
551
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.268990"], ["email", "axel_carroll@tremblay.info"], ["name", "Durward"], ["updated_at", "2015-06-16 06:08:20.268990"]]
552
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.269886"], ["email", "june@terry.name"], ["name", "Brandi"], ["updated_at", "2015-06-16 06:08:20.269886"]]
553
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.270789"], ["email", "adrian.schaden@schulistconsidine.com"], ["name", "Aida"], ["updated_at", "2015-06-16 06:08:20.270789"]]
554
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.271707"], ["email", "arlie@gorczanyheathcote.name"], ["name", "Brooklyn"], ["updated_at", "2015-06-16 06:08:20.271707"]]
555
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.272657"], ["email", "edmond.vonrueden@bauch.biz"], ["name", "Chanelle"], ["updated_at", "2015-06-16 06:08:20.272657"]]
556
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.273604"], ["email", "markus@mckenzie.info"], ["name", "Dudley"], ["updated_at", "2015-06-16 06:08:20.273604"]]
557
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.274526"], ["email", "jeffrey.homenick@hamill.com"], ["name", "Ole"], ["updated_at", "2015-06-16 06:08:20.274526"]]
558
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.275446"], ["email", "lourdes_goldner@wilderman.net"], ["name", "Rosemarie"], ["updated_at", "2015-06-16 06:08:20.275446"]]
559
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.276393"], ["email", "georgette.stamm@murazik.biz"], ["name", "Mia"], ["updated_at", "2015-06-16 06:08:20.276393"]]
560
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.277313"], ["email", "sarah@murray.org"], ["name", "Myles"], ["updated_at", "2015-06-16 06:08:20.277313"]]
561
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.278235"], ["email", "jeffry.wolf@stark.net"], ["name", "Matteo"], ["updated_at", "2015-06-16 06:08:20.278235"]]
562
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.279297"], ["email", "izaiah.yost@oreilly.org"], ["name", "Kayleigh"], ["updated_at", "2015-06-16 06:08:20.279297"]]
563
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.280208"], ["email", "raven@monahanstark.name"], ["name", "Donavon"], ["updated_at", "2015-06-16 06:08:20.280208"]]
564
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.281128"], ["email", "ralph@ernsermorar.info"], ["name", "Marisa"], ["updated_at", "2015-06-16 06:08:20.281128"]]
565
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.282058"], ["email", "krystina@kuhlman.name"], ["name", "Drew"], ["updated_at", "2015-06-16 06:08:20.282058"]]
566
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.282945"], ["email", "kyleigh@bogisich.org"], ["name", "Ellen"], ["updated_at", "2015-06-16 06:08:20.282945"]]
567
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.283852"], ["email", "elena@lehnerleannon.name"], ["name", "Bertrand"], ["updated_at", "2015-06-16 06:08:20.283852"]]
568
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.284774"], ["email", "adelbert@bahringer.info"], ["name", "Felipe"], ["updated_at", "2015-06-16 06:08:20.284774"]]
569
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.285691"], ["email", "liliana@johnsonmcdermott.biz"], ["name", "Gudrun"], ["updated_at", "2015-06-16 06:08:20.285691"]]
570
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.286630"], ["email", "martin@rath.info"], ["name", "Stefan"], ["updated_at", "2015-06-16 06:08:20.286630"]]
571
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.287581"], ["email", "sid.schmitt@bauch.name"], ["name", "Providenci"], ["updated_at", "2015-06-16 06:08:20.287581"]]
572
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.288617"], ["email", "toney@ondrickabartoletti.org"], ["name", "Dorian"], ["updated_at", "2015-06-16 06:08:20.288617"]]
573
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.289570"], ["email", "scot.will@sipes.name"], ["name", "Margarita"], ["updated_at", "2015-06-16 06:08:20.289570"]]
574
+  (0.1ms) RELEASE SAVEPOINT active_record_1
575
+  (0.1ms) ROLLBACK
576
+  (0.1ms) BEGIN
577
+ --------------------------------------
578
+ BobTest: test_building_single_instance
579
+ --------------------------------------
580
+  (0.1ms) SAVEPOINT active_record_1
581
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:08:20.292403"], ["email", "edd_bernhard@mante.info"], ["name", "Bertram"], ["updated_at", "2015-06-16 06:08:20.292403"]]
582
+  (0.1ms) RELEASE SAVEPOINT active_record_1
583
+  (0.1ms) ROLLBACK
584
+  (0.1ms) BEGIN
585
+ -------------------------------------------
586
+ BobTest: test_building_unpersisted_instance
587
+ -------------------------------------------
588
+  (0.1ms) SAVEPOINT active_record_1
589
+  (0.1ms) RELEASE SAVEPOINT active_record_1
590
+  (0.1ms) ROLLBACK
591
+  (0.1ms) BEGIN
592
+ -------------------------------------------
593
+ BobTest: test_passing_arguments_to_builders
594
+ -------------------------------------------
595
+  (0.1ms) ROLLBACK
596
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
597
+  (0.3ms) BEGIN
598
+ -------------------------------------------------
599
+ BobTest: test_building_many_unpersisted_instances
600
+ -------------------------------------------------
601
+  (0.5ms) SAVEPOINT active_record_1
602
+  (0.5ms) RELEASE SAVEPOINT active_record_1
603
+  (0.4ms) ROLLBACK
604
+  (0.3ms) BEGIN
605
+ -------------------------------------------
606
+ BobTest: test_building_many_valid_instances
607
+ -------------------------------------------
608
+  (0.5ms) SAVEPOINT active_record_1
609
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:31.981504"], ["email", "rosella@hauckhagenes.org"], ["name", "Rossie"], ["updated_at", "2015-06-16 06:09:31.981504"]]
610
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:31.994238"], ["email", "euna@mohrweimann.info"], ["name", "Lesley"], ["updated_at", "2015-06-16 06:09:31.994238"]]
611
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:31.999479"], ["email", "connie_schroeder@luettgen.biz"], ["name", "Keely"], ["updated_at", "2015-06-16 06:09:31.999479"]]
612
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.004625"], ["email", "scot@baumbach.net"], ["name", "Dannie"], ["updated_at", "2015-06-16 06:09:32.004625"]]
613
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.010363"], ["email", "paige_auer@hettinger.info"], ["name", "Matilda"], ["updated_at", "2015-06-16 06:09:32.010363"]]
614
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.015003"], ["email", "aleen_nikolaus@jones.biz"], ["name", "Alexis"], ["updated_at", "2015-06-16 06:09:32.015003"]]
615
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.019445"], ["email", "craig@lynch.com"], ["name", "Jeromy"], ["updated_at", "2015-06-16 06:09:32.019445"]]
616
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.024081"], ["email", "khalid.kuhic@kihn.com"], ["name", "Keanu"], ["updated_at", "2015-06-16 06:09:32.024081"]]
617
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.028580"], ["email", "janiya_dach@lemke.org"], ["name", "Terence"], ["updated_at", "2015-06-16 06:09:32.028580"]]
618
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.034749"], ["email", "roy@kilbackryan.org"], ["name", "Marquis"], ["updated_at", "2015-06-16 06:09:32.034749"]]
619
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.039503"], ["email", "taryn@bednar.com"], ["name", "Janelle"], ["updated_at", "2015-06-16 06:09:32.039503"]]
620
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.043979"], ["email", "christ.kulas@marquardtdicki.org"], ["name", "Justina"], ["updated_at", "2015-06-16 06:09:32.043979"]]
621
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.049135"], ["email", "darion.hamill@parisian.name"], ["name", "Mina"], ["updated_at", "2015-06-16 06:09:32.049135"]]
622
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.053699"], ["email", "nicolas@kreigerbeier.name"], ["name", "Bernice"], ["updated_at", "2015-06-16 06:09:32.053699"]]
623
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.058231"], ["email", "foster_hamill@bechtelar.com"], ["name", "Georgianna"], ["updated_at", "2015-06-16 06:09:32.058231"]]
624
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.062691"], ["email", "nathanial@sanford.com"], ["name", "Francesco"], ["updated_at", "2015-06-16 06:09:32.062691"]]
625
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.067336"], ["email", "dayana_swift@fritsch.org"], ["name", "Simeon"], ["updated_at", "2015-06-16 06:09:32.067336"]]
626
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.071744"], ["email", "skylar@reilly.info"], ["name", "Tyrese"], ["updated_at", "2015-06-16 06:09:32.071744"]]
627
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.076339"], ["email", "teagan@oreilly.name"], ["name", "Kayleigh"], ["updated_at", "2015-06-16 06:09:32.076339"]]
628
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.080907"], ["email", "yvonne@pollich.biz"], ["name", "Daija"], ["updated_at", "2015-06-16 06:09:32.080907"]]
629
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.085596"], ["email", "jalen.deckow@cruickshank.info"], ["name", "Cornell"], ["updated_at", "2015-06-16 06:09:32.085596"]]
630
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.089915"], ["email", "abdul@kobode.org"], ["name", "Arturo"], ["updated_at", "2015-06-16 06:09:32.089915"]]
631
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.094614"], ["email", "patricia@osinski.org"], ["name", "Florida"], ["updated_at", "2015-06-16 06:09:32.094614"]]
632
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.099212"], ["email", "mack.bartoletti@ryan.name"], ["name", "Ethan"], ["updated_at", "2015-06-16 06:09:32.099212"]]
633
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.103599"], ["email", "ofelia@dibbert.org"], ["name", "Tom"], ["updated_at", "2015-06-16 06:09:32.103599"]]
634
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.108229"], ["email", "tomasa.mante@labadie.com"], ["name", "Haleigh"], ["updated_at", "2015-06-16 06:09:32.108229"]]
635
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.113533"], ["email", "cade@herman.name"], ["name", "Annamarie"], ["updated_at", "2015-06-16 06:09:32.113533"]]
636
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.118112"], ["email", "timmy@koch.com"], ["name", "Else"], ["updated_at", "2015-06-16 06:09:32.118112"]]
637
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.122389"], ["email", "clifford@reynoldsmoen.net"], ["name", "Francisca"], ["updated_at", "2015-06-16 06:09:32.122389"]]
638
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.126672"], ["email", "prince@vonruedenkeebler.info"], ["name", "Dereck"], ["updated_at", "2015-06-16 06:09:32.126672"]]
639
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.131095"], ["email", "marcellus@orn.com"], ["name", "Enos"], ["updated_at", "2015-06-16 06:09:32.131095"]]
640
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.135462"], ["email", "dion.dickinson@nienow.name"], ["name", "Vince"], ["updated_at", "2015-06-16 06:09:32.135462"]]
641
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.139799"], ["email", "idella@gorczany.net"], ["name", "Amir"], ["updated_at", "2015-06-16 06:09:32.139799"]]
642
+ SQL (1.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.216217"], ["email", "danyka_bogisich@kreiger.org"], ["name", "Letitia"], ["updated_at", "2015-06-16 06:09:32.216217"]]
643
+ SQL (1.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.223896"], ["email", "rosamond_beahan@ullrichlittel.name"], ["name", "Regan"], ["updated_at", "2015-06-16 06:09:32.223896"]]
644
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.230953"], ["email", "wendy@reichelmraz.net"], ["name", "Sterling"], ["updated_at", "2015-06-16 06:09:32.230953"]]
645
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.235978"], ["email", "loma@simonisfunk.info"], ["name", "Timmy"], ["updated_at", "2015-06-16 06:09:32.235978"]]
646
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.240979"], ["email", "heloise@sporer.net"], ["name", "Urban"], ["updated_at", "2015-06-16 06:09:32.240979"]]
647
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.245972"], ["email", "edwina_okon@flatleymaggio.net"], ["name", "Hardy"], ["updated_at", "2015-06-16 06:09:32.245972"]]
648
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.250891"], ["email", "sallie@nitzsche.biz"], ["name", "Mauricio"], ["updated_at", "2015-06-16 06:09:32.250891"]]
649
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.255518"], ["email", "bethany@lindeffertz.info"], ["name", "Selmer"], ["updated_at", "2015-06-16 06:09:32.255518"]]
650
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.260046"], ["email", "alexandro@heidenreichschaefer.name"], ["name", "Stephan"], ["updated_at", "2015-06-16 06:09:32.260046"]]
651
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.264714"], ["email", "freeman@rowe.com"], ["name", "Mazie"], ["updated_at", "2015-06-16 06:09:32.264714"]]
652
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.269468"], ["email", "amber@streich.com"], ["name", "Yesenia"], ["updated_at", "2015-06-16 06:09:32.269468"]]
653
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.274265"], ["email", "brody@corwin.net"], ["name", "Keaton"], ["updated_at", "2015-06-16 06:09:32.274265"]]
654
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.278877"], ["email", "emilio@heaneybeer.com"], ["name", "Johann"], ["updated_at", "2015-06-16 06:09:32.278877"]]
655
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.283374"], ["email", "jaqueline@gerlachstokes.name"], ["name", "Marley"], ["updated_at", "2015-06-16 06:09:32.283374"]]
656
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.287875"], ["email", "meggie@carrolllowe.name"], ["name", "Elliott"], ["updated_at", "2015-06-16 06:09:32.287875"]]
657
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.292376"], ["email", "allison@hagenes.name"], ["name", "Taurean"], ["updated_at", "2015-06-16 06:09:32.292376"]]
658
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:32.296794"], ["email", "sabryna@johnsonwintheiser.org"], ["name", "Grant"], ["updated_at", "2015-06-16 06:09:32.296794"]]
659
+  (0.1ms) RELEASE SAVEPOINT active_record_1
660
+  (0.2ms) ROLLBACK
661
+  (0.2ms) BEGIN
662
+ --------------------------------------
663
+ BobTest: test_building_single_instance
664
+ --------------------------------------
665
+  (0.5ms) SAVEPOINT active_record_1
666
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:33.816664"], ["email", "alvah@legros.com"], ["name", "Tyler"], ["updated_at", "2015-06-16 06:09:33.816664"]]
667
+  (0.4ms) RELEASE SAVEPOINT active_record_1
668
+  (0.3ms) ROLLBACK
669
+  (0.2ms) BEGIN
670
+ -------------------------------------------
671
+ BobTest: test_building_unpersisted_instance
672
+ -------------------------------------------
673
+  (0.5ms) SAVEPOINT active_record_1
674
+  (0.4ms) RELEASE SAVEPOINT active_record_1
675
+  (0.4ms) ROLLBACK
676
+  (0.4ms) BEGIN
677
+ -------------------------------------------
678
+ BobTest: test_passing_arguments_to_builders
679
+ -------------------------------------------
680
+  (0.6ms) ROLLBACK
681
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
682
+  (0.2ms) BEGIN
683
+ -------------------------------------------------
684
+ BobTest: test_building_many_unpersisted_instances
685
+ -------------------------------------------------
686
+  (0.4ms) SAVEPOINT active_record_1
687
+  (0.4ms) RELEASE SAVEPOINT active_record_1
688
+  (0.3ms) ROLLBACK
689
+  (0.2ms) BEGIN
690
+ -------------------------------------------
691
+ BobTest: test_building_many_valid_instances
692
+ -------------------------------------------
693
+  (0.5ms) SAVEPOINT active_record_1
694
+ SQL (1.0ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:42.979971"], ["email", "eudora.blanda@cruickshank.net"], ["name", "Lucienne"], ["updated_at", "2015-06-16 06:09:42.979971"]]
695
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:42.997542"], ["email", "ilene_friesen@zemlaklynch.com"], ["name", "Elliot"], ["updated_at", "2015-06-16 06:09:42.997542"]]
696
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.006137"], ["email", "hershel@corkery.info"], ["name", "Bettie"], ["updated_at", "2015-06-16 06:09:43.006137"]]
697
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.015170"], ["email", "ines_huel@casper.net"], ["name", "Jasen"], ["updated_at", "2015-06-16 06:09:43.015170"]]
698
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.022197"], ["email", "leo_jones@nolan.name"], ["name", "Katrina"], ["updated_at", "2015-06-16 06:09:43.022197"]]
699
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.029338"], ["email", "ada_tromp@gerlach.info"], ["name", "Savion"], ["updated_at", "2015-06-16 06:09:43.029338"]]
700
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.036037"], ["email", "tia.batz@dicki.name"], ["name", "Elinore"], ["updated_at", "2015-06-16 06:09:43.036037"]]
701
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.042603"], ["email", "laurine.hayes@runte.com"], ["name", "Caterina"], ["updated_at", "2015-06-16 06:09:43.042603"]]
702
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.048734"], ["email", "mara@daniel.com"], ["name", "Amparo"], ["updated_at", "2015-06-16 06:09:43.048734"]]
703
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.054949"], ["email", "janis.padberg@kautzertorp.org"], ["name", "Shanelle"], ["updated_at", "2015-06-16 06:09:43.054949"]]
704
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.061420"], ["email", "johnathan.tromp@rutherfordgorczany.info"], ["name", "Aliya"], ["updated_at", "2015-06-16 06:09:43.061420"]]
705
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.067604"], ["email", "guido_halvorson@schimmel.biz"], ["name", "Stephan"], ["updated_at", "2015-06-16 06:09:43.067604"]]
706
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.073397"], ["email", "maurice.huel@rippindach.info"], ["name", "Eleanore"], ["updated_at", "2015-06-16 06:09:43.073397"]]
707
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.079095"], ["email", "kennedi@cremin.net"], ["name", "Bettie"], ["updated_at", "2015-06-16 06:09:43.079095"]]
708
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.084784"], ["email", "eda.balistreri@barton.com"], ["name", "Edwardo"], ["updated_at", "2015-06-16 06:09:43.084784"]]
709
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.090247"], ["email", "rylee@mcclurebartoletti.net"], ["name", "Susana"], ["updated_at", "2015-06-16 06:09:43.090247"]]
710
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.095557"], ["email", "vincenzo@jones.info"], ["name", "Brittany"], ["updated_at", "2015-06-16 06:09:43.095557"]]
711
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.101096"], ["email", "adriel@johnson.name"], ["name", "Kelvin"], ["updated_at", "2015-06-16 06:09:43.101096"]]
712
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.106473"], ["email", "sigurd_becker@ryan.net"], ["name", "Eino"], ["updated_at", "2015-06-16 06:09:43.106473"]]
713
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.111426"], ["email", "vern@spinka.name"], ["name", "Hillary"], ["updated_at", "2015-06-16 06:09:43.111426"]]
714
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.116322"], ["email", "ludwig@vonrueden.net"], ["name", "Garrett"], ["updated_at", "2015-06-16 06:09:43.116322"]]
715
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.121157"], ["email", "candelario@lang.biz"], ["name", "Elaina"], ["updated_at", "2015-06-16 06:09:43.121157"]]
716
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.125862"], ["email", "queenie@emardlemke.org"], ["name", "Chauncey"], ["updated_at", "2015-06-16 06:09:43.125862"]]
717
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.130680"], ["email", "amelia@welch.org"], ["name", "Maxine"], ["updated_at", "2015-06-16 06:09:43.130680"]]
718
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.135413"], ["email", "jeanette@wolff.biz"], ["name", "Billie"], ["updated_at", "2015-06-16 06:09:43.135413"]]
719
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.140203"], ["email", "katharina@tremblay.biz"], ["name", "Jarred"], ["updated_at", "2015-06-16 06:09:43.140203"]]
720
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.144942"], ["email", "lilian_hermiston@blandabarrows.info"], ["name", "Casper"], ["updated_at", "2015-06-16 06:09:43.144942"]]
721
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.149516"], ["email", "adeline@wisokylubowitz.org"], ["name", "Margaretta"], ["updated_at", "2015-06-16 06:09:43.149516"]]
722
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.154097"], ["email", "presley@sauer.info"], ["name", "Colleen"], ["updated_at", "2015-06-16 06:09:43.154097"]]
723
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.159076"], ["email", "ervin@considine.name"], ["name", "Jena"], ["updated_at", "2015-06-16 06:09:43.159076"]]
724
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.163927"], ["email", "zion_okuneva@ryandaniel.net"], ["name", "Greg"], ["updated_at", "2015-06-16 06:09:43.163927"]]
725
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.168827"], ["email", "leslie.adams@rosenbaum.com"], ["name", "Amina"], ["updated_at", "2015-06-16 06:09:43.168827"]]
726
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.173575"], ["email", "verdie@dickinson.info"], ["name", "Talon"], ["updated_at", "2015-06-16 06:09:43.173575"]]
727
+ SQL (1.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.178294"], ["email", "esmeralda@jast.com"], ["name", "Kyler"], ["updated_at", "2015-06-16 06:09:43.178294"]]
728
+ SQL (1.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.257311"], ["email", "claude_howell@murphycummings.biz"], ["name", "Lexie"], ["updated_at", "2015-06-16 06:09:43.257311"]]
729
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.264757"], ["email", "rosina_satterfield@bahringer.info"], ["name", "Ole"], ["updated_at", "2015-06-16 06:09:43.264757"]]
730
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.270084"], ["email", "raymond_murphy@kertzmannschiller.biz"], ["name", "Gonzalo"], ["updated_at", "2015-06-16 06:09:43.270084"]]
731
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.275072"], ["email", "jayce@weimann.info"], ["name", "Angelo"], ["updated_at", "2015-06-16 06:09:43.275072"]]
732
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.280286"], ["email", "emmanuel.mayert@flatley.info"], ["name", "Deonte"], ["updated_at", "2015-06-16 06:09:43.280286"]]
733
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.285518"], ["email", "seamus_padberg@lehner.name"], ["name", "Karlie"], ["updated_at", "2015-06-16 06:09:43.285518"]]
734
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.290459"], ["email", "kaylee_hayes@luettgengreenfelder.com"], ["name", "Delia"], ["updated_at", "2015-06-16 06:09:43.290459"]]
735
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.295467"], ["email", "rudy@schneider.biz"], ["name", "Sid"], ["updated_at", "2015-06-16 06:09:43.295467"]]
736
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.300316"], ["email", "alycia@ziemann.biz"], ["name", "Tia"], ["updated_at", "2015-06-16 06:09:43.300316"]]
737
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.305119"], ["email", "alexander_schroeder@johnson.org"], ["name", "Zelda"], ["updated_at", "2015-06-16 06:09:43.305119"]]
738
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.309868"], ["email", "ian@howe.com"], ["name", "Madyson"], ["updated_at", "2015-06-16 06:09:43.309868"]]
739
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.314716"], ["email", "modesta_kshlerin@ratke.org"], ["name", "Precious"], ["updated_at", "2015-06-16 06:09:43.314716"]]
740
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.319487"], ["email", "madge@sipes.com"], ["name", "Lenore"], ["updated_at", "2015-06-16 06:09:43.319487"]]
741
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.324405"], ["email", "lolita.doyle@huels.info"], ["name", "Augusta"], ["updated_at", "2015-06-16 06:09:43.324405"]]
742
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.329369"], ["email", "bertrand_lemke@sawayn.info"], ["name", "Burnice"], ["updated_at", "2015-06-16 06:09:43.329369"]]
743
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:43.334753"], ["email", "rhiannon_weimann@emard.name"], ["name", "Kaylee"], ["updated_at", "2015-06-16 06:09:43.334753"]]
744
+  (0.3ms) RELEASE SAVEPOINT active_record_1
745
+  (0.4ms) ROLLBACK
746
+  (0.2ms) BEGIN
747
+ --------------------------------------
748
+ BobTest: test_building_single_instance
749
+ --------------------------------------
750
+  (0.5ms) SAVEPOINT active_record_1
751
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:09:48.236255"], ["email", "israel@dickimetz.com"], ["name", "Kasey"], ["updated_at", "2015-06-16 06:09:48.236255"]]
752
+  (0.4ms) RELEASE SAVEPOINT active_record_1
753
+  (0.6ms) ROLLBACK
754
+  (0.4ms) BEGIN
755
+ -------------------------------------------
756
+ BobTest: test_building_unpersisted_instance
757
+ -------------------------------------------
758
+  (0.5ms) SAVEPOINT active_record_1
759
+  (0.4ms) RELEASE SAVEPOINT active_record_1
760
+  (0.5ms) ROLLBACK
761
+  (0.4ms) BEGIN
762
+ -------------------------------------------
763
+ BobTest: test_passing_arguments_to_builders
764
+ -------------------------------------------
765
+  (0.6ms) ROLLBACK
766
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
767
+  (0.3ms) BEGIN
768
+ -------------------------------------------------
769
+ BobTest: test_building_many_unpersisted_instances
770
+ -------------------------------------------------
771
+  (0.6ms) SAVEPOINT active_record_1
772
+  (0.5ms) RELEASE SAVEPOINT active_record_1
773
+  (0.3ms) ROLLBACK
774
+  (0.3ms) BEGIN
775
+ -------------------------------------------
776
+ BobTest: test_building_many_valid_instances
777
+ -------------------------------------------
778
+  (0.5ms) SAVEPOINT active_record_1
779
+ SQL (1.0ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.712947"], ["email", "cale@raynorhand.info"], ["name", "Pauline"], ["updated_at", "2015-06-16 06:10:49.712947"]]
780
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.731499"], ["email", "shayne.dibbert@sauermosciski.info"], ["name", "Nathan"], ["updated_at", "2015-06-16 06:10:49.731499"]]
781
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.740563"], ["email", "quincy@kuhn.biz"], ["name", "Eriberto"], ["updated_at", "2015-06-16 06:10:49.740563"]]
782
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.748910"], ["email", "fredy@stark.net"], ["name", "Evelyn"], ["updated_at", "2015-06-16 06:10:49.748910"]]
783
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.755613"], ["email", "dave@pagac.info"], ["name", "Shea"], ["updated_at", "2015-06-16 06:10:49.755613"]]
784
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.762404"], ["email", "herman.kautzer@nienow.biz"], ["name", "Armani"], ["updated_at", "2015-06-16 06:10:49.762404"]]
785
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.768890"], ["email", "christian@corkeryhomenick.org"], ["name", "Trisha"], ["updated_at", "2015-06-16 06:10:49.768890"]]
786
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.774991"], ["email", "verda@framirolfson.name"], ["name", "Parker"], ["updated_at", "2015-06-16 06:10:49.774991"]]
787
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.781455"], ["email", "mariane_cronin@von.info"], ["name", "Marshall"], ["updated_at", "2015-06-16 06:10:49.781455"]]
788
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.787425"], ["email", "elta@robel.net"], ["name", "Jada"], ["updated_at", "2015-06-16 06:10:49.787425"]]
789
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.793938"], ["email", "iac.ratke@kulas.name"], ["name", "Jo"], ["updated_at", "2015-06-16 06:10:49.793938"]]
790
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.799686"], ["email", "brendan_heaney@predovic.name"], ["name", "Edna"], ["updated_at", "2015-06-16 06:10:49.799686"]]
791
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.805431"], ["email", "vernon@prohaska.biz"], ["name", "Christina"], ["updated_at", "2015-06-16 06:10:49.805431"]]
792
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.810746"], ["email", "lavada@satterfield.com"], ["name", "Oliver"], ["updated_at", "2015-06-16 06:10:49.810746"]]
793
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.816361"], ["email", "kitty_abernathy@willms.org"], ["name", "Mireille"], ["updated_at", "2015-06-16 06:10:49.816361"]]
794
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.821607"], ["email", "sonny_hahn@labadiestracke.info"], ["name", "Santina"], ["updated_at", "2015-06-16 06:10:49.821607"]]
795
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.826841"], ["email", "madyson@champlinfeil.info"], ["name", "Chaim"], ["updated_at", "2015-06-16 06:10:49.826841"]]
796
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.832178"], ["email", "simone.jast@roob.org"], ["name", "Zachery"], ["updated_at", "2015-06-16 06:10:49.832178"]]
797
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.837288"], ["email", "zackery@upton.info"], ["name", "Agustina"], ["updated_at", "2015-06-16 06:10:49.837288"]]
798
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.842971"], ["email", "leland.von@carterkerluke.com"], ["name", "Uriel"], ["updated_at", "2015-06-16 06:10:49.842971"]]
799
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.848188"], ["email", "paige@hanelittel.net"], ["name", "Ericka"], ["updated_at", "2015-06-16 06:10:49.848188"]]
800
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.853444"], ["email", "augustine.cummerata@harber.org"], ["name", "Karina"], ["updated_at", "2015-06-16 06:10:49.853444"]]
801
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.858707"], ["email", "walter.langworth@wisozk.com"], ["name", "Sigrid"], ["updated_at", "2015-06-16 06:10:49.858707"]]
802
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.863769"], ["email", "guiseppe@kirlinraynor.com"], ["name", "Ignatius"], ["updated_at", "2015-06-16 06:10:49.863769"]]
803
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.868713"], ["email", "judson@mayertoreilly.name"], ["name", "Brigitte"], ["updated_at", "2015-06-16 06:10:49.868713"]]
804
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.873789"], ["email", "ryley_cruickshank@breitenbergschulist.org"], ["name", "Harrison"], ["updated_at", "2015-06-16 06:10:49.873789"]]
805
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.878637"], ["email", "kenton@ko.biz"], ["name", "Hank"], ["updated_at", "2015-06-16 06:10:49.878637"]]
806
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.883586"], ["email", "santos.ruel@king.net"], ["name", "Coy"], ["updated_at", "2015-06-16 06:10:49.883586"]]
807
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.888485"], ["email", "gayle@crona.biz"], ["name", "Dewayne"], ["updated_at", "2015-06-16 06:10:49.888485"]]
808
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.893124"], ["email", "danial@wolff.org"], ["name", "Eleanora"], ["updated_at", "2015-06-16 06:10:49.893124"]]
809
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.898394"], ["email", "martine@bayer.name"], ["name", "Maria"], ["updated_at", "2015-06-16 06:10:49.898394"]]
810
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.903508"], ["email", "michale@larson.name"], ["name", "Darius"], ["updated_at", "2015-06-16 06:10:49.903508"]]
811
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.908435"], ["email", "anastasia@feest.org"], ["name", "Amie"], ["updated_at", "2015-06-16 06:10:49.908435"]]
812
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.913577"], ["email", "annamarie@wolffmayer.net"], ["name", "Cora"], ["updated_at", "2015-06-16 06:10:49.913577"]]
813
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.918769"], ["email", "wilburn.leffler@mcclure.org"], ["name", "Lucile"], ["updated_at", "2015-06-16 06:10:49.918769"]]
814
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.923665"], ["email", "buford@rempel.name"], ["name", "Braden"], ["updated_at", "2015-06-16 06:10:49.923665"]]
815
+ SQL (1.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:49.928845"], ["email", "colleen_ondricka@strackenolan.biz"], ["name", "Pinkie"], ["updated_at", "2015-06-16 06:10:49.928845"]]
816
+ SQL (1.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:50.008639"], ["email", "cierra.goyette@jakubowskiwiza.name"], ["name", "Stan"], ["updated_at", "2015-06-16 06:10:50.008639"]]
817
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:50.016090"], ["email", "jay@champlin.com"], ["name", "Edmund"], ["updated_at", "2015-06-16 06:10:50.016090"]]
818
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:50.021600"], ["email", "hester@boyleaufderhar.name"], ["name", "Sabryna"], ["updated_at", "2015-06-16 06:10:50.021600"]]
819
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:50.026980"], ["email", "mikel@champlin.biz"], ["name", "Eliseo"], ["updated_at", "2015-06-16 06:10:50.026980"]]
820
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:50.032262"], ["email", "cara.yost@spencer.net"], ["name", "Abe"], ["updated_at", "2015-06-16 06:10:50.032262"]]
821
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:50.037180"], ["email", "nelson.halvorson@bauch.org"], ["name", "Andreane"], ["updated_at", "2015-06-16 06:10:50.037180"]]
822
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:50.041756"], ["email", "colten@haleyfay.org"], ["name", "Clair"], ["updated_at", "2015-06-16 06:10:50.041756"]]
823
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:50.046518"], ["email", "florine.hahn@kaulke.org"], ["name", "Elfrieda"], ["updated_at", "2015-06-16 06:10:50.046518"]]
824
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:50.051427"], ["email", "keira@jenkins.biz"], ["name", "Domenick"], ["updated_at", "2015-06-16 06:10:50.051427"]]
825
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:50.056038"], ["email", "lelia@brown.info"], ["name", "Icie"], ["updated_at", "2015-06-16 06:10:50.056038"]]
826
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:50.060498"], ["email", "logan@hammes.biz"], ["name", "Rick"], ["updated_at", "2015-06-16 06:10:50.060498"]]
827
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:50.065083"], ["email", "matilde_mertz@rowegreenfelder.info"], ["name", "Jalen"], ["updated_at", "2015-06-16 06:10:50.065083"]]
828
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:50.069641"], ["email", "caesar.armstrong@haaggottlieb.biz"], ["name", "Brett"], ["updated_at", "2015-06-16 06:10:50.069641"]]
829
+  (0.1ms) RELEASE SAVEPOINT active_record_1
830
+  (0.2ms) ROLLBACK
831
+  (0.1ms) BEGIN
832
+ --------------------------------------
833
+ BobTest: test_building_single_instance
834
+ --------------------------------------
835
+  (0.4ms) SAVEPOINT active_record_1
836
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:10:50.612048"], ["email", "angeline@donnellyhalvorson.com"], ["name", "Murray"], ["updated_at", "2015-06-16 06:10:50.612048"]]
837
+  (0.4ms) RELEASE SAVEPOINT active_record_1
838
+  (0.4ms) ROLLBACK
839
+  (0.3ms) BEGIN
840
+ -------------------------------------------
841
+ BobTest: test_building_unpersisted_instance
842
+ -------------------------------------------
843
+  (0.5ms) SAVEPOINT active_record_1
844
+  (0.4ms) RELEASE SAVEPOINT active_record_1
845
+  (0.5ms) ROLLBACK
846
+  (0.5ms) BEGIN
847
+ -------------------------------------------
848
+ BobTest: test_passing_arguments_to_builders
849
+ -------------------------------------------
850
+  (0.5ms) SAVEPOINT active_record_1
851
+  (0.3ms) RELEASE SAVEPOINT active_record_1
852
+  (0.4ms) ROLLBACK
853
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
854
+  (0.3ms) BEGIN
855
+ -------------------------------------------------
856
+ BobTest: test_building_many_unpersisted_instances
857
+ -------------------------------------------------
858
+  (0.6ms) SAVEPOINT active_record_1
859
+  (0.5ms) RELEASE SAVEPOINT active_record_1
860
+  (0.4ms) ROLLBACK
861
+  (0.3ms) BEGIN
862
+ -------------------------------------------
863
+ BobTest: test_building_many_valid_instances
864
+ -------------------------------------------
865
+  (0.5ms) SAVEPOINT active_record_1
866
+ SQL (1.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.436367"], ["email", "woodrow@swaniawskianderson.biz"], ["name", "Arielle"], ["updated_at", "2015-06-16 06:12:41.436367"]]
867
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.453691"], ["email", "pamela@mcglynn.info"], ["name", "Shayne"], ["updated_at", "2015-06-16 06:12:41.453691"]]
868
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.461793"], ["email", "trenton.littel@starkskiles.net"], ["name", "Louie"], ["updated_at", "2015-06-16 06:12:41.461793"]]
869
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.469469"], ["email", "colton@hegmann.com"], ["name", "Cody"], ["updated_at", "2015-06-16 06:12:41.469469"]]
870
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.476070"], ["email", "laisha@koch.org"], ["name", "Donald"], ["updated_at", "2015-06-16 06:12:41.476070"]]
871
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.482565"], ["email", "milo.schaefer@blickkub.com"], ["name", "Norberto"], ["updated_at", "2015-06-16 06:12:41.482565"]]
872
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.488838"], ["email", "jovanny@mitchellgulgowski.biz"], ["name", "Grady"], ["updated_at", "2015-06-16 06:12:41.488838"]]
873
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.494842"], ["email", "madisen@simonis.info"], ["name", "Aliyah"], ["updated_at", "2015-06-16 06:12:41.494842"]]
874
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.501127"], ["email", "madyson_rice@ruel.info"], ["name", "Elvie"], ["updated_at", "2015-06-16 06:12:41.501127"]]
875
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.507245"], ["email", "lera_tillman@bauch.org"], ["name", "Eldridge"], ["updated_at", "2015-06-16 06:12:41.507245"]]
876
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.513562"], ["email", "helmer_krajcik@ankunding.info"], ["name", "Macie"], ["updated_at", "2015-06-16 06:12:41.513562"]]
877
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.519496"], ["email", "jaylan@ledner.net"], ["name", "Rosemarie"], ["updated_at", "2015-06-16 06:12:41.519496"]]
878
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.525549"], ["email", "cara_abernathy@millerbruen.org"], ["name", "Wiley"], ["updated_at", "2015-06-16 06:12:41.525549"]]
879
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.531547"], ["email", "daija@schneider.org"], ["name", "Madalyn"], ["updated_at", "2015-06-16 06:12:41.531547"]]
880
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.537613"], ["email", "reta_waters@mannko.name"], ["name", "Forest"], ["updated_at", "2015-06-16 06:12:41.537613"]]
881
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.543491"], ["email", "lorna@damore.com"], ["name", "Saige"], ["updated_at", "2015-06-16 06:12:41.543491"]]
882
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.549815"], ["email", "kirk.rohan@ondricka.com"], ["name", "Anika"], ["updated_at", "2015-06-16 06:12:41.549815"]]
883
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.555791"], ["email", "cheyanne_bashirian@sanford.info"], ["name", "Junior"], ["updated_at", "2015-06-16 06:12:41.555791"]]
884
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.561820"], ["email", "coy_baumbach@bins.org"], ["name", "Tiara"], ["updated_at", "2015-06-16 06:12:41.561820"]]
885
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.567501"], ["email", "kaitlyn_ritchie@gerhold.net"], ["name", "John"], ["updated_at", "2015-06-16 06:12:41.567501"]]
886
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.573198"], ["email", "isaias_kiehn@hillshermiston.name"], ["name", "Destany"], ["updated_at", "2015-06-16 06:12:41.573198"]]
887
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.578685"], ["email", "meghan_kuhic@rosenbaum.biz"], ["name", "Jasmin"], ["updated_at", "2015-06-16 06:12:41.578685"]]
888
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.583959"], ["email", "marlen@rutherford.net"], ["name", "Diana"], ["updated_at", "2015-06-16 06:12:41.583959"]]
889
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.589193"], ["email", "allie@hacketternser.name"], ["name", "Mia"], ["updated_at", "2015-06-16 06:12:41.589193"]]
890
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.594570"], ["email", "deshawn.ledner@orn.org"], ["name", "Marianna"], ["updated_at", "2015-06-16 06:12:41.594570"]]
891
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.599831"], ["email", "bernardo@dickikeler.net"], ["name", "Augustine"], ["updated_at", "2015-06-16 06:12:41.599831"]]
892
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.605184"], ["email", "lowell@bogan.com"], ["name", "Elizabeth"], ["updated_at", "2015-06-16 06:12:41.605184"]]
893
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.610644"], ["email", "malcolm_koelpin@kutch.org"], ["name", "Kamron"], ["updated_at", "2015-06-16 06:12:41.610644"]]
894
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.616002"], ["email", "connor.miller@orn.name"], ["name", "Millie"], ["updated_at", "2015-06-16 06:12:41.616002"]]
895
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.621034"], ["email", "leonie@zboncak.com"], ["name", "Kariane"], ["updated_at", "2015-06-16 06:12:41.621034"]]
896
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.626657"], ["email", "rodrick@hegmannpagac.info"], ["name", "Camden"], ["updated_at", "2015-06-16 06:12:41.626657"]]
897
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.631747"], ["email", "ethan@hagenes.net"], ["name", "Victoria"], ["updated_at", "2015-06-16 06:12:41.631747"]]
898
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.636650"], ["email", "treva@reichel.com"], ["name", "Zackery"], ["updated_at", "2015-06-16 06:12:41.636650"]]
899
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.641781"], ["email", "saul@barrows.biz"], ["name", "Ivory"], ["updated_at", "2015-06-16 06:12:41.641781"]]
900
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.646624"], ["email", "lexus@mannrice.com"], ["name", "Dillon"], ["updated_at", "2015-06-16 06:12:41.646624"]]
901
+ SQL (1.8ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.724143"], ["email", "eloy_donnelly@langworth.com"], ["name", "Kari"], ["updated_at", "2015-06-16 06:12:41.724143"]]
902
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.732669"], ["email", "barney.upton@stokes.info"], ["name", "Jameson"], ["updated_at", "2015-06-16 06:12:41.732669"]]
903
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.738236"], ["email", "edna.oconnell@schoen.info"], ["name", "Jamison"], ["updated_at", "2015-06-16 06:12:41.738236"]]
904
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.743432"], ["email", "pasquale@robertsking.com"], ["name", "Claudie"], ["updated_at", "2015-06-16 06:12:41.743432"]]
905
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.748653"], ["email", "karen.heathcote@lemke.info"], ["name", "Estel"], ["updated_at", "2015-06-16 06:12:41.748653"]]
906
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.753853"], ["email", "giles_gislason@nikolaus.info"], ["name", "Alverta"], ["updated_at", "2015-06-16 06:12:41.753853"]]
907
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.758646"], ["email", "curtis@pacochalindgren.name"], ["name", "Bo"], ["updated_at", "2015-06-16 06:12:41.758646"]]
908
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.763398"], ["email", "melia@schillerjenkins.biz"], ["name", "Garth"], ["updated_at", "2015-06-16 06:12:41.763398"]]
909
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.768711"], ["email", "palma_rau@mcclureherzog.info"], ["name", "Oran"], ["updated_at", "2015-06-16 06:12:41.768711"]]
910
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.773638"], ["email", "alicia.shields@simonistromp.org"], ["name", "Sarai"], ["updated_at", "2015-06-16 06:12:41.773638"]]
911
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.778421"], ["email", "rylee@daniel.name"], ["name", "Graham"], ["updated_at", "2015-06-16 06:12:41.778421"]]
912
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.783669"], ["email", "alvera.roberts@sipes.biz"], ["name", "Terrance"], ["updated_at", "2015-06-16 06:12:41.783669"]]
913
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.788390"], ["email", "je@lebsackkunze.net"], ["name", "Izabella"], ["updated_at", "2015-06-16 06:12:41.788390"]]
914
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.792854"], ["email", "meta@rice.com"], ["name", "Krystel"], ["updated_at", "2015-06-16 06:12:41.792854"]]
915
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:41.797361"], ["email", "mac@johnston.com"], ["name", "Jasmin"], ["updated_at", "2015-06-16 06:12:41.797361"]]
916
+  (0.2ms) RELEASE SAVEPOINT active_record_1
917
+  (0.4ms) ROLLBACK
918
+  (0.4ms) BEGIN
919
+ --------------------------------------
920
+ BobTest: test_building_single_instance
921
+ --------------------------------------
922
+  (0.5ms) SAVEPOINT active_record_1
923
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:12:42.282964"], ["email", "alverta_ryan@white.com"], ["name", "Geovanny"], ["updated_at", "2015-06-16 06:12:42.282964"]]
924
+  (0.4ms) RELEASE SAVEPOINT active_record_1
925
+  (0.3ms) ROLLBACK
926
+  (0.4ms) BEGIN
927
+ -------------------------------------------
928
+ BobTest: test_building_unpersisted_instance
929
+ -------------------------------------------
930
+  (0.5ms) SAVEPOINT active_record_1
931
+  (0.4ms) RELEASE SAVEPOINT active_record_1
932
+  (0.5ms) ROLLBACK
933
+  (0.4ms) BEGIN
934
+ -------------------------------------------
935
+ BobTest: test_passing_arguments_to_builders
936
+ -------------------------------------------
937
+  (0.5ms) SAVEPOINT active_record_1
938
+  (0.4ms) RELEASE SAVEPOINT active_record_1
939
+  (0.4ms) ROLLBACK
940
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
941
+  (0.3ms) BEGIN
942
+ -------------------------------------------------
943
+ BobTest: test_building_many_unpersisted_instances
944
+ -------------------------------------------------
945
+  (0.2ms) SAVEPOINT active_record_1
946
+  (0.4ms) RELEASE SAVEPOINT active_record_1
947
+  (0.3ms) ROLLBACK
948
+  (0.2ms) BEGIN
949
+ -------------------------------------------
950
+ BobTest: test_building_many_valid_instances
951
+ -------------------------------------------
952
+  (0.2ms) SAVEPOINT active_record_1
953
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.601525"], ["email", "lizeth@schmitt.org"], ["name", "Sierra"], ["updated_at", "2015-06-16 06:13:05.601525"]]
954
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.605579"], ["email", "etha.schimmel@bradtke.net"], ["name", "Nichole"], ["updated_at", "2015-06-16 06:13:05.605579"]]
955
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.606872"], ["email", "jane.yundt@mantejenkins.com"], ["name", "Gust"], ["updated_at", "2015-06-16 06:13:05.606872"]]
956
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.608091"], ["email", "alfonso.cummings@beierabbott.org"], ["name", "Margret"], ["updated_at", "2015-06-16 06:13:05.608091"]]
957
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.609326"], ["email", "rosanna@hilll.info"], ["name", "Rosalee"], ["updated_at", "2015-06-16 06:13:05.609326"]]
958
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.610611"], ["email", "jalyn.leuschke@buckridge.biz"], ["name", "Abelardo"], ["updated_at", "2015-06-16 06:13:05.610611"]]
959
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.611796"], ["email", "virgil.howell@torphywilliamson.name"], ["name", "Forrest"], ["updated_at", "2015-06-16 06:13:05.611796"]]
960
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.612856"], ["email", "boris_kovacek@grimes.name"], ["name", "Ron"], ["updated_at", "2015-06-16 06:13:05.612856"]]
961
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.613947"], ["email", "merritt.legros@witting.name"], ["name", "Skylar"], ["updated_at", "2015-06-16 06:13:05.613947"]]
962
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.615032"], ["email", "selina.schmitt@collins.info"], ["name", "Jadon"], ["updated_at", "2015-06-16 06:13:05.615032"]]
963
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.616091"], ["email", "napoleon_stamm@halvorsonmcclure.com"], ["name", "Willa"], ["updated_at", "2015-06-16 06:13:05.616091"]]
964
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.617124"], ["email", "ned@ritchie.name"], ["name", "Lisandro"], ["updated_at", "2015-06-16 06:13:05.617124"]]
965
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.618005"], ["email", "billy@skiles.com"], ["name", "Justice"], ["updated_at", "2015-06-16 06:13:05.618005"]]
966
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.618880"], ["email", "emerson.reichel@tremblaymoore.org"], ["name", "Xzavier"], ["updated_at", "2015-06-16 06:13:05.618880"]]
967
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.619761"], ["email", "louisa_king@schulistmacgyver.net"], ["name", "Emmet"], ["updated_at", "2015-06-16 06:13:05.619761"]]
968
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.620630"], ["email", "kade_lemke@jast.com"], ["name", "Jadyn"], ["updated_at", "2015-06-16 06:13:05.620630"]]
969
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.621495"], ["email", "nakia@howedaniel.net"], ["name", "Bernardo"], ["updated_at", "2015-06-16 06:13:05.621495"]]
970
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.622411"], ["email", "loy.bernhard@luettgencollier.org"], ["name", "Sister"], ["updated_at", "2015-06-16 06:13:05.622411"]]
971
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.623296"], ["email", "evalyn_gutkowski@emard.com"], ["name", "Icie"], ["updated_at", "2015-06-16 06:13:05.623296"]]
972
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.624172"], ["email", "bobbie.considine@legros.name"], ["name", "Jacey"], ["updated_at", "2015-06-16 06:13:05.624172"]]
973
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.625074"], ["email", "maegan.collins@ratke.name"], ["name", "Queenie"], ["updated_at", "2015-06-16 06:13:05.625074"]]
974
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.626090"], ["email", "ramiro@wisozkprohaska.com"], ["name", "Milton"], ["updated_at", "2015-06-16 06:13:05.626090"]]
975
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.626997"], ["email", "flavie@hackett.com"], ["name", "Hollis"], ["updated_at", "2015-06-16 06:13:05.626997"]]
976
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.628104"], ["email", "jamal.marquardt@muller.info"], ["name", "Eda"], ["updated_at", "2015-06-16 06:13:05.628104"]]
977
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.629650"], ["email", "octavia.lesch@doylebauch.biz"], ["name", "Daisy"], ["updated_at", "2015-06-16 06:13:05.629650"]]
978
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.630668"], ["email", "katrina_weimann@powlowskischinner.name"], ["name", "Tyra"], ["updated_at", "2015-06-16 06:13:05.630668"]]
979
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.631625"], ["email", "dax.kihn@gibson.biz"], ["name", "Shad"], ["updated_at", "2015-06-16 06:13:05.631625"]]
980
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.632525"], ["email", "christiana@kozeyhegmann.info"], ["name", "Joel"], ["updated_at", "2015-06-16 06:13:05.632525"]]
981
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.633513"], ["email", "brett.kovacek@rohan.name"], ["name", "German"], ["updated_at", "2015-06-16 06:13:05.633513"]]
982
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.634396"], ["email", "deja.rempel@bins.name"], ["name", "Halie"], ["updated_at", "2015-06-16 06:13:05.634396"]]
983
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.635276"], ["email", "shany_armstrong@welch.com"], ["name", "Else"], ["updated_at", "2015-06-16 06:13:05.635276"]]
984
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.636143"], ["email", "darion_lockman@howell.info"], ["name", "Rosie"], ["updated_at", "2015-06-16 06:13:05.636143"]]
985
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.637023"], ["email", "vicente@windler.com"], ["name", "Faustino"], ["updated_at", "2015-06-16 06:13:05.637023"]]
986
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.637899"], ["email", "luther_gaylord@framimarquardt.com"], ["name", "Cary"], ["updated_at", "2015-06-16 06:13:05.637899"]]
987
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.638768"], ["email", "kathleen@kerluke.com"], ["name", "Laisha"], ["updated_at", "2015-06-16 06:13:05.638768"]]
988
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.639637"], ["email", "catalina.herman@pricehaag.info"], ["name", "Carlos"], ["updated_at", "2015-06-16 06:13:05.639637"]]
989
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.640528"], ["email", "braeden.vonrueden@schimmel.name"], ["name", "Jeramy"], ["updated_at", "2015-06-16 06:13:05.640528"]]
990
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.641441"], ["email", "gerard.barton@johnsblick.name"], ["name", "Mollie"], ["updated_at", "2015-06-16 06:13:05.641441"]]
991
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.642343"], ["email", "viva_schimmel@rogahn.info"], ["name", "Verlie"], ["updated_at", "2015-06-16 06:13:05.642343"]]
992
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.643208"], ["email", "jarret.zieme@rogahn.name"], ["name", "Kenyon"], ["updated_at", "2015-06-16 06:13:05.643208"]]
993
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.644076"], ["email", "aliyah_schaefer@tremblay.info"], ["name", "Uriah"], ["updated_at", "2015-06-16 06:13:05.644076"]]
994
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.644918"], ["email", "buddy@feest.net"], ["name", "Caden"], ["updated_at", "2015-06-16 06:13:05.644918"]]
995
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.645811"], ["email", "miller@kilback.net"], ["name", "Antonia"], ["updated_at", "2015-06-16 06:13:05.645811"]]
996
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.646711"], ["email", "wava@green.org"], ["name", "Estelle"], ["updated_at", "2015-06-16 06:13:05.646711"]]
997
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.647654"], ["email", "thea.kilback@dare.net"], ["name", "Sarina"], ["updated_at", "2015-06-16 06:13:05.647654"]]
998
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.648589"], ["email", "bart_mann@gibsonwilliamson.com"], ["name", "Jennie"], ["updated_at", "2015-06-16 06:13:05.648589"]]
999
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.649477"], ["email", "otto_kutch@greenholtboyle.info"], ["name", "Rosanna"], ["updated_at", "2015-06-16 06:13:05.649477"]]
1000
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.650329"], ["email", "nikki@witting.name"], ["name", "Adele"], ["updated_at", "2015-06-16 06:13:05.650329"]]
1001
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.651328"], ["email", "leonel.torphy@emmerich.biz"], ["name", "Armand"], ["updated_at", "2015-06-16 06:13:05.651328"]]
1002
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.652210"], ["email", "elias.leffler@jacobsjacobi.info"], ["name", "Chanelle"], ["updated_at", "2015-06-16 06:13:05.652210"]]
1003
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1004
+  (0.1ms) ROLLBACK
1005
+  (0.1ms) BEGIN
1006
+ --------------------------------------
1007
+ BobTest: test_building_single_instance
1008
+ --------------------------------------
1009
+  (0.1ms) SAVEPOINT active_record_1
1010
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:05.655033"], ["email", "damien.waters@kunzeturcotte.biz"], ["name", "Thaddeus"], ["updated_at", "2015-06-16 06:13:05.655033"]]
1011
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1012
+  (0.1ms) ROLLBACK
1013
+  (0.1ms) BEGIN
1014
+ -------------------------------------------
1015
+ BobTest: test_building_unpersisted_instance
1016
+ -------------------------------------------
1017
+  (0.1ms) SAVEPOINT active_record_1
1018
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1019
+  (0.1ms) ROLLBACK
1020
+  (0.1ms) BEGIN
1021
+ -------------------------------------------
1022
+ BobTest: test_passing_arguments_to_builders
1023
+ -------------------------------------------
1024
+  (0.1ms) SAVEPOINT active_record_1
1025
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1026
+  (0.1ms) ROLLBACK
1027
+ ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
1028
+  (0.3ms) BEGIN
1029
+ -------------------------------------------------
1030
+ BobTest: test_building_many_unpersisted_instances
1031
+ -------------------------------------------------
1032
+  (0.3ms) SAVEPOINT active_record_1
1033
+  (0.4ms) RELEASE SAVEPOINT active_record_1
1034
+  (0.3ms) ROLLBACK
1035
+  (0.2ms) BEGIN
1036
+ -------------------------------------------
1037
+ BobTest: test_building_many_valid_instances
1038
+ -------------------------------------------
1039
+  (0.2ms) SAVEPOINT active_record_1
1040
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.601442"], ["email", "tara@hegmannritchie.biz"], ["name", "Gilda"], ["updated_at", "2015-06-16 06:13:26.601442"]]
1041
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.605365"], ["email", "leila@williamson.net"], ["name", "Kelvin"], ["updated_at", "2015-06-16 06:13:26.605365"]]
1042
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.606639"], ["email", "hazel.braun@white.org"], ["name", "Eli"], ["updated_at", "2015-06-16 06:13:26.606639"]]
1043
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.607840"], ["email", "michele@langworth.info"], ["name", "Gunner"], ["updated_at", "2015-06-16 06:13:26.607840"]]
1044
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.609019"], ["email", "murray@cummingshoppe.org"], ["name", "Jeremy"], ["updated_at", "2015-06-16 06:13:26.609019"]]
1045
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.610273"], ["email", "jeramie.johnston@kovacek.name"], ["name", "Dessie"], ["updated_at", "2015-06-16 06:13:26.610273"]]
1046
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.611519"], ["email", "gregg@casper.name"], ["name", "Houston"], ["updated_at", "2015-06-16 06:13:26.611519"]]
1047
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.612564"], ["email", "derick@ziemann.biz"], ["name", "Daron"], ["updated_at", "2015-06-16 06:13:26.612564"]]
1048
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.613632"], ["email", "brendon@koch.net"], ["name", "Jaden"], ["updated_at", "2015-06-16 06:13:26.613632"]]
1049
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.614838"], ["email", "ralph_balistreri@windler.org"], ["name", "Spencer"], ["updated_at", "2015-06-16 06:13:26.614838"]]
1050
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.615980"], ["email", "jack.hilll@pfeffer.info"], ["name", "Roscoe"], ["updated_at", "2015-06-16 06:13:26.615980"]]
1051
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.617142"], ["email", "jody_littel@leschberge.name"], ["name", "Felipa"], ["updated_at", "2015-06-16 06:13:26.617142"]]
1052
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.618314"], ["email", "christian.bergnaum@terry.org"], ["name", "Tyrell"], ["updated_at", "2015-06-16 06:13:26.618314"]]
1053
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.619457"], ["email", "quincy.weber@langworthharvey.org"], ["name", "Maximillian"], ["updated_at", "2015-06-16 06:13:26.619457"]]
1054
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.620601"], ["email", "carroll.macgyver@crookshaag.com"], ["name", "Vergie"], ["updated_at", "2015-06-16 06:13:26.620601"]]
1055
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.621760"], ["email", "rodrigo@goyette.net"], ["name", "Art"], ["updated_at", "2015-06-16 06:13:26.621760"]]
1056
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.622926"], ["email", "lucile.stehr@wunschhand.info"], ["name", "Korbin"], ["updated_at", "2015-06-16 06:13:26.622926"]]
1057
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.624062"], ["email", "jarrod.mills@batz.name"], ["name", "Yasmine"], ["updated_at", "2015-06-16 06:13:26.624062"]]
1058
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.625206"], ["email", "kyler@weinat.name"], ["name", "Maeve"], ["updated_at", "2015-06-16 06:13:26.625206"]]
1059
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.626374"], ["email", "desiree.rolfson@buckridgeframi.org"], ["name", "Jody"], ["updated_at", "2015-06-16 06:13:26.626374"]]
1060
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.627613"], ["email", "alia_kuhlman@hane.name"], ["name", "Velva"], ["updated_at", "2015-06-16 06:13:26.627613"]]
1061
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.628924"], ["email", "felicita@lednermraz.net"], ["name", "Vernie"], ["updated_at", "2015-06-16 06:13:26.628924"]]
1062
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.630050"], ["email", "gabe.johnston@emmerich.biz"], ["name", "Jillian"], ["updated_at", "2015-06-16 06:13:26.630050"]]
1063
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.630973"], ["email", "myrtis@schuster.biz"], ["name", "Amari"], ["updated_at", "2015-06-16 06:13:26.630973"]]
1064
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.631857"], ["email", "gayle_kris@cronin.com"], ["name", "Joel"], ["updated_at", "2015-06-16 06:13:26.631857"]]
1065
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.632745"], ["email", "owen.goodwin@lubowitzsanford.org"], ["name", "Dillon"], ["updated_at", "2015-06-16 06:13:26.632745"]]
1066
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.633638"], ["email", "cortez_durgan@stammupton.org"], ["name", "Janae"], ["updated_at", "2015-06-16 06:13:26.633638"]]
1067
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.634495"], ["email", "lilyan@prosacco.com"], ["name", "Jenifer"], ["updated_at", "2015-06-16 06:13:26.634495"]]
1068
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.635356"], ["email", "stephanie@kunde.name"], ["name", "Abbie"], ["updated_at", "2015-06-16 06:13:26.635356"]]
1069
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.636183"], ["email", "kaia@stoltenbergward.info"], ["name", "Jermain"], ["updated_at", "2015-06-16 06:13:26.636183"]]
1070
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.637026"], ["email", "asha.schaefer@walkerkuphal.org"], ["name", "Isidro"], ["updated_at", "2015-06-16 06:13:26.637026"]]
1071
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.637926"], ["email", "hertha.weinat@paucekward.com"], ["name", "Jerel"], ["updated_at", "2015-06-16 06:13:26.637926"]]
1072
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.638775"], ["email", "frankie.kohler@zulauftromp.biz"], ["name", "Brendan"], ["updated_at", "2015-06-16 06:13:26.638775"]]
1073
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.639701"], ["email", "kylie_harber@kshlerinnader.org"], ["name", "Hardy"], ["updated_at", "2015-06-16 06:13:26.639701"]]
1074
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.640525"], ["email", "anastasia@goldner.com"], ["name", "Jarrett"], ["updated_at", "2015-06-16 06:13:26.640525"]]
1075
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.641419"], ["email", "cole.bauch@gaylordlarkin.info"], ["name", "Josephine"], ["updated_at", "2015-06-16 06:13:26.641419"]]
1076
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.642273"], ["email", "howard_osinski@gaylordsauer.com"], ["name", "Cristopher"], ["updated_at", "2015-06-16 06:13:26.642273"]]
1077
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.643174"], ["email", "orville@casper.com"], ["name", "Kennedi"], ["updated_at", "2015-06-16 06:13:26.643174"]]
1078
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.644023"], ["email", "jarrod@feest.org"], ["name", "Andre"], ["updated_at", "2015-06-16 06:13:26.644023"]]
1079
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.644869"], ["email", "matilda@wyman.net"], ["name", "Deon"], ["updated_at", "2015-06-16 06:13:26.644869"]]
1080
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.645770"], ["email", "dion@thompson.info"], ["name", "Antonietta"], ["updated_at", "2015-06-16 06:13:26.645770"]]
1081
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.646610"], ["email", "jackson_conn@kulas.com"], ["name", "Deon"], ["updated_at", "2015-06-16 06:13:26.646610"]]
1082
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.647441"], ["email", "kenton@lehnerwelch.net"], ["name", "Destini"], ["updated_at", "2015-06-16 06:13:26.647441"]]
1083
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.648321"], ["email", "jalon_ritchie@leuschkereynolds.info"], ["name", "Kiana"], ["updated_at", "2015-06-16 06:13:26.648321"]]
1084
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.649273"], ["email", "annette@grimes.net"], ["name", "Frieda"], ["updated_at", "2015-06-16 06:13:26.649273"]]
1085
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.650181"], ["email", "kaylah@kerlukekuhlman.org"], ["name", "Bulah"], ["updated_at", "2015-06-16 06:13:26.650181"]]
1086
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.651068"], ["email", "kaden@croninmuller.biz"], ["name", "Beryl"], ["updated_at", "2015-06-16 06:13:26.651068"]]
1087
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.651970"], ["email", "alvera.jacobs@reichel.com"], ["name", "Adah"], ["updated_at", "2015-06-16 06:13:26.651970"]]
1088
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.652890"], ["email", "reie_schoen@ruel.com"], ["name", "Maximus"], ["updated_at", "2015-06-16 06:13:26.652890"]]
1089
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.653819"], ["email", "sid_ullrich@greenfelder.biz"], ["name", "Judy"], ["updated_at", "2015-06-16 06:13:26.653819"]]
1090
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1091
+  (0.1ms) ROLLBACK
1092
+  (0.1ms) BEGIN
1093
+ --------------------------------------
1094
+ BobTest: test_building_single_instance
1095
+ --------------------------------------
1096
+  (0.2ms) SAVEPOINT active_record_1
1097
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:13:26.656924"], ["email", "lilla.howe@kshlerinluettgen.info"], ["name", "Kaylee"], ["updated_at", "2015-06-16 06:13:26.656924"]]
1098
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1099
+  (0.2ms) ROLLBACK
1100
+  (0.1ms) BEGIN
1101
+ -------------------------------------------
1102
+ BobTest: test_building_unpersisted_instance
1103
+ -------------------------------------------
1104
+  (0.1ms) SAVEPOINT active_record_1
1105
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1106
+  (0.1ms) ROLLBACK
1107
+  (0.1ms) BEGIN
1108
+ -------------------------------------------
1109
+ BobTest: test_passing_arguments_to_builders
1110
+ -------------------------------------------
1111
+  (0.1ms) SAVEPOINT active_record_1
1112
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1113
+  (0.7ms) ROLLBACK
1114
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
1115
+  (0.3ms) BEGIN
1116
+ -------------------------------------------------
1117
+ BobTest: test_building_many_unpersisted_instances
1118
+ -------------------------------------------------
1119
+  (0.2ms) SAVEPOINT active_record_1
1120
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1121
+  (0.2ms) ROLLBACK
1122
+  (0.1ms) BEGIN
1123
+ -------------------------------------------
1124
+ BobTest: test_building_many_valid_instances
1125
+ -------------------------------------------
1126
+  (0.1ms) SAVEPOINT active_record_1
1127
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.537870"], ["email", "mekhi@schneider.net"], ["name", "Rupert"], ["updated_at", "2015-06-16 06:14:18.537870"]]
1128
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.541599"], ["email", "glenda@cummerata.info"], ["name", "Wyatt"], ["updated_at", "2015-06-16 06:14:18.541599"]]
1129
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.542591"], ["email", "paula.breitenberg@satterfieldblick.com"], ["name", "Jamie"], ["updated_at", "2015-06-16 06:14:18.542591"]]
1130
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.543487"], ["email", "libby@graham.biz"], ["name", "Caterina"], ["updated_at", "2015-06-16 06:14:18.543487"]]
1131
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.544392"], ["email", "paris.monahan@mayert.info"], ["name", "Petra"], ["updated_at", "2015-06-16 06:14:18.544392"]]
1132
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.545281"], ["email", "lance.herman@gloverfahey.info"], ["name", "Bert"], ["updated_at", "2015-06-16 06:14:18.545281"]]
1133
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.546154"], ["email", "doyle@luettgenboyle.org"], ["name", "Gardner"], ["updated_at", "2015-06-16 06:14:18.546154"]]
1134
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.547102"], ["email", "katharina.macejkovic@kulas.com"], ["name", "Madelynn"], ["updated_at", "2015-06-16 06:14:18.547102"]]
1135
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.548119"], ["email", "frederik@ledner.biz"], ["name", "Kaley"], ["updated_at", "2015-06-16 06:14:18.548119"]]
1136
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.549072"], ["email", "eileen.rath@crooks.net"], ["name", "Clement"], ["updated_at", "2015-06-16 06:14:18.549072"]]
1137
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.549999"], ["email", "muhammad.vandervort@gloverbayer.info"], ["name", "Trystan"], ["updated_at", "2015-06-16 06:14:18.549999"]]
1138
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.550891"], ["email", "reta@orn.biz"], ["name", "Bradly"], ["updated_at", "2015-06-16 06:14:18.550891"]]
1139
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.551797"], ["email", "june@damorequitzon.com"], ["name", "Ransom"], ["updated_at", "2015-06-16 06:14:18.551797"]]
1140
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.552696"], ["email", "william.corwin@dickens.name"], ["name", "Enoch"], ["updated_at", "2015-06-16 06:14:18.552696"]]
1141
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.553596"], ["email", "valentina.bartell@lemkewehner.net"], ["name", "Heaven"], ["updated_at", "2015-06-16 06:14:18.553596"]]
1142
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.554432"], ["email", "lizzie@rueckererdman.name"], ["name", "Emmanuelle"], ["updated_at", "2015-06-16 06:14:18.554432"]]
1143
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.555292"], ["email", "devan.paucek@gulgowski.biz"], ["name", "Cleveland"], ["updated_at", "2015-06-16 06:14:18.555292"]]
1144
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.556155"], ["email", "river_lowe@runolfon.name"], ["name", "Brando"], ["updated_at", "2015-06-16 06:14:18.556155"]]
1145
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.557057"], ["email", "leila_schuppe@douglas.name"], ["name", "Donald"], ["updated_at", "2015-06-16 06:14:18.557057"]]
1146
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.557947"], ["email", "talon@trompkreiger.com"], ["name", "Bud"], ["updated_at", "2015-06-16 06:14:18.557947"]]
1147
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.558808"], ["email", "kallie@wintheiser.org"], ["name", "Aurelie"], ["updated_at", "2015-06-16 06:14:18.558808"]]
1148
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.559717"], ["email", "korey.okon@zulauf.info"], ["name", "Howard"], ["updated_at", "2015-06-16 06:14:18.559717"]]
1149
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.560559"], ["email", "linda@wildermanullrich.org"], ["name", "Jeanne"], ["updated_at", "2015-06-16 06:14:18.560559"]]
1150
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.561424"], ["email", "breana@legros.name"], ["name", "Izabella"], ["updated_at", "2015-06-16 06:14:18.561424"]]
1151
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.562342"], ["email", "landen_brekke@okuneva.biz"], ["name", "Eryn"], ["updated_at", "2015-06-16 06:14:18.562342"]]
1152
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.563214"], ["email", "layla@howellreichert.name"], ["name", "Anne"], ["updated_at", "2015-06-16 06:14:18.563214"]]
1153
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.564158"], ["email", "gus@mraz.org"], ["name", "Damion"], ["updated_at", "2015-06-16 06:14:18.564158"]]
1154
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.565509"], ["email", "gerhard_hilll@bechtelarschmidt.net"], ["name", "Kristian"], ["updated_at", "2015-06-16 06:14:18.565509"]]
1155
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.566678"], ["email", "marlon@christiansen.com"], ["name", "Marco"], ["updated_at", "2015-06-16 06:14:18.566678"]]
1156
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.567578"], ["email", "devin@bahringer.net"], ["name", "Jaleel"], ["updated_at", "2015-06-16 06:14:18.567578"]]
1157
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.568518"], ["email", "prince.quitzon@schusterbecker.name"], ["name", "Cydney"], ["updated_at", "2015-06-16 06:14:18.568518"]]
1158
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.569433"], ["email", "javon@steuber.com"], ["name", "Cary"], ["updated_at", "2015-06-16 06:14:18.569433"]]
1159
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.570350"], ["email", "meagan@kubhalvorson.biz"], ["name", "Sophie"], ["updated_at", "2015-06-16 06:14:18.570350"]]
1160
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.571217"], ["email", "julius@turcottebeer.info"], ["name", "Freeman"], ["updated_at", "2015-06-16 06:14:18.571217"]]
1161
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.572146"], ["email", "kianna.morar@nikolaus.name"], ["name", "Eric"], ["updated_at", "2015-06-16 06:14:18.572146"]]
1162
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.573057"], ["email", "cortney.auer@predovichackett.net"], ["name", "Kelsi"], ["updated_at", "2015-06-16 06:14:18.573057"]]
1163
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.573901"], ["email", "imani@okuneva.name"], ["name", "Otis"], ["updated_at", "2015-06-16 06:14:18.573901"]]
1164
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.574770"], ["email", "jada@ruel.com"], ["name", "Asha"], ["updated_at", "2015-06-16 06:14:18.574770"]]
1165
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.575698"], ["email", "hugh@hackett.name"], ["name", "Jennyfer"], ["updated_at", "2015-06-16 06:14:18.575698"]]
1166
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.576552"], ["email", "francis.schroeder@tillman.com"], ["name", "Lillian"], ["updated_at", "2015-06-16 06:14:18.576552"]]
1167
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.577425"], ["email", "manuela@hoppe.biz"], ["name", "Braxton"], ["updated_at", "2015-06-16 06:14:18.577425"]]
1168
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.578291"], ["email", "max@swift.com"], ["name", "Kasandra"], ["updated_at", "2015-06-16 06:14:18.578291"]]
1169
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.579167"], ["email", "cody@metz.com"], ["name", "Erling"], ["updated_at", "2015-06-16 06:14:18.579167"]]
1170
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.580071"], ["email", "domenic_hegmann@jaskolski.name"], ["name", "Toney"], ["updated_at", "2015-06-16 06:14:18.580071"]]
1171
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.580958"], ["email", "marlon_kirlin@little.net"], ["name", "Winona"], ["updated_at", "2015-06-16 06:14:18.580958"]]
1172
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.581850"], ["email", "shanna@schuster.net"], ["name", "Jaquelin"], ["updated_at", "2015-06-16 06:14:18.581850"]]
1173
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.582731"], ["email", "levi_johnston@thompsonkovacek.name"], ["name", "Kareem"], ["updated_at", "2015-06-16 06:14:18.582731"]]
1174
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.583610"], ["email", "hildegard_ruecker@wintheiser.biz"], ["name", "Schuyler"], ["updated_at", "2015-06-16 06:14:18.583610"]]
1175
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.584494"], ["email", "fern@oreilly.org"], ["name", "Norval"], ["updated_at", "2015-06-16 06:14:18.584494"]]
1176
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.585361"], ["email", "leone@larson.info"], ["name", "Otha"], ["updated_at", "2015-06-16 06:14:18.585361"]]
1177
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1178
+  (0.1ms) ROLLBACK
1179
+  (0.1ms) BEGIN
1180
+ --------------------------------------
1181
+ BobTest: test_building_single_instance
1182
+ --------------------------------------
1183
+  (0.1ms) SAVEPOINT active_record_1
1184
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:18.588251"], ["email", "johnathon@johnston.info"], ["name", "Dereck"], ["updated_at", "2015-06-16 06:14:18.588251"]]
1185
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1186
+  (0.1ms) ROLLBACK
1187
+  (0.1ms) BEGIN
1188
+ -------------------------------------------
1189
+ BobTest: test_building_unpersisted_instance
1190
+ -------------------------------------------
1191
+  (0.1ms) SAVEPOINT active_record_1
1192
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1193
+  (0.1ms) ROLLBACK
1194
+  (0.1ms) BEGIN
1195
+ -------------------------------------------
1196
+ BobTest: test_passing_arguments_to_builders
1197
+ -------------------------------------------
1198
+  (0.1ms) SAVEPOINT active_record_1
1199
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1200
+  (0.6ms) ROLLBACK
1201
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1202
+  (0.2ms) BEGIN
1203
+ -------------------------------------------------
1204
+ BobTest: test_building_many_unpersisted_instances
1205
+ -------------------------------------------------
1206
+  (0.2ms) SAVEPOINT active_record_1
1207
+  (0.4ms) RELEASE SAVEPOINT active_record_1
1208
+  (0.3ms) ROLLBACK
1209
+  (0.3ms) BEGIN
1210
+ -------------------------------------------
1211
+ BobTest: test_building_many_valid_instances
1212
+ -------------------------------------------
1213
+  (0.2ms) SAVEPOINT active_record_1
1214
+ SQL (0.8ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.575035"], ["email", "maximilian@wuckerthamill.name"], ["name", "Jordi"], ["updated_at", "2015-06-16 06:14:43.575035"]]
1215
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.579144"], ["email", "ashtyn@hills.name"], ["name", "Isidro"], ["updated_at", "2015-06-16 06:14:43.579144"]]
1216
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.580405"], ["email", "keshawn_tillman@satterfield.info"], ["name", "Claudine"], ["updated_at", "2015-06-16 06:14:43.580405"]]
1217
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.581613"], ["email", "raegan@stammcummerata.com"], ["name", "Yvonne"], ["updated_at", "2015-06-16 06:14:43.581613"]]
1218
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.582838"], ["email", "jules@leannonlindgren.name"], ["name", "Sylvan"], ["updated_at", "2015-06-16 06:14:43.582838"]]
1219
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.584157"], ["email", "edmund.shanahan@konopelski.name"], ["name", "Mertie"], ["updated_at", "2015-06-16 06:14:43.584157"]]
1220
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.585636"], ["email", "wyman_schuster@kohler.org"], ["name", "Julia"], ["updated_at", "2015-06-16 06:14:43.585636"]]
1221
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.586862"], ["email", "delphine.herzog@rosenbaum.info"], ["name", "Johnnie"], ["updated_at", "2015-06-16 06:14:43.586862"]]
1222
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.588025"], ["email", "mavis.herman@colelynch.name"], ["name", "Lee"], ["updated_at", "2015-06-16 06:14:43.588025"]]
1223
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.589190"], ["email", "joan@kuhic.biz"], ["name", "Hulda"], ["updated_at", "2015-06-16 06:14:43.589190"]]
1224
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.590282"], ["email", "helene@pfefferdickens.org"], ["name", "Cary"], ["updated_at", "2015-06-16 06:14:43.590282"]]
1225
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.591341"], ["email", "vanea@cremin.com"], ["name", "Hellen"], ["updated_at", "2015-06-16 06:14:43.591341"]]
1226
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.592436"], ["email", "birdie_lakin@skiles.net"], ["name", "Dalton"], ["updated_at", "2015-06-16 06:14:43.592436"]]
1227
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.593532"], ["email", "nona@padberghammes.net"], ["name", "Lonzo"], ["updated_at", "2015-06-16 06:14:43.593532"]]
1228
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.594625"], ["email", "chad_swift@ondricka.name"], ["name", "Jazmyn"], ["updated_at", "2015-06-16 06:14:43.594625"]]
1229
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.595617"], ["email", "dock_leannon@beahancain.name"], ["name", "Chance"], ["updated_at", "2015-06-16 06:14:43.595617"]]
1230
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.596681"], ["email", "austyn@fahey.net"], ["name", "Kristin"], ["updated_at", "2015-06-16 06:14:43.596681"]]
1231
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.597748"], ["email", "maegan.hane@heathcote.org"], ["name", "Sam"], ["updated_at", "2015-06-16 06:14:43.597748"]]
1232
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.598810"], ["email", "wilton.oconner@robel.name"], ["name", "Izabella"], ["updated_at", "2015-06-16 06:14:43.598810"]]
1233
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.599837"], ["email", "koby@upton.net"], ["name", "Tommie"], ["updated_at", "2015-06-16 06:14:43.599837"]]
1234
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.600968"], ["email", "tatyana@schneider.name"], ["name", "Murl"], ["updated_at", "2015-06-16 06:14:43.600968"]]
1235
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.602179"], ["email", "rosella.ledner@effertz.name"], ["name", "Reggie"], ["updated_at", "2015-06-16 06:14:43.602179"]]
1236
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.603673"], ["email", "dock@erdmanabbott.name"], ["name", "Marguerite"], ["updated_at", "2015-06-16 06:14:43.603673"]]
1237
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.604659"], ["email", "shyann_fahey@reilly.net"], ["name", "Kyla"], ["updated_at", "2015-06-16 06:14:43.604659"]]
1238
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.605647"], ["email", "zackary_batz@hahn.biz"], ["name", "Jodie"], ["updated_at", "2015-06-16 06:14:43.605647"]]
1239
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.606600"], ["email", "morris@bartell.name"], ["name", "Jonatan"], ["updated_at", "2015-06-16 06:14:43.606600"]]
1240
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.607488"], ["email", "buddy@hansen.info"], ["name", "Oswaldo"], ["updated_at", "2015-06-16 06:14:43.607488"]]
1241
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.608394"], ["email", "harley_emard@dooleykuhn.net"], ["name", "Cecile"], ["updated_at", "2015-06-16 06:14:43.608394"]]
1242
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.609289"], ["email", "cecil@jerde.org"], ["name", "Dedric"], ["updated_at", "2015-06-16 06:14:43.609289"]]
1243
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.610219"], ["email", "iva.kling@white.net"], ["name", "Cary"], ["updated_at", "2015-06-16 06:14:43.610219"]]
1244
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.611125"], ["email", "pearline_funk@ondrickaheidenreich.com"], ["name", "Omari"], ["updated_at", "2015-06-16 06:14:43.611125"]]
1245
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.612038"], ["email", "deborah.hyatt@farrell.info"], ["name", "Omari"], ["updated_at", "2015-06-16 06:14:43.612038"]]
1246
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.612977"], ["email", "bailee_wisozk@satterfield.com"], ["name", "Dayana"], ["updated_at", "2015-06-16 06:14:43.612977"]]
1247
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.613885"], ["email", "deonte.gusikowski@donnelly.org"], ["name", "Muhammad"], ["updated_at", "2015-06-16 06:14:43.613885"]]
1248
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.614914"], ["email", "zachery@dach.name"], ["name", "Stevie"], ["updated_at", "2015-06-16 06:14:43.614914"]]
1249
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.615822"], ["email", "theo@boehmbeier.info"], ["name", "Micaela"], ["updated_at", "2015-06-16 06:14:43.615822"]]
1250
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.616706"], ["email", "rachael@beatty.info"], ["name", "Josue"], ["updated_at", "2015-06-16 06:14:43.616706"]]
1251
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.617626"], ["email", "stuart_reichel@barrowsherzog.com"], ["name", "Guillermo"], ["updated_at", "2015-06-16 06:14:43.617626"]]
1252
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.618550"], ["email", "maudie.lehner@moore.org"], ["name", "Elody"], ["updated_at", "2015-06-16 06:14:43.618550"]]
1253
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.619435"], ["email", "napoleon@fisherstracke.com"], ["name", "Haleigh"], ["updated_at", "2015-06-16 06:14:43.619435"]]
1254
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.620363"], ["email", "je@gaylord.biz"], ["name", "Jammie"], ["updated_at", "2015-06-16 06:14:43.620363"]]
1255
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.621311"], ["email", "ottilie.bruen@bayer.net"], ["name", "Chandler"], ["updated_at", "2015-06-16 06:14:43.621311"]]
1256
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.622210"], ["email", "ron@gleason.name"], ["name", "Wanda"], ["updated_at", "2015-06-16 06:14:43.622210"]]
1257
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.623111"], ["email", "devante_watsica@grimesbednar.net"], ["name", "Julien"], ["updated_at", "2015-06-16 06:14:43.623111"]]
1258
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.623996"], ["email", "maya@lockmancollins.info"], ["name", "Cristopher"], ["updated_at", "2015-06-16 06:14:43.623996"]]
1259
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.625035"], ["email", "dortha@quitzon.name"], ["name", "Peggie"], ["updated_at", "2015-06-16 06:14:43.625035"]]
1260
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.626086"], ["email", "arturo.hahn@hodkiewiczheidenreich.info"], ["name", "Jocelyn"], ["updated_at", "2015-06-16 06:14:43.626086"]]
1261
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.627185"], ["email", "randall.toy@tillman.name"], ["name", "Darwin"], ["updated_at", "2015-06-16 06:14:43.627185"]]
1262
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.628246"], ["email", "sandrine@kertzmann.biz"], ["name", "Roberto"], ["updated_at", "2015-06-16 06:14:43.628246"]]
1263
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.629157"], ["email", "lauren_quitzon@dooley.name"], ["name", "Evelyn"], ["updated_at", "2015-06-16 06:14:43.629157"]]
1264
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1265
+  (0.1ms) ROLLBACK
1266
+  (0.1ms) BEGIN
1267
+ --------------------------------------
1268
+ BobTest: test_building_single_instance
1269
+ --------------------------------------
1270
+  (0.1ms) SAVEPOINT active_record_1
1271
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:14:43.632319"], ["email", "bianka.casper@boyle.name"], ["name", "Payton"], ["updated_at", "2015-06-16 06:14:43.632319"]]
1272
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1273
+  (0.1ms) ROLLBACK
1274
+  (0.1ms) BEGIN
1275
+ -------------------------------------------
1276
+ BobTest: test_building_unpersisted_instance
1277
+ -------------------------------------------
1278
+  (0.1ms) SAVEPOINT active_record_1
1279
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1280
+  (0.1ms) ROLLBACK
1281
+  (0.1ms) BEGIN
1282
+ -------------------------------------------
1283
+ BobTest: test_passing_arguments_to_builders
1284
+ -------------------------------------------
1285
+  (0.1ms) SAVEPOINT active_record_1
1286
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1287
+  (0.6ms) ROLLBACK
1288
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1289
+  (0.2ms) BEGIN
1290
+ -------------------------------------------------
1291
+ BobTest: test_building_many_unpersisted_instances
1292
+ -------------------------------------------------
1293
+  (0.1ms) SAVEPOINT active_record_1
1294
+  (0.4ms) RELEASE SAVEPOINT active_record_1
1295
+  (0.3ms) ROLLBACK
1296
+  (0.3ms) BEGIN
1297
+ -------------------------------------------
1298
+ BobTest: test_building_many_valid_instances
1299
+ -------------------------------------------
1300
+  (0.2ms) SAVEPOINT active_record_1
1301
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.610327"], ["email", "stephan@rempel.info"], ["name", "Josephine"], ["updated_at", "2015-06-16 06:15:37.610327"]]
1302
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.614366"], ["email", "adella_larkin@runolfon.net"], ["name", "Susanna"], ["updated_at", "2015-06-16 06:15:37.614366"]]
1303
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.615626"], ["email", "juliana_pacocha@gibson.info"], ["name", "Grace"], ["updated_at", "2015-06-16 06:15:37.615626"]]
1304
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.616770"], ["email", "kamille@wolff.name"], ["name", "Derick"], ["updated_at", "2015-06-16 06:15:37.616770"]]
1305
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.617938"], ["email", "gay_bartoletti@kleinpacocha.info"], ["name", "Orie"], ["updated_at", "2015-06-16 06:15:37.617938"]]
1306
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.619109"], ["email", "caesar@fisher.org"], ["name", "Walton"], ["updated_at", "2015-06-16 06:15:37.619109"]]
1307
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.620319"], ["email", "jewel.jaskolski@maggiokiehn.org"], ["name", "Cassie"], ["updated_at", "2015-06-16 06:15:37.620319"]]
1308
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.621496"], ["email", "kendall_herzog@kutchkonopelski.org"], ["name", "Vada"], ["updated_at", "2015-06-16 06:15:37.621496"]]
1309
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.622626"], ["email", "cory@hoegerschuppe.name"], ["name", "Shad"], ["updated_at", "2015-06-16 06:15:37.622626"]]
1310
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.623742"], ["email", "buford@grant.org"], ["name", "Nayeli"], ["updated_at", "2015-06-16 06:15:37.623742"]]
1311
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.624930"], ["email", "winnifred_hartmann@bartoletti.com"], ["name", "Kimberly"], ["updated_at", "2015-06-16 06:15:37.624930"]]
1312
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.625912"], ["email", "kameron@schimmel.info"], ["name", "Sydni"], ["updated_at", "2015-06-16 06:15:37.625912"]]
1313
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.626922"], ["email", "tracy_fay@wunsch.info"], ["name", "Hanna"], ["updated_at", "2015-06-16 06:15:37.626922"]]
1314
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.627919"], ["email", "gene_brakus@klein.info"], ["name", "Vallie"], ["updated_at", "2015-06-16 06:15:37.627919"]]
1315
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.628899"], ["email", "layla@rodriguez.biz"], ["name", "Domenico"], ["updated_at", "2015-06-16 06:15:37.628899"]]
1316
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.630065"], ["email", "gregory@anderson.name"], ["name", "Buford"], ["updated_at", "2015-06-16 06:15:37.630065"]]
1317
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.631053"], ["email", "dasia.schmitt@ortiz.name"], ["name", "Tabitha"], ["updated_at", "2015-06-16 06:15:37.631053"]]
1318
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.632101"], ["email", "tremayne_ruel@kreiger.net"], ["name", "Cleta"], ["updated_at", "2015-06-16 06:15:37.632101"]]
1319
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.633263"], ["email", "noe_aufderhar@herman.org"], ["name", "Heber"], ["updated_at", "2015-06-16 06:15:37.633263"]]
1320
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.634416"], ["email", "porter.hoeger@mohr.name"], ["name", "Gisselle"], ["updated_at", "2015-06-16 06:15:37.634416"]]
1321
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.635503"], ["email", "beverly@graham.com"], ["name", "Hardy"], ["updated_at", "2015-06-16 06:15:37.635503"]]
1322
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.636644"], ["email", "sienna_bartoletti@tillman.info"], ["name", "Brown"], ["updated_at", "2015-06-16 06:15:37.636644"]]
1323
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.638100"], ["email", "johathan_crona@white.net"], ["name", "Jevon"], ["updated_at", "2015-06-16 06:15:37.638100"]]
1324
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.639290"], ["email", "larry@koch.info"], ["name", "Candice"], ["updated_at", "2015-06-16 06:15:37.639290"]]
1325
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.640240"], ["email", "brenna@schinnergoldner.com"], ["name", "Jayson"], ["updated_at", "2015-06-16 06:15:37.640240"]]
1326
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.641136"], ["email", "zechariah@sauerhamill.net"], ["name", "Elna"], ["updated_at", "2015-06-16 06:15:37.641136"]]
1327
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.642041"], ["email", "mattie@graham.com"], ["name", "Bernhard"], ["updated_at", "2015-06-16 06:15:37.642041"]]
1328
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.643003"], ["email", "rigoberto@block.net"], ["name", "Friedrich"], ["updated_at", "2015-06-16 06:15:37.643003"]]
1329
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.643897"], ["email", "gillian@thiel.net"], ["name", "Jaiden"], ["updated_at", "2015-06-16 06:15:37.643897"]]
1330
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.644776"], ["email", "maxine@bergnaum.info"], ["name", "Maurice"], ["updated_at", "2015-06-16 06:15:37.644776"]]
1331
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.645646"], ["email", "dorris@yostsawayn.biz"], ["name", "Clark"], ["updated_at", "2015-06-16 06:15:37.645646"]]
1332
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.646496"], ["email", "joseph@collins.info"], ["name", "Zelma"], ["updated_at", "2015-06-16 06:15:37.646496"]]
1333
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.647375"], ["email", "aida_kuhic@hamillgorczany.org"], ["name", "Travis"], ["updated_at", "2015-06-16 06:15:37.647375"]]
1334
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.648216"], ["email", "ila@beier.name"], ["name", "Lew"], ["updated_at", "2015-06-16 06:15:37.648216"]]
1335
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.649063"], ["email", "ken@beier.com"], ["name", "Toy"], ["updated_at", "2015-06-16 06:15:37.649063"]]
1336
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.649931"], ["email", "lexie_ryan@carterschultz.com"], ["name", "Triston"], ["updated_at", "2015-06-16 06:15:37.649931"]]
1337
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.650819"], ["email", "reva.eichmann@prohaska.info"], ["name", "Angel"], ["updated_at", "2015-06-16 06:15:37.650819"]]
1338
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.651684"], ["email", "molly@lakin.net"], ["name", "Amos"], ["updated_at", "2015-06-16 06:15:37.651684"]]
1339
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.652534"], ["email", "sabrina@mitchellgottlieb.org"], ["name", "Norene"], ["updated_at", "2015-06-16 06:15:37.652534"]]
1340
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.653484"], ["email", "moie@mohrgrimes.biz"], ["name", "Arielle"], ["updated_at", "2015-06-16 06:15:37.653484"]]
1341
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.654394"], ["email", "darien.price@ortizhuels.com"], ["name", "Abdiel"], ["updated_at", "2015-06-16 06:15:37.654394"]]
1342
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.655316"], ["email", "mitchell.altenwerth@ko.biz"], ["name", "Johnnie"], ["updated_at", "2015-06-16 06:15:37.655316"]]
1343
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.656221"], ["email", "dejuan@cain.biz"], ["name", "Alyson"], ["updated_at", "2015-06-16 06:15:37.656221"]]
1344
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.657112"], ["email", "lacy@sipesmills.org"], ["name", "Raphael"], ["updated_at", "2015-06-16 06:15:37.657112"]]
1345
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.657995"], ["email", "myrtie@hodkiewicz.name"], ["name", "Carmen"], ["updated_at", "2015-06-16 06:15:37.657995"]]
1346
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.658956"], ["email", "easter_aufderhar@witting.name"], ["name", "Alejandrin"], ["updated_at", "2015-06-16 06:15:37.658956"]]
1347
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.659882"], ["email", "lina_stokes@gutmann.biz"], ["name", "Alexandre"], ["updated_at", "2015-06-16 06:15:37.659882"]]
1348
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.660804"], ["email", "scotty.crona@rice.net"], ["name", "Robin"], ["updated_at", "2015-06-16 06:15:37.660804"]]
1349
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.661850"], ["email", "madisen_botsford@schneiderbuckridge.name"], ["name", "Christa"], ["updated_at", "2015-06-16 06:15:37.661850"]]
1350
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.662755"], ["email", "marianne.flatley@douglasheaney.biz"], ["name", "Kurt"], ["updated_at", "2015-06-16 06:15:37.662755"]]
1351
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1352
+  (0.2ms) ROLLBACK
1353
+  (0.2ms) BEGIN
1354
+ --------------------------------------
1355
+ BobTest: test_building_single_instance
1356
+ --------------------------------------
1357
+  (0.1ms) SAVEPOINT active_record_1
1358
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:37.665941"], ["email", "myrl@dietrich.org"], ["name", "Karl"], ["updated_at", "2015-06-16 06:15:37.665941"]]
1359
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1360
+  (0.1ms) ROLLBACK
1361
+  (0.1ms) BEGIN
1362
+ -------------------------------------------
1363
+ BobTest: test_building_unpersisted_instance
1364
+ -------------------------------------------
1365
+  (0.1ms) SAVEPOINT active_record_1
1366
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1367
+  (0.1ms) ROLLBACK
1368
+  (0.1ms) BEGIN
1369
+ -------------------------------------------
1370
+ BobTest: test_passing_arguments_to_builders
1371
+ -------------------------------------------
1372
+  (0.1ms) SAVEPOINT active_record_1
1373
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1374
+  (0.3ms) ROLLBACK
1375
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1376
+  (0.3ms) BEGIN
1377
+ -------------------------------------------------
1378
+ BobTest: test_building_many_unpersisted_instances
1379
+ -------------------------------------------------
1380
+  (0.2ms) SAVEPOINT active_record_1
1381
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1382
+  (0.2ms) ROLLBACK
1383
+  (0.2ms) BEGIN
1384
+ -------------------------------------------
1385
+ BobTest: test_building_many_valid_instances
1386
+ -------------------------------------------
1387
+  (0.2ms) SAVEPOINT active_record_1
1388
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.739157"], ["email", "winona.hauck@jenkins.org"], ["name", "Reagan"], ["updated_at", "2015-06-16 06:15:58.739157"]]
1389
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.743200"], ["email", "rae_lubowitz@pollichbechtelar.biz"], ["name", "Edmond"], ["updated_at", "2015-06-16 06:15:58.743200"]]
1390
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.744297"], ["email", "yolanda_murray@satterfieldbaumbach.name"], ["name", "Myrl"], ["updated_at", "2015-06-16 06:15:58.744297"]]
1391
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.745311"], ["email", "rachael.johns@sipes.net"], ["name", "Russel"], ["updated_at", "2015-06-16 06:15:58.745311"]]
1392
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.746330"], ["email", "ken_cain@moriettehamill.net"], ["name", "Rylee"], ["updated_at", "2015-06-16 06:15:58.746330"]]
1393
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.747303"], ["email", "miller@morarmraz.org"], ["name", "Alison"], ["updated_at", "2015-06-16 06:15:58.747303"]]
1394
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.748302"], ["email", "elza_mclaughlin@glover.name"], ["name", "Patrick"], ["updated_at", "2015-06-16 06:15:58.748302"]]
1395
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.749324"], ["email", "wilfrid_reichel@homenickwolff.biz"], ["name", "Claud"], ["updated_at", "2015-06-16 06:15:58.749324"]]
1396
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.750324"], ["email", "brenda@powlowskifisher.name"], ["name", "Virgie"], ["updated_at", "2015-06-16 06:15:58.750324"]]
1397
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.751218"], ["email", "leon@dubuque.biz"], ["name", "Dejah"], ["updated_at", "2015-06-16 06:15:58.751218"]]
1398
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.752119"], ["email", "maegan_bernier@dach.name"], ["name", "Collin"], ["updated_at", "2015-06-16 06:15:58.752119"]]
1399
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.753092"], ["email", "tanner.hirthe@rogahn.info"], ["name", "Tre"], ["updated_at", "2015-06-16 06:15:58.753092"]]
1400
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.754077"], ["email", "lew@harber.name"], ["name", "Garnett"], ["updated_at", "2015-06-16 06:15:58.754077"]]
1401
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.755063"], ["email", "je.block@funkwolf.com"], ["name", "Alfreda"], ["updated_at", "2015-06-16 06:15:58.755063"]]
1402
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.756006"], ["email", "khalil@stoltenberg.biz"], ["name", "Lou"], ["updated_at", "2015-06-16 06:15:58.756006"]]
1403
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.756957"], ["email", "kris@zulauf.com"], ["name", "Donato"], ["updated_at", "2015-06-16 06:15:58.756957"]]
1404
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.757952"], ["email", "berenice@leannon.info"], ["name", "Juliet"], ["updated_at", "2015-06-16 06:15:58.757952"]]
1405
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.758872"], ["email", "derek@doyleconroy.info"], ["name", "Cooper"], ["updated_at", "2015-06-16 06:15:58.758872"]]
1406
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.759770"], ["email", "mekhi.waelchi@tillmanolson.info"], ["name", "Elissa"], ["updated_at", "2015-06-16 06:15:58.759770"]]
1407
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.760648"], ["email", "emie@danieljohnston.org"], ["name", "Brandon"], ["updated_at", "2015-06-16 06:15:58.760648"]]
1408
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.761585"], ["email", "tavares@bahringer.org"], ["name", "Anya"], ["updated_at", "2015-06-16 06:15:58.761585"]]
1409
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.762545"], ["email", "dejuan@abernathybayer.name"], ["name", "Julio"], ["updated_at", "2015-06-16 06:15:58.762545"]]
1410
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.763558"], ["email", "earline_trantow@goldnerschaefer.name"], ["name", "Jocelyn"], ["updated_at", "2015-06-16 06:15:58.763558"]]
1411
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.764519"], ["email", "sterling@bashirian.org"], ["name", "Abdiel"], ["updated_at", "2015-06-16 06:15:58.764519"]]
1412
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.765499"], ["email", "reyna@ondricka.org"], ["name", "Magali"], ["updated_at", "2015-06-16 06:15:58.765499"]]
1413
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.766422"], ["email", "estefania.jacobson@moore.info"], ["name", "Donny"], ["updated_at", "2015-06-16 06:15:58.766422"]]
1414
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.767309"], ["email", "dangelo.keebler@fritsch.com"], ["name", "Paula"], ["updated_at", "2015-06-16 06:15:58.767309"]]
1415
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.768318"], ["email", "gia@pouros.net"], ["name", "Era"], ["updated_at", "2015-06-16 06:15:58.768318"]]
1416
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.769399"], ["email", "franco_rutherford@reynolds.net"], ["name", "Houston"], ["updated_at", "2015-06-16 06:15:58.769399"]]
1417
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.770534"], ["email", "esperanza@skiles.info"], ["name", "Lance"], ["updated_at", "2015-06-16 06:15:58.770534"]]
1418
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.771657"], ["email", "furman@mckenzie.com"], ["name", "Elijah"], ["updated_at", "2015-06-16 06:15:58.771657"]]
1419
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.772640"], ["email", "shanna.jerde@witting.net"], ["name", "Rowan"], ["updated_at", "2015-06-16 06:15:58.772640"]]
1420
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.773592"], ["email", "ola@koweber.info"], ["name", "Madisyn"], ["updated_at", "2015-06-16 06:15:58.773592"]]
1421
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.774461"], ["email", "alexandre@lehnerbergnaum.net"], ["name", "Jace"], ["updated_at", "2015-06-16 06:15:58.774461"]]
1422
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.775389"], ["email", "leann_heidenreich@stanton.com"], ["name", "Mae"], ["updated_at", "2015-06-16 06:15:58.775389"]]
1423
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.776278"], ["email", "carmela@hermistonschiller.com"], ["name", "Maxine"], ["updated_at", "2015-06-16 06:15:58.776278"]]
1424
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.777179"], ["email", "harrison_nitzsche@hudsongulgowski.name"], ["name", "Maude"], ["updated_at", "2015-06-16 06:15:58.777179"]]
1425
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.778049"], ["email", "consuelo@hirthe.com"], ["name", "Catalina"], ["updated_at", "2015-06-16 06:15:58.778049"]]
1426
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.778926"], ["email", "rosamond_fahey@mueller.net"], ["name", "Ethel"], ["updated_at", "2015-06-16 06:15:58.778926"]]
1427
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.779850"], ["email", "hayley.bartell@lubowitz.name"], ["name", "Alexzander"], ["updated_at", "2015-06-16 06:15:58.779850"]]
1428
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.780847"], ["email", "audrey@koch.com"], ["name", "Lila"], ["updated_at", "2015-06-16 06:15:58.780847"]]
1429
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.781806"], ["email", "myah@ondricka.info"], ["name", "Kim"], ["updated_at", "2015-06-16 06:15:58.781806"]]
1430
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.782701"], ["email", "declan_baumbach@beckermueller.org"], ["name", "Icie"], ["updated_at", "2015-06-16 06:15:58.782701"]]
1431
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.783598"], ["email", "olen@shields.biz"], ["name", "Aliyah"], ["updated_at", "2015-06-16 06:15:58.783598"]]
1432
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.784483"], ["email", "verona.white@nolan.biz"], ["name", "Muriel"], ["updated_at", "2015-06-16 06:15:58.784483"]]
1433
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.785397"], ["email", "manley.gutmann@tremblay.net"], ["name", "Alva"], ["updated_at", "2015-06-16 06:15:58.785397"]]
1434
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.786311"], ["email", "kenton@sporer.name"], ["name", "Brionna"], ["updated_at", "2015-06-16 06:15:58.786311"]]
1435
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.787221"], ["email", "cristobal_bosco@marks.net"], ["name", "Winnifred"], ["updated_at", "2015-06-16 06:15:58.787221"]]
1436
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.788086"], ["email", "thelma@quitzon.com"], ["name", "Verna"], ["updated_at", "2015-06-16 06:15:58.788086"]]
1437
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.788975"], ["email", "alice_welch@stokechneider.com"], ["name", "Alanna"], ["updated_at", "2015-06-16 06:15:58.788975"]]
1438
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1439
+  (0.2ms) ROLLBACK
1440
+  (0.2ms) BEGIN
1441
+ --------------------------------------
1442
+ BobTest: test_building_single_instance
1443
+ --------------------------------------
1444
+  (0.2ms) SAVEPOINT active_record_1
1445
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:15:58.792229"], ["email", "rosalinda.robel@deckowbahringer.name"], ["name", "Danielle"], ["updated_at", "2015-06-16 06:15:58.792229"]]
1446
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1447
+  (0.1ms) ROLLBACK
1448
+  (0.1ms) BEGIN
1449
+ -------------------------------------------
1450
+ BobTest: test_building_unpersisted_instance
1451
+ -------------------------------------------
1452
+  (0.1ms) SAVEPOINT active_record_1
1453
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1454
+  (0.1ms) ROLLBACK
1455
+  (0.1ms) BEGIN
1456
+ -------------------------------------------
1457
+ BobTest: test_passing_arguments_to_builders
1458
+ -------------------------------------------
1459
+  (0.1ms) SAVEPOINT active_record_1
1460
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1461
+  (0.6ms) ROLLBACK
1462
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1463
+  (0.3ms) BEGIN
1464
+ -------------------------------------------------
1465
+ BobTest: test_building_many_unpersisted_instances
1466
+ -------------------------------------------------
1467
+  (0.2ms) SAVEPOINT active_record_1
1468
+  (0.4ms) RELEASE SAVEPOINT active_record_1
1469
+  (0.3ms) ROLLBACK
1470
+  (0.2ms) BEGIN
1471
+ -------------------------------------------
1472
+ BobTest: test_building_many_valid_instances
1473
+ -------------------------------------------
1474
+  (0.2ms) SAVEPOINT active_record_1
1475
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.632189"], ["email", "heidi@runolfon.info"], ["name", "Vicente"], ["updated_at", "2015-06-16 06:16:35.632189"]]
1476
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.636456"], ["email", "neil_ullrich@braun.info"], ["name", "Lourdes"], ["updated_at", "2015-06-16 06:16:35.636456"]]
1477
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.637823"], ["email", "elmo@cummeratazemlak.net"], ["name", "Sienna"], ["updated_at", "2015-06-16 06:16:35.637823"]]
1478
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.639083"], ["email", "heber@wilkinson.net"], ["name", "Josefina"], ["updated_at", "2015-06-16 06:16:35.639083"]]
1479
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.640354"], ["email", "peggie_labadie@mohrtorphy.name"], ["name", "Hardy"], ["updated_at", "2015-06-16 06:16:35.640354"]]
1480
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.641631"], ["email", "nickolas.herzog@sanford.org"], ["name", "Vicente"], ["updated_at", "2015-06-16 06:16:35.641631"]]
1481
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.642917"], ["email", "margret.macejkovic@larsonhaag.com"], ["name", "Madge"], ["updated_at", "2015-06-16 06:16:35.642917"]]
1482
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.644033"], ["email", "julien_mitchell@gorczany.info"], ["name", "Dax"], ["updated_at", "2015-06-16 06:16:35.644033"]]
1483
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.645114"], ["email", "bridgette_boyle@parisian.com"], ["name", "Lempi"], ["updated_at", "2015-06-16 06:16:35.645114"]]
1484
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.646160"], ["email", "bo@gorczany.net"], ["name", "Liam"], ["updated_at", "2015-06-16 06:16:35.646160"]]
1485
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.647196"], ["email", "bethany@schmelergleichner.biz"], ["name", "Genoveva"], ["updated_at", "2015-06-16 06:16:35.647196"]]
1486
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.648244"], ["email", "maya_frami@bernier.com"], ["name", "Dax"], ["updated_at", "2015-06-16 06:16:35.648244"]]
1487
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.649297"], ["email", "caitlyn_zieme@sipechinner.info"], ["name", "Marianne"], ["updated_at", "2015-06-16 06:16:35.649297"]]
1488
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.650215"], ["email", "beatrice@waters.biz"], ["name", "Adalberto"], ["updated_at", "2015-06-16 06:16:35.650215"]]
1489
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.651140"], ["email", "kristian.fadel@wizaheidenreich.com"], ["name", "Bethel"], ["updated_at", "2015-06-16 06:16:35.651140"]]
1490
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.652052"], ["email", "turner_tromp@kleinpurdy.com"], ["name", "Miguel"], ["updated_at", "2015-06-16 06:16:35.652052"]]
1491
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.652960"], ["email", "janet_bednar@heidenreich.org"], ["name", "Cydney"], ["updated_at", "2015-06-16 06:16:35.652960"]]
1492
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.653880"], ["email", "genevieve_crist@walshrath.info"], ["name", "Al"], ["updated_at", "2015-06-16 06:16:35.653880"]]
1493
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.654856"], ["email", "zachary.brakus@mccullough.info"], ["name", "Xavier"], ["updated_at", "2015-06-16 06:16:35.654856"]]
1494
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.655840"], ["email", "germaine@reicheldonnelly.name"], ["name", "Waylon"], ["updated_at", "2015-06-16 06:16:35.655840"]]
1495
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.656855"], ["email", "penelope@mcclurefarrell.org"], ["name", "Beverly"], ["updated_at", "2015-06-16 06:16:35.656855"]]
1496
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.657805"], ["email", "heather@boscowilkinson.org"], ["name", "Deon"], ["updated_at", "2015-06-16 06:16:35.657805"]]
1497
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.658884"], ["email", "buddy_prosacco@frami.biz"], ["name", "Parker"], ["updated_at", "2015-06-16 06:16:35.658884"]]
1498
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.660426"], ["email", "calista_oberbrunner@hackett.name"], ["name", "Hope"], ["updated_at", "2015-06-16 06:16:35.660426"]]
1499
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.661544"], ["email", "melya.schmidt@oreilly.name"], ["name", "Mylene"], ["updated_at", "2015-06-16 06:16:35.661544"]]
1500
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.662486"], ["email", "gilbert.emard@corwingaylord.org"], ["name", "Harvey"], ["updated_at", "2015-06-16 06:16:35.662486"]]
1501
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.663376"], ["email", "wanda@dietrichmoen.com"], ["name", "Madge"], ["updated_at", "2015-06-16 06:16:35.663376"]]
1502
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.664278"], ["email", "vada_deckow@langworth.biz"], ["name", "Lessie"], ["updated_at", "2015-06-16 06:16:35.664278"]]
1503
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.665208"], ["email", "arianna.feeney@bechtelarhansen.net"], ["name", "Damaris"], ["updated_at", "2015-06-16 06:16:35.665208"]]
1504
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.666113"], ["email", "kylee_bauch@waelchi.info"], ["name", "George"], ["updated_at", "2015-06-16 06:16:35.666113"]]
1505
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.666999"], ["email", "catherine@lakin.biz"], ["name", "Houston"], ["updated_at", "2015-06-16 06:16:35.666999"]]
1506
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.667887"], ["email", "mariela@handhagenes.net"], ["name", "Earnestine"], ["updated_at", "2015-06-16 06:16:35.667887"]]
1507
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.668796"], ["email", "augustine.shanahan@ziemanncummings.org"], ["name", "Vita"], ["updated_at", "2015-06-16 06:16:35.668796"]]
1508
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.669711"], ["email", "madyson_hackett@beahanschumm.net"], ["name", "Merritt"], ["updated_at", "2015-06-16 06:16:35.669711"]]
1509
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.670633"], ["email", "katheryn@ortiz.net"], ["name", "Roselyn"], ["updated_at", "2015-06-16 06:16:35.670633"]]
1510
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.671523"], ["email", "kody@davis.com"], ["name", "Marquise"], ["updated_at", "2015-06-16 06:16:35.671523"]]
1511
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.672422"], ["email", "coy_lebsack@kutch.net"], ["name", "Odell"], ["updated_at", "2015-06-16 06:16:35.672422"]]
1512
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.673351"], ["email", "nick.orn@hermiston.com"], ["name", "Olga"], ["updated_at", "2015-06-16 06:16:35.673351"]]
1513
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.674235"], ["email", "tatyana@brekkezieme.biz"], ["name", "Hazel"], ["updated_at", "2015-06-16 06:16:35.674235"]]
1514
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.675157"], ["email", "stan@jaskolski.net"], ["name", "Sophie"], ["updated_at", "2015-06-16 06:16:35.675157"]]
1515
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.676042"], ["email", "brenna@miller.name"], ["name", "Theresia"], ["updated_at", "2015-06-16 06:16:35.676042"]]
1516
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.676939"], ["email", "alek@feest.net"], ["name", "Norval"], ["updated_at", "2015-06-16 06:16:35.676939"]]
1517
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.677855"], ["email", "rick_graham@strosinrunte.name"], ["name", "Roma"], ["updated_at", "2015-06-16 06:16:35.677855"]]
1518
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.678756"], ["email", "claire@bashirian.net"], ["name", "Elsa"], ["updated_at", "2015-06-16 06:16:35.678756"]]
1519
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.679653"], ["email", "danielle_lakin@schroeder.biz"], ["name", "Darron"], ["updated_at", "2015-06-16 06:16:35.679653"]]
1520
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.680574"], ["email", "alyce_reilly@huel.com"], ["name", "Dereck"], ["updated_at", "2015-06-16 06:16:35.680574"]]
1521
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.681508"], ["email", "beie.macgyver@okon.com"], ["name", "Colt"], ["updated_at", "2015-06-16 06:16:35.681508"]]
1522
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.682494"], ["email", "cayla@runte.biz"], ["name", "Estell"], ["updated_at", "2015-06-16 06:16:35.682494"]]
1523
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.683367"], ["email", "sofia_rutherford@waltereffertz.net"], ["name", "Stevie"], ["updated_at", "2015-06-16 06:16:35.683367"]]
1524
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.684230"], ["email", "roie@ratkerosenbaum.name"], ["name", "Richard"], ["updated_at", "2015-06-16 06:16:35.684230"]]
1525
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1526
+  (0.1ms) ROLLBACK
1527
+  (0.1ms) BEGIN
1528
+ --------------------------------------
1529
+ BobTest: test_building_single_instance
1530
+ --------------------------------------
1531
+  (0.1ms) SAVEPOINT active_record_1
1532
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:35.687075"], ["email", "susana@bartell.name"], ["name", "Price"], ["updated_at", "2015-06-16 06:16:35.687075"]]
1533
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1534
+  (0.1ms) ROLLBACK
1535
+  (0.1ms) BEGIN
1536
+ -------------------------------------------
1537
+ BobTest: test_building_unpersisted_instance
1538
+ -------------------------------------------
1539
+  (0.1ms) SAVEPOINT active_record_1
1540
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1541
+  (0.1ms) ROLLBACK
1542
+  (0.1ms) BEGIN
1543
+ -------------------------------------------
1544
+ BobTest: test_passing_arguments_to_builders
1545
+ -------------------------------------------
1546
+  (0.1ms) SAVEPOINT active_record_1
1547
+  (0.5ms) RELEASE SAVEPOINT active_record_1
1548
+  (0.4ms) ROLLBACK
1549
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1550
+  (0.2ms) BEGIN
1551
+ -------------------------------------------------
1552
+ BobTest: test_building_many_unpersisted_instances
1553
+ -------------------------------------------------
1554
+  (0.2ms) SAVEPOINT active_record_1
1555
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1556
+  (0.2ms) ROLLBACK
1557
+  (0.1ms) BEGIN
1558
+ -------------------------------------------
1559
+ BobTest: test_building_many_valid_instances
1560
+ -------------------------------------------
1561
+  (0.1ms) SAVEPOINT active_record_1
1562
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.071478"], ["email", "reilly_parisian@dickens.org"], ["name", "Owen"], ["updated_at", "2015-06-16 06:16:45.071478"]]
1563
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.075019"], ["email", "scot@considinefisher.net"], ["name", "Juanita"], ["updated_at", "2015-06-16 06:16:45.075019"]]
1564
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.076046"], ["email", "morton@kleinweimann.net"], ["name", "Emerson"], ["updated_at", "2015-06-16 06:16:45.076046"]]
1565
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.076975"], ["email", "monique_conn@marvin.org"], ["name", "Cielo"], ["updated_at", "2015-06-16 06:16:45.076975"]]
1566
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.077971"], ["email", "jaylin@hagenes.info"], ["name", "Demario"], ["updated_at", "2015-06-16 06:16:45.077971"]]
1567
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.078989"], ["email", "jordi.murphy@windlerohara.com"], ["name", "June"], ["updated_at", "2015-06-16 06:16:45.078989"]]
1568
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.080003"], ["email", "kamren@hoegerbaumbach.net"], ["name", "Victoria"], ["updated_at", "2015-06-16 06:16:45.080003"]]
1569
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.081148"], ["email", "tyrese@cartermccullough.com"], ["name", "Jacynthe"], ["updated_at", "2015-06-16 06:16:45.081148"]]
1570
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.082320"], ["email", "green_rodriguez@mann.net"], ["name", "Angie"], ["updated_at", "2015-06-16 06:16:45.082320"]]
1571
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.084042"], ["email", "hailey_harvey@little.net"], ["name", "Tito"], ["updated_at", "2015-06-16 06:16:45.084042"]]
1572
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.085058"], ["email", "jeica_gleason@deckowrosenbaum.biz"], ["name", "Jovan"], ["updated_at", "2015-06-16 06:16:45.085058"]]
1573
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.085989"], ["email", "juana@ondricka.biz"], ["name", "Kurtis"], ["updated_at", "2015-06-16 06:16:45.085989"]]
1574
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.086927"], ["email", "grayson_nikolaus@langworthframi.name"], ["name", "Zechariah"], ["updated_at", "2015-06-16 06:16:45.086927"]]
1575
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.087838"], ["email", "phyllis@carter.com"], ["name", "Jonathan"], ["updated_at", "2015-06-16 06:16:45.087838"]]
1576
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.088782"], ["email", "duane_eichmann@howe.com"], ["name", "Karl"], ["updated_at", "2015-06-16 06:16:45.088782"]]
1577
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.089726"], ["email", "mavis@bradtke.com"], ["name", "Kamille"], ["updated_at", "2015-06-16 06:16:45.089726"]]
1578
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.090648"], ["email", "providenci.larson@weber.biz"], ["name", "Gwen"], ["updated_at", "2015-06-16 06:16:45.090648"]]
1579
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.091555"], ["email", "hipolito@bergnaum.name"], ["name", "Mike"], ["updated_at", "2015-06-16 06:16:45.091555"]]
1580
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.092465"], ["email", "bell@ernserhagenes.net"], ["name", "Evangeline"], ["updated_at", "2015-06-16 06:16:45.092465"]]
1581
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.093402"], ["email", "trudie_barrows@thiel.info"], ["name", "Adriana"], ["updated_at", "2015-06-16 06:16:45.093402"]]
1582
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.094399"], ["email", "rashad_spinka@koch.net"], ["name", "Pansy"], ["updated_at", "2015-06-16 06:16:45.094399"]]
1583
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.095379"], ["email", "asa.yundt@halvorsongerlach.name"], ["name", "Giovanna"], ["updated_at", "2015-06-16 06:16:45.095379"]]
1584
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.096356"], ["email", "haleigh@hammes.name"], ["name", "Nikko"], ["updated_at", "2015-06-16 06:16:45.096356"]]
1585
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.097323"], ["email", "ivy@heidenreich.biz"], ["name", "Alexander"], ["updated_at", "2015-06-16 06:16:45.097323"]]
1586
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.098442"], ["email", "sam@bergstrom.net"], ["name", "Lisandro"], ["updated_at", "2015-06-16 06:16:45.098442"]]
1587
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.100339"], ["email", "rose@dubuque.biz"], ["name", "Miller"], ["updated_at", "2015-06-16 06:16:45.100339"]]
1588
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.101717"], ["email", "alex_williamson@cummings.org"], ["name", "Blaze"], ["updated_at", "2015-06-16 06:16:45.101717"]]
1589
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.102930"], ["email", "bertram_hudson@ruel.com"], ["name", "Wiley"], ["updated_at", "2015-06-16 06:16:45.102930"]]
1590
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.103925"], ["email", "terence@yost.org"], ["name", "Heather"], ["updated_at", "2015-06-16 06:16:45.103925"]]
1591
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.104862"], ["email", "sincere@bahringer.org"], ["name", "Allan"], ["updated_at", "2015-06-16 06:16:45.104862"]]
1592
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.105980"], ["email", "stanford.sporer@goyettebartoletti.com"], ["name", "Virgie"], ["updated_at", "2015-06-16 06:16:45.105980"]]
1593
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.107092"], ["email", "haley_deckow@schmelerabbott.org"], ["name", "Jeffery"], ["updated_at", "2015-06-16 06:16:45.107092"]]
1594
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.108180"], ["email", "avis@purdy.info"], ["name", "Colin"], ["updated_at", "2015-06-16 06:16:45.108180"]]
1595
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.109414"], ["email", "haylee@eichmann.info"], ["name", "Katelyn"], ["updated_at", "2015-06-16 06:16:45.109414"]]
1596
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.110638"], ["email", "laria_bahringer@wilkinsonharris.name"], ["name", "Damon"], ["updated_at", "2015-06-16 06:16:45.110638"]]
1597
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.111846"], ["email", "cade.beatty@oharagulgowski.info"], ["name", "Miracle"], ["updated_at", "2015-06-16 06:16:45.111846"]]
1598
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.112996"], ["email", "jalen@mann.net"], ["name", "Dakota"], ["updated_at", "2015-06-16 06:16:45.112996"]]
1599
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.114243"], ["email", "maverick@gleason.net"], ["name", "Gene"], ["updated_at", "2015-06-16 06:16:45.114243"]]
1600
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.115789"], ["email", "zachary@stehr.info"], ["name", "Orlo"], ["updated_at", "2015-06-16 06:16:45.115789"]]
1601
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.118235"], ["email", "eldora@hermann.info"], ["name", "Adonis"], ["updated_at", "2015-06-16 06:16:45.118235"]]
1602
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.119493"], ["email", "laron@franecki.info"], ["name", "Christophe"], ["updated_at", "2015-06-16 06:16:45.119493"]]
1603
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.120442"], ["email", "adonis_welch@trantow.name"], ["name", "Kristopher"], ["updated_at", "2015-06-16 06:16:45.120442"]]
1604
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.121404"], ["email", "alfonso@gloverkovacek.biz"], ["name", "Roderick"], ["updated_at", "2015-06-16 06:16:45.121404"]]
1605
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.122354"], ["email", "letha_dicki@jast.biz"], ["name", "Valerie"], ["updated_at", "2015-06-16 06:16:45.122354"]]
1606
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.123275"], ["email", "brandon@ebertwisozk.com"], ["name", "Josie"], ["updated_at", "2015-06-16 06:16:45.123275"]]
1607
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.124189"], ["email", "emmanuel@schulistkling.biz"], ["name", "Stephon"], ["updated_at", "2015-06-16 06:16:45.124189"]]
1608
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.125126"], ["email", "jeanette@colliermayert.name"], ["name", "Ayla"], ["updated_at", "2015-06-16 06:16:45.125126"]]
1609
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.126020"], ["email", "roberta_abshire@lynch.com"], ["name", "Bryce"], ["updated_at", "2015-06-16 06:16:45.126020"]]
1610
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.126874"], ["email", "edwin@stantonboehm.info"], ["name", "Bud"], ["updated_at", "2015-06-16 06:16:45.126874"]]
1611
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.127717"], ["email", "sonny@whitenolan.biz"], ["name", "Syble"], ["updated_at", "2015-06-16 06:16:45.127717"]]
1612
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1613
+  (0.1ms) ROLLBACK
1614
+  (0.1ms) BEGIN
1615
+ --------------------------------------
1616
+ BobTest: test_building_single_instance
1617
+ --------------------------------------
1618
+  (0.1ms) SAVEPOINT active_record_1
1619
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:16:45.130513"], ["email", "toby@okeefe.net"], ["name", "Rylee"], ["updated_at", "2015-06-16 06:16:45.130513"]]
1620
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1621
+  (0.2ms) ROLLBACK
1622
+  (0.1ms) BEGIN
1623
+ -------------------------------------------
1624
+ BobTest: test_building_unpersisted_instance
1625
+ -------------------------------------------
1626
+  (0.1ms) SAVEPOINT active_record_1
1627
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1628
+  (0.1ms) ROLLBACK
1629
+  (0.1ms) BEGIN
1630
+ -------------------------------------------
1631
+ BobTest: test_passing_arguments_to_builders
1632
+ -------------------------------------------
1633
+  (0.1ms) SAVEPOINT active_record_1
1634
+  (0.6ms) RELEASE SAVEPOINT active_record_1
1635
+  (0.6ms) ROLLBACK
1636
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1637
+  (0.2ms) BEGIN
1638
+ -------------------------------------------------
1639
+ BobTest: test_building_many_unpersisted_instances
1640
+ -------------------------------------------------
1641
+  (0.1ms) SAVEPOINT active_record_1
1642
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1643
+  (0.2ms) ROLLBACK
1644
+  (0.1ms) BEGIN
1645
+ -------------------------------------------
1646
+ BobTest: test_building_many_valid_instances
1647
+ -------------------------------------------
1648
+  (0.2ms) SAVEPOINT active_record_1
1649
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.384750"], ["email", "vladimir@murphy.com"], ["name", "Akeem"], ["updated_at", "2015-06-16 06:17:08.384750"]]
1650
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.388023"], ["email", "armando_stehr@torphykrajcik.name"], ["name", "Lillian"], ["updated_at", "2015-06-16 06:17:08.388023"]]
1651
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.389004"], ["email", "jerrod.maggio@feestbecker.info"], ["name", "Kelvin"], ["updated_at", "2015-06-16 06:17:08.389004"]]
1652
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.389977"], ["email", "jamison@abbottbreitenberg.com"], ["name", "Audreanne"], ["updated_at", "2015-06-16 06:17:08.389977"]]
1653
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.390880"], ["email", "maynard@langcarter.net"], ["name", "Janet"], ["updated_at", "2015-06-16 06:17:08.390880"]]
1654
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.391789"], ["email", "henriette_miller@mosciski.info"], ["name", "Berta"], ["updated_at", "2015-06-16 06:17:08.391789"]]
1655
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.392710"], ["email", "don@damore.net"], ["name", "Corine"], ["updated_at", "2015-06-16 06:17:08.392710"]]
1656
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.393612"], ["email", "henri_stamm@stokesrutherford.info"], ["name", "Charley"], ["updated_at", "2015-06-16 06:17:08.393612"]]
1657
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.394597"], ["email", "elvis.halvorson@kingdickens.net"], ["name", "Amara"], ["updated_at", "2015-06-16 06:17:08.394597"]]
1658
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.395547"], ["email", "mona@herzog.info"], ["name", "Katrina"], ["updated_at", "2015-06-16 06:17:08.395547"]]
1659
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.396481"], ["email", "connie.klein@hoeger.org"], ["name", "Providenci"], ["updated_at", "2015-06-16 06:17:08.396481"]]
1660
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.397431"], ["email", "lyda.fadel@willms.org"], ["name", "Kayley"], ["updated_at", "2015-06-16 06:17:08.397431"]]
1661
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.398375"], ["email", "branson.fadel@moriette.org"], ["name", "Willa"], ["updated_at", "2015-06-16 06:17:08.398375"]]
1662
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.399298"], ["email", "saul@metz.name"], ["name", "Kylie"], ["updated_at", "2015-06-16 06:17:08.399298"]]
1663
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.400185"], ["email", "roxanne@pacochaschiller.biz"], ["name", "Lori"], ["updated_at", "2015-06-16 06:17:08.400185"]]
1664
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.401034"], ["email", "deontae@koelpin.com"], ["name", "London"], ["updated_at", "2015-06-16 06:17:08.401034"]]
1665
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.401952"], ["email", "jee.simonis@stokes.name"], ["name", "Dina"], ["updated_at", "2015-06-16 06:17:08.401952"]]
1666
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.402817"], ["email", "alene@hackett.org"], ["name", "Cale"], ["updated_at", "2015-06-16 06:17:08.402817"]]
1667
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.403703"], ["email", "dora.johnson@yundt.info"], ["name", "Alene"], ["updated_at", "2015-06-16 06:17:08.403703"]]
1668
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.404576"], ["email", "karolann@cummerata.com"], ["name", "Sydni"], ["updated_at", "2015-06-16 06:17:08.404576"]]
1669
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.405430"], ["email", "mellie@jacobi.net"], ["name", "Amani"], ["updated_at", "2015-06-16 06:17:08.405430"]]
1670
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.406305"], ["email", "charlie@hudson.name"], ["name", "Yadira"], ["updated_at", "2015-06-16 06:17:08.406305"]]
1671
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.407179"], ["email", "melya_becker@collinsborer.info"], ["name", "Audrey"], ["updated_at", "2015-06-16 06:17:08.407179"]]
1672
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.408075"], ["email", "rosella.bosco@jenkinscormier.name"], ["name", "Abagail"], ["updated_at", "2015-06-16 06:17:08.408075"]]
1673
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.408979"], ["email", "wilhelmine.mraz@prohaskanienow.name"], ["name", "Brandi"], ["updated_at", "2015-06-16 06:17:08.408979"]]
1674
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.409889"], ["email", "lucie@wehner.info"], ["name", "Angelita"], ["updated_at", "2015-06-16 06:17:08.409889"]]
1675
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.410783"], ["email", "dorcas@baumbach.biz"], ["name", "Karelle"], ["updated_at", "2015-06-16 06:17:08.410783"]]
1676
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.411695"], ["email", "ernesto@pagacwillms.net"], ["name", "Felton"], ["updated_at", "2015-06-16 06:17:08.411695"]]
1677
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.412720"], ["email", "taryn.wolff@johnston.biz"], ["name", "Aaliyah"], ["updated_at", "2015-06-16 06:17:08.412720"]]
1678
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.413624"], ["email", "webster@ko.name"], ["name", "Conrad"], ["updated_at", "2015-06-16 06:17:08.413624"]]
1679
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.414499"], ["email", "earl_crona@franeckistokes.info"], ["name", "Wiley"], ["updated_at", "2015-06-16 06:17:08.414499"]]
1680
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.415414"], ["email", "angelina@white.org"], ["name", "Clement"], ["updated_at", "2015-06-16 06:17:08.415414"]]
1681
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.416317"], ["email", "robert@schumm.info"], ["name", "Conor"], ["updated_at", "2015-06-16 06:17:08.416317"]]
1682
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.417233"], ["email", "martin.weinat@schneiderreilly.name"], ["name", "Heloise"], ["updated_at", "2015-06-16 06:17:08.417233"]]
1683
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.418099"], ["email", "lesly@walterheel.info"], ["name", "Melissa"], ["updated_at", "2015-06-16 06:17:08.418099"]]
1684
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.418960"], ["email", "lew@parisiancasper.org"], ["name", "Kaleigh"], ["updated_at", "2015-06-16 06:17:08.418960"]]
1685
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.419808"], ["email", "ludwig@purdy.info"], ["name", "Creola"], ["updated_at", "2015-06-16 06:17:08.419808"]]
1686
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.420678"], ["email", "angelica_wyman@reingerlabadie.net"], ["name", "Loyce"], ["updated_at", "2015-06-16 06:17:08.420678"]]
1687
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.421573"], ["email", "marjory_kirlin@ruel.org"], ["name", "Prudence"], ["updated_at", "2015-06-16 06:17:08.421573"]]
1688
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.422565"], ["email", "madaline@ullrich.com"], ["name", "Ellen"], ["updated_at", "2015-06-16 06:17:08.422565"]]
1689
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.423541"], ["email", "elise@macgyver.biz"], ["name", "Susanna"], ["updated_at", "2015-06-16 06:17:08.423541"]]
1690
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.424555"], ["email", "hubert@nolan.biz"], ["name", "Van"], ["updated_at", "2015-06-16 06:17:08.424555"]]
1691
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.425608"], ["email", "dayne_schoen@bosco.biz"], ["name", "Malinda"], ["updated_at", "2015-06-16 06:17:08.425608"]]
1692
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.426643"], ["email", "serenity@olson.net"], ["name", "Patience"], ["updated_at", "2015-06-16 06:17:08.426643"]]
1693
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.427632"], ["email", "brant_glover@hills.net"], ["name", "Myriam"], ["updated_at", "2015-06-16 06:17:08.427632"]]
1694
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.428621"], ["email", "destiny_gusikowski@volkman.com"], ["name", "Cassandra"], ["updated_at", "2015-06-16 06:17:08.428621"]]
1695
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.429642"], ["email", "kristy@bartoletti.info"], ["name", "Geoffrey"], ["updated_at", "2015-06-16 06:17:08.429642"]]
1696
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.430665"], ["email", "nella_rippin@osinski.net"], ["name", "Al"], ["updated_at", "2015-06-16 06:17:08.430665"]]
1697
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.431742"], ["email", "virginia@barrows.com"], ["name", "Alyson"], ["updated_at", "2015-06-16 06:17:08.431742"]]
1698
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.432737"], ["email", "frank_haley@okeefe.name"], ["name", "Ibrahim"], ["updated_at", "2015-06-16 06:17:08.432737"]]
1699
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1700
+  (0.2ms) ROLLBACK
1701
+  (0.1ms) BEGIN
1702
+ --------------------------------------
1703
+ BobTest: test_building_single_instance
1704
+ --------------------------------------
1705
+  (0.1ms) SAVEPOINT active_record_1
1706
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:08.436101"], ["email", "dedrick_smitham@pouros.biz"], ["name", "Audie"], ["updated_at", "2015-06-16 06:17:08.436101"]]
1707
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1708
+  (0.2ms) ROLLBACK
1709
+  (0.1ms) BEGIN
1710
+ -------------------------------------------
1711
+ BobTest: test_building_unpersisted_instance
1712
+ -------------------------------------------
1713
+  (0.1ms) SAVEPOINT active_record_1
1714
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1715
+  (0.1ms) ROLLBACK
1716
+  (0.1ms) BEGIN
1717
+ -------------------------------------------
1718
+ BobTest: test_passing_arguments_to_builders
1719
+ -------------------------------------------
1720
+  (0.1ms) SAVEPOINT active_record_1
1721
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:10.508762"], ["email", "bar@foobar.com"], ["name", "foo"], ["updated_at", "2015-06-16 06:17:10.508762"]]
1722
+  (0.6ms) RELEASE SAVEPOINT active_record_1
1723
+  (0.4ms) ROLLBACK
1724
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1725
+  (0.2ms) BEGIN
1726
+ -------------------------------------------------
1727
+ BobTest: test_building_many_unpersisted_instances
1728
+ -------------------------------------------------
1729
+  (0.1ms) SAVEPOINT active_record_1
1730
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1731
+  (0.2ms) ROLLBACK
1732
+  (0.1ms) BEGIN
1733
+ -------------------------------------------
1734
+ BobTest: test_building_many_valid_instances
1735
+ -------------------------------------------
1736
+  (0.1ms) SAVEPOINT active_record_1
1737
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.269204"], ["email", "odell.stehr@hudson.net"], ["name", "Nigel"], ["updated_at", "2015-06-16 06:17:19.269204"]]
1738
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.272415"], ["email", "jasper_dickinson@kuvalisleannon.org"], ["name", "Rickey"], ["updated_at", "2015-06-16 06:17:19.272415"]]
1739
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.273424"], ["email", "gonzalo_bailey@pfeffer.net"], ["name", "Madie"], ["updated_at", "2015-06-16 06:17:19.273424"]]
1740
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.274335"], ["email", "kiana@wymanraynor.name"], ["name", "Lorenz"], ["updated_at", "2015-06-16 06:17:19.274335"]]
1741
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.275264"], ["email", "conrad_wuckert@deckow.net"], ["name", "Damien"], ["updated_at", "2015-06-16 06:17:19.275264"]]
1742
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.276163"], ["email", "carlotta_oconner@kreigerbarton.com"], ["name", "Marisol"], ["updated_at", "2015-06-16 06:17:19.276163"]]
1743
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.277057"], ["email", "ludie@haag.net"], ["name", "Cynthia"], ["updated_at", "2015-06-16 06:17:19.277057"]]
1744
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.277939"], ["email", "lon_hodkiewicz@stokes.net"], ["name", "Brandi"], ["updated_at", "2015-06-16 06:17:19.277939"]]
1745
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.278959"], ["email", "genesis.hegmann@wuckert.net"], ["name", "Marco"], ["updated_at", "2015-06-16 06:17:19.278959"]]
1746
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.279915"], ["email", "vivian@schuster.org"], ["name", "Sven"], ["updated_at", "2015-06-16 06:17:19.279915"]]
1747
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.280839"], ["email", "judge.kling@roob.biz"], ["name", "Edwardo"], ["updated_at", "2015-06-16 06:17:19.280839"]]
1748
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.281789"], ["email", "frank_batz@haag.com"], ["name", "Caroline"], ["updated_at", "2015-06-16 06:17:19.281789"]]
1749
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.282739"], ["email", "deja@hamill.net"], ["name", "Drake"], ["updated_at", "2015-06-16 06:17:19.282739"]]
1750
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.283689"], ["email", "alisha.shields@dicki.biz"], ["name", "Janice"], ["updated_at", "2015-06-16 06:17:19.283689"]]
1751
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.284587"], ["email", "cyrus.dickinson@reilly.info"], ["name", "Jett"], ["updated_at", "2015-06-16 06:17:19.284587"]]
1752
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.285461"], ["email", "denis.breitenberg@heller.info"], ["name", "Antonina"], ["updated_at", "2015-06-16 06:17:19.285461"]]
1753
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.286396"], ["email", "annabel.pouros@streich.net"], ["name", "Damien"], ["updated_at", "2015-06-16 06:17:19.286396"]]
1754
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.287249"], ["email", "trever@muller.org"], ["name", "Chelsea"], ["updated_at", "2015-06-16 06:17:19.287249"]]
1755
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.288119"], ["email", "austin.wehner@dibbert.net"], ["name", "Rosetta"], ["updated_at", "2015-06-16 06:17:19.288119"]]
1756
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.289002"], ["email", "orie@weinat.name"], ["name", "Lucile"], ["updated_at", "2015-06-16 06:17:19.289002"]]
1757
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.289859"], ["email", "gracie@gislason.org"], ["name", "Sabryna"], ["updated_at", "2015-06-16 06:17:19.289859"]]
1758
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.290715"], ["email", "arlo@donnellyhilpert.org"], ["name", "Easton"], ["updated_at", "2015-06-16 06:17:19.290715"]]
1759
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.291580"], ["email", "tyree@hodkiewicz.name"], ["name", "Ivah"], ["updated_at", "2015-06-16 06:17:19.291580"]]
1760
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.292438"], ["email", "newell_emard@schaden.name"], ["name", "Dimitri"], ["updated_at", "2015-06-16 06:17:19.292438"]]
1761
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.293316"], ["email", "ferne_kerluke@leuschkerunolfsdottir.net"], ["name", "Tressie"], ["updated_at", "2015-06-16 06:17:19.293316"]]
1762
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.294309"], ["email", "marcellus@bergstrom.com"], ["name", "Ettie"], ["updated_at", "2015-06-16 06:17:19.294309"]]
1763
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.295304"], ["email", "kareem.gaylord@dubuque.net"], ["name", "German"], ["updated_at", "2015-06-16 06:17:19.295304"]]
1764
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.296447"], ["email", "rickie@jacobi.info"], ["name", "Daphney"], ["updated_at", "2015-06-16 06:17:19.296447"]]
1765
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.297569"], ["email", "mable_mcdermott@labadie.org"], ["name", "Freida"], ["updated_at", "2015-06-16 06:17:19.297569"]]
1766
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.298620"], ["email", "keshawn@rowe.biz"], ["name", "Dewayne"], ["updated_at", "2015-06-16 06:17:19.298620"]]
1767
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.299682"], ["email", "chet.harvey@schamberger.biz"], ["name", "Ahmad"], ["updated_at", "2015-06-16 06:17:19.299682"]]
1768
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.300743"], ["email", "leann_jerde@green.name"], ["name", "Harold"], ["updated_at", "2015-06-16 06:17:19.300743"]]
1769
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.301812"], ["email", "alejandrin.wilkinson@weinat.biz"], ["name", "Joana"], ["updated_at", "2015-06-16 06:17:19.301812"]]
1770
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.302867"], ["email", "ena_lowe@beckerblick.net"], ["name", "Casper"], ["updated_at", "2015-06-16 06:17:19.302867"]]
1771
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.303921"], ["email", "anita.zieme@blickhyatt.net"], ["name", "Reed"], ["updated_at", "2015-06-16 06:17:19.303921"]]
1772
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.305001"], ["email", "noemy.ratke@moen.info"], ["name", "Buford"], ["updated_at", "2015-06-16 06:17:19.305001"]]
1773
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.306089"], ["email", "madyson_reinger@kohler.biz"], ["name", "Mason"], ["updated_at", "2015-06-16 06:17:19.306089"]]
1774
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.307145"], ["email", "theresa.harber@donnellylarkin.info"], ["name", "Gia"], ["updated_at", "2015-06-16 06:17:19.307145"]]
1775
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.308233"], ["email", "hollis_mclaughlin@luettgen.biz"], ["name", "Kim"], ["updated_at", "2015-06-16 06:17:19.308233"]]
1776
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.309282"], ["email", "zoey@considine.name"], ["name", "Eric"], ["updated_at", "2015-06-16 06:17:19.309282"]]
1777
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.310396"], ["email", "sedrick_murazik@denesik.name"], ["name", "Rahsaan"], ["updated_at", "2015-06-16 06:17:19.310396"]]
1778
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.311460"], ["email", "dolly@goodwin.biz"], ["name", "Edna"], ["updated_at", "2015-06-16 06:17:19.311460"]]
1779
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.312517"], ["email", "abel.schumm@kuhn.com"], ["name", "Oma"], ["updated_at", "2015-06-16 06:17:19.312517"]]
1780
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.313649"], ["email", "obie.schaden@emmerich.info"], ["name", "Ruben"], ["updated_at", "2015-06-16 06:17:19.313649"]]
1781
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.314709"], ["email", "brett@pagac.com"], ["name", "Kevon"], ["updated_at", "2015-06-16 06:17:19.314709"]]
1782
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.315776"], ["email", "ashtyn@blockbayer.info"], ["name", "Jeffry"], ["updated_at", "2015-06-16 06:17:19.315776"]]
1783
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.316796"], ["email", "keven_anderson@greenfelder.info"], ["name", "Sally"], ["updated_at", "2015-06-16 06:17:19.316796"]]
1784
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.317892"], ["email", "ramiro_mueller@kreiger.org"], ["name", "Berry"], ["updated_at", "2015-06-16 06:17:19.317892"]]
1785
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.318959"], ["email", "loyal_runolfon@daniel.biz"], ["name", "King"], ["updated_at", "2015-06-16 06:17:19.318959"]]
1786
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.319997"], ["email", "rocio@weimann.biz"], ["name", "Lillie"], ["updated_at", "2015-06-16 06:17:19.319997"]]
1787
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1788
+  (0.2ms) ROLLBACK
1789
+  (0.2ms) BEGIN
1790
+ --------------------------------------
1791
+ BobTest: test_building_single_instance
1792
+ --------------------------------------
1793
+  (0.1ms) SAVEPOINT active_record_1
1794
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.323579"], ["email", "hipolito@hayes.biz"], ["name", "Audreanne"], ["updated_at", "2015-06-16 06:17:19.323579"]]
1795
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1796
+  (0.2ms) ROLLBACK
1797
+  (0.2ms) BEGIN
1798
+ -------------------------------------------
1799
+ BobTest: test_building_unpersisted_instance
1800
+ -------------------------------------------
1801
+  (0.2ms) SAVEPOINT active_record_1
1802
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1803
+  (0.1ms) ROLLBACK
1804
+  (0.1ms) BEGIN
1805
+ -------------------------------------------
1806
+ BobTest: test_passing_arguments_to_builders
1807
+ -------------------------------------------
1808
+  (0.1ms) SAVEPOINT active_record_1
1809
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:17:19.327984"], ["email", "bar@foobar.com"], ["name", "foo"], ["updated_at", "2015-06-16 06:17:19.327984"]]
1810
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1811
+  (0.2ms) ROLLBACK
1812
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
1813
+  (0.3ms) BEGIN
1814
+ -------------------------------------------------------
1815
+ MetaBuildTest: test_building_many_unpersisted_instances
1816
+ -------------------------------------------------------
1817
+  (0.2ms) SAVEPOINT active_record_1
1818
+  (0.4ms) RELEASE SAVEPOINT active_record_1
1819
+  (0.3ms) ROLLBACK
1820
+  (0.2ms) BEGIN
1821
+ -------------------------------------------------
1822
+ MetaBuildTest: test_building_many_valid_instances
1823
+ -------------------------------------------------
1824
+  (0.2ms) SAVEPOINT active_record_1
1825
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.489390"], ["email", "jadyn_hansen@lockman.com"], ["name", "Kathryne"], ["updated_at", "2015-06-16 06:18:50.489390"]]
1826
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.493423"], ["email", "providenci@berge.info"], ["name", "Paris"], ["updated_at", "2015-06-16 06:18:50.493423"]]
1827
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.494710"], ["email", "molly.greenfelder@jacobchulist.com"], ["name", "Stephania"], ["updated_at", "2015-06-16 06:18:50.494710"]]
1828
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.495881"], ["email", "maryam@bogan.biz"], ["name", "Cayla"], ["updated_at", "2015-06-16 06:18:50.495881"]]
1829
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.497069"], ["email", "emile_haag@hageneslowe.com"], ["name", "Blanca"], ["updated_at", "2015-06-16 06:18:50.497069"]]
1830
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.498278"], ["email", "reie@okeefe.biz"], ["name", "Logan"], ["updated_at", "2015-06-16 06:18:50.498278"]]
1831
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.499468"], ["email", "bryana@toy.org"], ["name", "Abbey"], ["updated_at", "2015-06-16 06:18:50.499468"]]
1832
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.500595"], ["email", "destany@watsica.name"], ["name", "Nia"], ["updated_at", "2015-06-16 06:18:50.500595"]]
1833
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.501718"], ["email", "brendon@considine.com"], ["name", "Sherwood"], ["updated_at", "2015-06-16 06:18:50.501718"]]
1834
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.502832"], ["email", "broderick.schaden@hills.info"], ["name", "Chet"], ["updated_at", "2015-06-16 06:18:50.502832"]]
1835
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.503950"], ["email", "halie_reilly@fritsch.com"], ["name", "Jewel"], ["updated_at", "2015-06-16 06:18:50.503950"]]
1836
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.505107"], ["email", "zakary.wunsch@olson.name"], ["name", "Annetta"], ["updated_at", "2015-06-16 06:18:50.505107"]]
1837
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.506198"], ["email", "scotty_spencer@mueller.name"], ["name", "Velda"], ["updated_at", "2015-06-16 06:18:50.506198"]]
1838
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.507273"], ["email", "keira_kuphal@oreilly.name"], ["name", "Douglas"], ["updated_at", "2015-06-16 06:18:50.507273"]]
1839
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.508327"], ["email", "adaline@steuber.org"], ["name", "Lucie"], ["updated_at", "2015-06-16 06:18:50.508327"]]
1840
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.509428"], ["email", "orion_thompson@hintz.info"], ["name", "Brittany"], ["updated_at", "2015-06-16 06:18:50.509428"]]
1841
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.510528"], ["email", "junius@reillyschaden.biz"], ["name", "Christa"], ["updated_at", "2015-06-16 06:18:50.510528"]]
1842
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.511620"], ["email", "jeanne.kozey@stanton.info"], ["name", "Callie"], ["updated_at", "2015-06-16 06:18:50.511620"]]
1843
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.512756"], ["email", "sedrick@oconnercronin.org"], ["name", "Torrey"], ["updated_at", "2015-06-16 06:18:50.512756"]]
1844
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.514056"], ["email", "royal@murray.org"], ["name", "Ayden"], ["updated_at", "2015-06-16 06:18:50.514056"]]
1845
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.515275"], ["email", "cindy.connelly@braunpagac.biz"], ["name", "Maybelle"], ["updated_at", "2015-06-16 06:18:50.515275"]]
1846
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.516444"], ["email", "jayne@oreilly.info"], ["name", "Adelia"], ["updated_at", "2015-06-16 06:18:50.516444"]]
1847
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.518128"], ["email", "jordan@lefflermayert.info"], ["name", "Brent"], ["updated_at", "2015-06-16 06:18:50.518128"]]
1848
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.519335"], ["email", "rebecca@rolfson.biz"], ["name", "Dorothea"], ["updated_at", "2015-06-16 06:18:50.519335"]]
1849
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.520367"], ["email", "kylie_pollich@bergnaum.biz"], ["name", "Jazmyn"], ["updated_at", "2015-06-16 06:18:50.520367"]]
1850
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.521409"], ["email", "pansy.stiedemann@dicki.org"], ["name", "River"], ["updated_at", "2015-06-16 06:18:50.521409"]]
1851
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.522397"], ["email", "taurean@wuckert.com"], ["name", "Bella"], ["updated_at", "2015-06-16 06:18:50.522397"]]
1852
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.523472"], ["email", "jey_bauch@ebertlarson.net"], ["name", "Grady"], ["updated_at", "2015-06-16 06:18:50.523472"]]
1853
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.524549"], ["email", "autumn@bergstrom.info"], ["name", "Herminio"], ["updated_at", "2015-06-16 06:18:50.524549"]]
1854
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.525663"], ["email", "leopoldo@cremin.biz"], ["name", "Carroll"], ["updated_at", "2015-06-16 06:18:50.525663"]]
1855
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.526804"], ["email", "osvaldo.cummerata@spencer.org"], ["name", "Leonel"], ["updated_at", "2015-06-16 06:18:50.526804"]]
1856
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.527900"], ["email", "hoyt_frami@zulauf.com"], ["name", "Isidro"], ["updated_at", "2015-06-16 06:18:50.527900"]]
1857
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.528849"], ["email", "reuben@aufderharvon.org"], ["name", "Marguerite"], ["updated_at", "2015-06-16 06:18:50.528849"]]
1858
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.529780"], ["email", "arthur@adams.biz"], ["name", "Angus"], ["updated_at", "2015-06-16 06:18:50.529780"]]
1859
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.530722"], ["email", "ulises_hane@ruel.net"], ["name", "Berta"], ["updated_at", "2015-06-16 06:18:50.530722"]]
1860
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.531645"], ["email", "beau@hilpert.info"], ["name", "Adolph"], ["updated_at", "2015-06-16 06:18:50.531645"]]
1861
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.532611"], ["email", "tabitha@will.org"], ["name", "Domenic"], ["updated_at", "2015-06-16 06:18:50.532611"]]
1862
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.533556"], ["email", "tristin@gibson.info"], ["name", "Camille"], ["updated_at", "2015-06-16 06:18:50.533556"]]
1863
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.534475"], ["email", "jayda@rogahnnader.org"], ["name", "Bella"], ["updated_at", "2015-06-16 06:18:50.534475"]]
1864
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.535405"], ["email", "arlene@ziemannmarquardt.net"], ["name", "Godfrey"], ["updated_at", "2015-06-16 06:18:50.535405"]]
1865
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.536344"], ["email", "waino@corkery.biz"], ["name", "Alexandria"], ["updated_at", "2015-06-16 06:18:50.536344"]]
1866
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.537272"], ["email", "arvel@wilkinsonratke.name"], ["name", "Lafayette"], ["updated_at", "2015-06-16 06:18:50.537272"]]
1867
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.538208"], ["email", "cristian_waelchi@klockowalsh.com"], ["name", "Vita"], ["updated_at", "2015-06-16 06:18:50.538208"]]
1868
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.539146"], ["email", "jeie@hand.name"], ["name", "Ally"], ["updated_at", "2015-06-16 06:18:50.539146"]]
1869
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.540088"], ["email", "annabell@simonis.com"], ["name", "Lucie"], ["updated_at", "2015-06-16 06:18:50.540088"]]
1870
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.541054"], ["email", "ruthe.stehr@schoenherman.net"], ["name", "Shanel"], ["updated_at", "2015-06-16 06:18:50.541054"]]
1871
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.541989"], ["email", "enos_gerhold@cainbrown.info"], ["name", "Johnnie"], ["updated_at", "2015-06-16 06:18:50.541989"]]
1872
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.542890"], ["email", "tracey@conn.biz"], ["name", "Declan"], ["updated_at", "2015-06-16 06:18:50.542890"]]
1873
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.543780"], ["email", "shea@hintz.biz"], ["name", "Dewitt"], ["updated_at", "2015-06-16 06:18:50.543780"]]
1874
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.544671"], ["email", "theo@gaylord.biz"], ["name", "Jeff"], ["updated_at", "2015-06-16 06:18:50.544671"]]
1875
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1876
+  (0.2ms) ROLLBACK
1877
+  (0.2ms) BEGIN
1878
+ --------------------------------------------
1879
+ MetaBuildTest: test_building_single_instance
1880
+ --------------------------------------------
1881
+  (0.2ms) SAVEPOINT active_record_1
1882
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.548110"], ["email", "geraldine@crona.net"], ["name", "Laurence"], ["updated_at", "2015-06-16 06:18:50.548110"]]
1883
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1884
+  (0.2ms) ROLLBACK
1885
+  (0.2ms) BEGIN
1886
+ -------------------------------------------------
1887
+ MetaBuildTest: test_building_unpersisted_instance
1888
+ -------------------------------------------------
1889
+  (0.1ms) SAVEPOINT active_record_1
1890
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1891
+  (0.1ms) ROLLBACK
1892
+  (0.1ms) BEGIN
1893
+ -------------------------------------------------
1894
+ MetaBuildTest: test_passing_arguments_to_builders
1895
+ -------------------------------------------------
1896
+  (0.1ms) SAVEPOINT active_record_1
1897
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:18:50.551815"], ["email", "bar@foobar.com"], ["name", "foo"], ["updated_at", "2015-06-16 06:18:50.551815"]]
1898
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1899
+  (0.1ms) ROLLBACK
1900
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
1901
+  (0.4ms) BEGIN
1902
+ -----------------------------------------------
1903
+ ForEachTest: test_creating_avatar_for_each_user
1904
+ -----------------------------------------------
1905
+  (0.3ms) ROLLBACK
1906
+  (0.3ms) BEGIN
1907
+ -------------------------------------------------------
1908
+ MetaBuildTest: test_building_many_unpersisted_instances
1909
+ -------------------------------------------------------
1910
+  (0.3ms) SAVEPOINT active_record_1
1911
+  (0.4ms) RELEASE SAVEPOINT active_record_1
1912
+  (0.2ms) ROLLBACK
1913
+  (0.2ms) BEGIN
1914
+ -------------------------------------------------
1915
+ MetaBuildTest: test_building_many_valid_instances
1916
+ -------------------------------------------------
1917
+  (0.2ms) SAVEPOINT active_record_1
1918
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.677563"], ["email", "bennie@priceyundt.net"], ["name", "Vicky"], ["updated_at", "2015-06-16 06:25:37.677563"]]
1919
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.681564"], ["email", "pascale@powlowskihills.net"], ["name", "Paris"], ["updated_at", "2015-06-16 06:25:37.681564"]]
1920
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.682829"], ["email", "aiyana.robel@mayert.name"], ["name", "Marisol"], ["updated_at", "2015-06-16 06:25:37.682829"]]
1921
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.684042"], ["email", "edwardo.schaden@smithamleuschke.name"], ["name", "Cassidy"], ["updated_at", "2015-06-16 06:25:37.684042"]]
1922
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.685259"], ["email", "sylvan_wisozk@erdman.biz"], ["name", "Demetris"], ["updated_at", "2015-06-16 06:25:37.685259"]]
1923
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.686574"], ["email", "nicolas@hageneslabadie.info"], ["name", "Sophie"], ["updated_at", "2015-06-16 06:25:37.686574"]]
1924
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.688254"], ["email", "baron_kulas@herman.org"], ["name", "Karolann"], ["updated_at", "2015-06-16 06:25:37.688254"]]
1925
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.689769"], ["email", "janice@turcotte.biz"], ["name", "Marisa"], ["updated_at", "2015-06-16 06:25:37.689769"]]
1926
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.690886"], ["email", "rebekah@kling.net"], ["name", "Abagail"], ["updated_at", "2015-06-16 06:25:37.690886"]]
1927
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.691977"], ["email", "vincenzo_ullrich@gerlach.name"], ["name", "Bette"], ["updated_at", "2015-06-16 06:25:37.691977"]]
1928
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.693034"], ["email", "marcelle@cummings.org"], ["name", "Moriah"], ["updated_at", "2015-06-16 06:25:37.693034"]]
1929
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.694118"], ["email", "cade@goyetteernser.name"], ["name", "Shaina"], ["updated_at", "2015-06-16 06:25:37.694118"]]
1930
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.695195"], ["email", "glennie.hermiston@wyman.biz"], ["name", "Asha"], ["updated_at", "2015-06-16 06:25:37.695195"]]
1931
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.696266"], ["email", "scotty@renner.info"], ["name", "Rolando"], ["updated_at", "2015-06-16 06:25:37.696266"]]
1932
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.697369"], ["email", "bobbie_huel@kautzer.com"], ["name", "Georgiana"], ["updated_at", "2015-06-16 06:25:37.697369"]]
1933
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.698438"], ["email", "fermin_rempel@jerde.biz"], ["name", "Dion"], ["updated_at", "2015-06-16 06:25:37.698438"]]
1934
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.699498"], ["email", "eloy@homenickgutmann.biz"], ["name", "Cicero"], ["updated_at", "2015-06-16 06:25:37.699498"]]
1935
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.700568"], ["email", "raymundo_quigley@graham.info"], ["name", "Tad"], ["updated_at", "2015-06-16 06:25:37.700568"]]
1936
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.701722"], ["email", "florian_wiegand@ratke.org"], ["name", "Aisha"], ["updated_at", "2015-06-16 06:25:37.701722"]]
1937
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.702812"], ["email", "lemuel@kuhlman.net"], ["name", "Mackenzie"], ["updated_at", "2015-06-16 06:25:37.702812"]]
1938
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.704040"], ["email", "maddison@hodkiewicz.com"], ["name", "Everette"], ["updated_at", "2015-06-16 06:25:37.704040"]]
1939
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.705567"], ["email", "lacy@auer.biz"], ["name", "Raphaelle"], ["updated_at", "2015-06-16 06:25:37.705567"]]
1940
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.706867"], ["email", "alvah@prosaccobechtelar.org"], ["name", "Claudine"], ["updated_at", "2015-06-16 06:25:37.706867"]]
1941
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.708049"], ["email", "gillian.gutkowski@rodriguez.com"], ["name", "Edna"], ["updated_at", "2015-06-16 06:25:37.708049"]]
1942
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.709179"], ["email", "kristian@hilpertvolkman.name"], ["name", "Walker"], ["updated_at", "2015-06-16 06:25:37.709179"]]
1943
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.710297"], ["email", "durward@schaefergulgowski.net"], ["name", "Kara"], ["updated_at", "2015-06-16 06:25:37.710297"]]
1944
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.711454"], ["email", "olin@torphywilliamson.org"], ["name", "Freddy"], ["updated_at", "2015-06-16 06:25:37.711454"]]
1945
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.712593"], ["email", "gina@morar.com"], ["name", "Lamar"], ["updated_at", "2015-06-16 06:25:37.712593"]]
1946
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.713749"], ["email", "joesph.wintheiser@klingernser.name"], ["name", "Nelda"], ["updated_at", "2015-06-16 06:25:37.713749"]]
1947
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.714847"], ["email", "adrien_rau@willms.name"], ["name", "Ruben"], ["updated_at", "2015-06-16 06:25:37.714847"]]
1948
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.715919"], ["email", "nellie_legros@carroll.org"], ["name", "Dock"], ["updated_at", "2015-06-16 06:25:37.715919"]]
1949
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.716988"], ["email", "katrina.volkman@lubowitz.net"], ["name", "Baby"], ["updated_at", "2015-06-16 06:25:37.716988"]]
1950
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.718265"], ["email", "alexys_mayer@turcotte.name"], ["name", "Emile"], ["updated_at", "2015-06-16 06:25:37.718265"]]
1951
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.719368"], ["email", "jazmin.hirthe@vandervortleuschke.name"], ["name", "Beatrice"], ["updated_at", "2015-06-16 06:25:37.719368"]]
1952
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.720516"], ["email", "clementine@funk.com"], ["name", "Corrine"], ["updated_at", "2015-06-16 06:25:37.720516"]]
1953
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.721639"], ["email", "antonio.bergnaum@schaden.net"], ["name", "Bernie"], ["updated_at", "2015-06-16 06:25:37.721639"]]
1954
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.722837"], ["email", "benton@osinski.com"], ["name", "Aidan"], ["updated_at", "2015-06-16 06:25:37.722837"]]
1955
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.723949"], ["email", "aiyana.eichmann@senger.com"], ["name", "Marina"], ["updated_at", "2015-06-16 06:25:37.723949"]]
1956
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.725110"], ["email", "kennedi@runolfongrant.biz"], ["name", "Jeremie"], ["updated_at", "2015-06-16 06:25:37.725110"]]
1957
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.726270"], ["email", "zachary@volkmanweimann.info"], ["name", "Turner"], ["updated_at", "2015-06-16 06:25:37.726270"]]
1958
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.727381"], ["email", "zachery@runte.info"], ["name", "Keven"], ["updated_at", "2015-06-16 06:25:37.727381"]]
1959
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.728525"], ["email", "deie@reingerlowe.com"], ["name", "Viviane"], ["updated_at", "2015-06-16 06:25:37.728525"]]
1960
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.729656"], ["email", "christ.muller@gutmann.com"], ["name", "Clifton"], ["updated_at", "2015-06-16 06:25:37.729656"]]
1961
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.730815"], ["email", "melany@goldner.org"], ["name", "Chelsea"], ["updated_at", "2015-06-16 06:25:37.730815"]]
1962
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.731983"], ["email", "sunny.greenfelder@gerhold.org"], ["name", "Bernhard"], ["updated_at", "2015-06-16 06:25:37.731983"]]
1963
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.733129"], ["email", "suzanne@nienow.biz"], ["name", "Rose"], ["updated_at", "2015-06-16 06:25:37.733129"]]
1964
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.734222"], ["email", "zoey.bayer@corkerypfeffer.info"], ["name", "Hiram"], ["updated_at", "2015-06-16 06:25:37.734222"]]
1965
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.735349"], ["email", "xavier@hagenesemmerich.biz"], ["name", "Josianne"], ["updated_at", "2015-06-16 06:25:37.735349"]]
1966
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.736540"], ["email", "tamara_white@casper.name"], ["name", "Lurline"], ["updated_at", "2015-06-16 06:25:37.736540"]]
1967
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.737623"], ["email", "porter@balistreristeuber.biz"], ["name", "Odie"], ["updated_at", "2015-06-16 06:25:37.737623"]]
1968
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1969
+  (0.2ms) ROLLBACK
1970
+  (0.2ms) BEGIN
1971
+ --------------------------------------------
1972
+ MetaBuildTest: test_building_single_instance
1973
+ --------------------------------------------
1974
+  (0.2ms) SAVEPOINT active_record_1
1975
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.741332"], ["email", "marietta_strosin@robel.biz"], ["name", "Melody"], ["updated_at", "2015-06-16 06:25:37.741332"]]
1976
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1977
+  (0.2ms) ROLLBACK
1978
+  (0.1ms) BEGIN
1979
+ -------------------------------------------------
1980
+ MetaBuildTest: test_building_unpersisted_instance
1981
+ -------------------------------------------------
1982
+  (0.1ms) SAVEPOINT active_record_1
1983
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1984
+  (0.1ms) ROLLBACK
1985
+  (0.1ms) BEGIN
1986
+ -------------------------------------------------
1987
+ MetaBuildTest: test_passing_arguments_to_builders
1988
+ -------------------------------------------------
1989
+  (0.1ms) SAVEPOINT active_record_1
1990
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:25:37.744963"], ["email", "bar@foobar.com"], ["name", "foo"], ["updated_at", "2015-06-16 06:25:37.744963"]]
1991
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1992
+  (0.1ms) ROLLBACK
1993
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
1994
+  (0.3ms) BEGIN
1995
+ -------------------------------------------------------
1996
+ MetaBuildTest: test_building_many_unpersisted_instances
1997
+ -------------------------------------------------------
1998
+  (0.6ms) SAVEPOINT active_record_1
1999
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2000
+  (0.3ms) ROLLBACK
2001
+  (0.2ms) BEGIN
2002
+ -------------------------------------------------
2003
+ MetaBuildTest: test_building_many_valid_instances
2004
+ -------------------------------------------------
2005
+  (0.6ms) SAVEPOINT active_record_1
2006
+ SQL (1.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.299232"], ["email", "danial@jacobi.net"], ["name", "Woodrow"], ["updated_at", "2015-06-16 06:26:49.299232"]]
2007
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.317399"], ["email", "khalid_walker@wintheiser.info"], ["name", "Thad"], ["updated_at", "2015-06-16 06:26:49.317399"]]
2008
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.327191"], ["email", "jolie_feeney@schmeler.info"], ["name", "Melissa"], ["updated_at", "2015-06-16 06:26:49.327191"]]
2009
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.335620"], ["email", "juana_stamm@ferry.net"], ["name", "Ethelyn"], ["updated_at", "2015-06-16 06:26:49.335620"]]
2010
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.343190"], ["email", "tamara.murray@millsmills.org"], ["name", "Cheyenne"], ["updated_at", "2015-06-16 06:26:49.343190"]]
2011
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.350493"], ["email", "willy@creminpredovic.com"], ["name", "Helene"], ["updated_at", "2015-06-16 06:26:49.350493"]]
2012
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.357665"], ["email", "gilbert@roob.biz"], ["name", "Cleta"], ["updated_at", "2015-06-16 06:26:49.357665"]]
2013
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.364739"], ["email", "bruce@hilpert.name"], ["name", "Rosella"], ["updated_at", "2015-06-16 06:26:49.364739"]]
2014
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.371725"], ["email", "johann.lockman@botsford.biz"], ["name", "Dawson"], ["updated_at", "2015-06-16 06:26:49.371725"]]
2015
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.378381"], ["email", "mauricio@rath.name"], ["name", "Kianna"], ["updated_at", "2015-06-16 06:26:49.378381"]]
2016
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.384893"], ["email", "cathrine@hartmann.net"], ["name", "Candida"], ["updated_at", "2015-06-16 06:26:49.384893"]]
2017
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.391169"], ["email", "seth.streich@roob.biz"], ["name", "Otto"], ["updated_at", "2015-06-16 06:26:49.391169"]]
2018
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.397303"], ["email", "june.jacobs@kertzmann.com"], ["name", "Janie"], ["updated_at", "2015-06-16 06:26:49.397303"]]
2019
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.403338"], ["email", "raheem@reillyoconner.net"], ["name", "Crystel"], ["updated_at", "2015-06-16 06:26:49.403338"]]
2020
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.409693"], ["email", "ewald.crona@eichmann.biz"], ["name", "Emilie"], ["updated_at", "2015-06-16 06:26:49.409693"]]
2021
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.415762"], ["email", "estelle.trantow@luettgenparker.com"], ["name", "Layla"], ["updated_at", "2015-06-16 06:26:49.415762"]]
2022
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.421849"], ["email", "verlie@gleason.com"], ["name", "Weston"], ["updated_at", "2015-06-16 06:26:49.421849"]]
2023
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.427760"], ["email", "madge@rathpacocha.name"], ["name", "Erwin"], ["updated_at", "2015-06-16 06:26:49.427760"]]
2024
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.434001"], ["email", "maximillia_zboncak@hane.biz"], ["name", "Magdalen"], ["updated_at", "2015-06-16 06:26:49.434001"]]
2025
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.439971"], ["email", "braxton.stroman@dickinsonjohns.org"], ["name", "Geovany"], ["updated_at", "2015-06-16 06:26:49.439971"]]
2026
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.445985"], ["email", "annamae_medhurst@bernier.net"], ["name", "Germaine"], ["updated_at", "2015-06-16 06:26:49.445985"]]
2027
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.451715"], ["email", "shayna@stehr.com"], ["name", "Price"], ["updated_at", "2015-06-16 06:26:49.451715"]]
2028
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.457294"], ["email", "amelia@huelbergstrom.info"], ["name", "Jameson"], ["updated_at", "2015-06-16 06:26:49.457294"]]
2029
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.462883"], ["email", "orville_kulas@wiegand.com"], ["name", "Rex"], ["updated_at", "2015-06-16 06:26:49.462883"]]
2030
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.468711"], ["email", "mia_larson@schmeler.com"], ["name", "Jamaal"], ["updated_at", "2015-06-16 06:26:49.468711"]]
2031
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.474344"], ["email", "dashawn@wyman.info"], ["name", "Kory"], ["updated_at", "2015-06-16 06:26:49.474344"]]
2032
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.479842"], ["email", "mark@keler.net"], ["name", "Reyna"], ["updated_at", "2015-06-16 06:26:49.479842"]]
2033
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.485509"], ["email", "alanna_ernser@koch.net"], ["name", "Timmothy"], ["updated_at", "2015-06-16 06:26:49.485509"]]
2034
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.490929"], ["email", "treie.runte@hermanneichmann.com"], ["name", "Olaf"], ["updated_at", "2015-06-16 06:26:49.490929"]]
2035
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.496329"], ["email", "oliver.bergstrom@fahey.info"], ["name", "Glenna"], ["updated_at", "2015-06-16 06:26:49.496329"]]
2036
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.501742"], ["email", "samson_okon@schustervonrueden.net"], ["name", "Sigrid"], ["updated_at", "2015-06-16 06:26:49.501742"]]
2037
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.507185"], ["email", "minerva_schroeder@olsonhermiston.name"], ["name", "Berta"], ["updated_at", "2015-06-16 06:26:49.507185"]]
2038
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.512777"], ["email", "verla.veum@wehner.name"], ["name", "Bo"], ["updated_at", "2015-06-16 06:26:49.512777"]]
2039
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.518203"], ["email", "morris@kozey.biz"], ["name", "Stacey"], ["updated_at", "2015-06-16 06:26:49.518203"]]
2040
+ SQL (78.8ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.523608"], ["email", "chester.nolan@stokes.info"], ["name", "Ronaldo"], ["updated_at", "2015-06-16 06:26:49.523608"]]
2041
+ SQL (0.9ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.609932"], ["email", "baby.herzog@deckowweber.biz"], ["name", "Hugh"], ["updated_at", "2015-06-16 06:26:49.609932"]]
2042
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.618753"], ["email", "levi_pfeffer@okeefe.net"], ["name", "Herta"], ["updated_at", "2015-06-16 06:26:49.618753"]]
2043
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.624599"], ["email", "newell@schuppedaniel.net"], ["name", "Larue"], ["updated_at", "2015-06-16 06:26:49.624599"]]
2044
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.630350"], ["email", "sven@schuster.net"], ["name", "Eino"], ["updated_at", "2015-06-16 06:26:49.630350"]]
2045
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.635952"], ["email", "cleve@feeney.name"], ["name", "Crystal"], ["updated_at", "2015-06-16 06:26:49.635952"]]
2046
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.641537"], ["email", "camila.lowe@schroeder.com"], ["name", "Henriette"], ["updated_at", "2015-06-16 06:26:49.641537"]]
2047
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.646864"], ["email", "fredy.olson@auerrowe.info"], ["name", "Breana"], ["updated_at", "2015-06-16 06:26:49.646864"]]
2048
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.652236"], ["email", "jamaal_fadel@roob.com"], ["name", "Heber"], ["updated_at", "2015-06-16 06:26:49.652236"]]
2049
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.657390"], ["email", "rey.mckenzie@framilarson.name"], ["name", "Fredy"], ["updated_at", "2015-06-16 06:26:49.657390"]]
2050
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.662510"], ["email", "demond@christiansen.info"], ["name", "Cale"], ["updated_at", "2015-06-16 06:26:49.662510"]]
2051
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.667718"], ["email", "maynard.wolff@kundeturcotte.net"], ["name", "Julianne"], ["updated_at", "2015-06-16 06:26:49.667718"]]
2052
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.673150"], ["email", "kira.wiegand@welch.org"], ["name", "Alvena"], ["updated_at", "2015-06-16 06:26:49.673150"]]
2053
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.678092"], ["email", "dolores_barrows@watsicaharvey.name"], ["name", "Bruce"], ["updated_at", "2015-06-16 06:26:49.678092"]]
2054
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.683253"], ["email", "orval.schimmel@weber.com"], ["name", "Dianna"], ["updated_at", "2015-06-16 06:26:49.683253"]]
2055
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:49.688494"], ["email", "skye@ratkebahringer.biz"], ["name", "Reginald"], ["updated_at", "2015-06-16 06:26:49.688494"]]
2056
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2057
+  (0.4ms) ROLLBACK
2058
+  (0.3ms) BEGIN
2059
+ --------------------------------------------
2060
+ MetaBuildTest: test_building_single_instance
2061
+ --------------------------------------------
2062
+  (0.5ms) SAVEPOINT active_record_1
2063
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:51.501662"], ["email", "jarvis.oberbrunner@jacobi.com"], ["name", "Kathleen"], ["updated_at", "2015-06-16 06:26:51.501662"]]
2064
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2065
+  (0.5ms) ROLLBACK
2066
+  (0.4ms) BEGIN
2067
+ -------------------------------------------------
2068
+ MetaBuildTest: test_building_unpersisted_instance
2069
+ -------------------------------------------------
2070
+  (0.5ms) SAVEPOINT active_record_1
2071
+  (0.4ms) RELEASE SAVEPOINT active_record_1
2072
+  (0.4ms) ROLLBACK
2073
+  (0.4ms) BEGIN
2074
+ -------------------------------------------------
2075
+ MetaBuildTest: test_passing_arguments_to_builders
2076
+ -------------------------------------------------
2077
+  (0.6ms) SAVEPOINT active_record_1
2078
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:26:52.387932"], ["email", "bar@foobar.com"], ["name", "foo"], ["updated_at", "2015-06-16 06:26:52.387932"]]
2079
+  (0.4ms) RELEASE SAVEPOINT active_record_1
2080
+  (0.3ms) ROLLBACK
2081
+  (0.3ms) BEGIN
2082
+ -----------------------------------------------
2083
+ ForEachTest: test_creating_avatar_for_each_user
2084
+ -----------------------------------------------
2085
+  (0.5ms) ROLLBACK
2086
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2087
+  (0.2ms) BEGIN
2088
+ -----------------------------------------------
2089
+ ForEachTest: test_creating_avatar_for_each_user
2090
+ -----------------------------------------------
2091
+  (0.2ms) SAVEPOINT active_record_1
2092
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.747829"], ["email", "hobart@hammeshuel.info"], ["name", "Mac"], ["updated_at", "2015-06-16 06:28:28.747829"]]
2093
+ SQL (0.5ms) UPDATE "users" SET "avatar" = $1, "updated_at" = $2 WHERE "users"."id" = 1136 [["avatar", "http://robohash.org/nequenobisdeserunt.png?size=300x300"], ["updated_at", "2015-06-16 06:28:28.751464"]]
2094
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2095
+  (0.2ms) ROLLBACK
2096
+  (0.2ms) BEGIN
2097
+ -------------------------------------------------------
2098
+ MetaBuildTest: test_building_many_unpersisted_instances
2099
+ -------------------------------------------------------
2100
+  (0.2ms) SAVEPOINT active_record_1
2101
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2102
+  (0.1ms) ROLLBACK
2103
+  (0.1ms) BEGIN
2104
+ -------------------------------------------------
2105
+ MetaBuildTest: test_building_many_valid_instances
2106
+ -------------------------------------------------
2107
+  (0.1ms) SAVEPOINT active_record_1
2108
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.768265"], ["email", "natasha@roobaltenwerth.name"], ["name", "Dariana"], ["updated_at", "2015-06-16 06:28:28.768265"]]
2109
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.769491"], ["email", "wendy@wisoky.org"], ["name", "Elijah"], ["updated_at", "2015-06-16 06:28:28.769491"]]
2110
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.770435"], ["email", "johnpaul@jones.org"], ["name", "Waldo"], ["updated_at", "2015-06-16 06:28:28.770435"]]
2111
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.771516"], ["email", "lavinia@bergnaum.info"], ["name", "Aracely"], ["updated_at", "2015-06-16 06:28:28.771516"]]
2112
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.772583"], ["email", "lulu@wisozk.name"], ["name", "Oswald"], ["updated_at", "2015-06-16 06:28:28.772583"]]
2113
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.773708"], ["email", "mariah.boyer@goldner.org"], ["name", "Torey"], ["updated_at", "2015-06-16 06:28:28.773708"]]
2114
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.774701"], ["email", "darren@sanford.net"], ["name", "Vada"], ["updated_at", "2015-06-16 06:28:28.774701"]]
2115
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.775699"], ["email", "josefina@kunze.net"], ["name", "Millie"], ["updated_at", "2015-06-16 06:28:28.775699"]]
2116
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.776686"], ["email", "doyle_botsford@boganoberbrunner.name"], ["name", "Ilene"], ["updated_at", "2015-06-16 06:28:28.776686"]]
2117
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.777717"], ["email", "schuyler.blick@rohan.info"], ["name", "Sigmund"], ["updated_at", "2015-06-16 06:28:28.777717"]]
2118
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.778724"], ["email", "ralph@ward.net"], ["name", "Eunice"], ["updated_at", "2015-06-16 06:28:28.778724"]]
2119
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.779736"], ["email", "markus@whiteschmeler.name"], ["name", "Kirsten"], ["updated_at", "2015-06-16 06:28:28.779736"]]
2120
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.780663"], ["email", "elnora_carter@wizaflatley.org"], ["name", "Jace"], ["updated_at", "2015-06-16 06:28:28.780663"]]
2121
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.781780"], ["email", "jaclyn@mills.com"], ["name", "Lionel"], ["updated_at", "2015-06-16 06:28:28.781780"]]
2122
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.782764"], ["email", "dallas@schoenbaumbach.name"], ["name", "Adan"], ["updated_at", "2015-06-16 06:28:28.782764"]]
2123
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.783812"], ["email", "germaine@reinger.com"], ["name", "Adolph"], ["updated_at", "2015-06-16 06:28:28.783812"]]
2124
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.785410"], ["email", "haie@ondricka.net"], ["name", "Elinor"], ["updated_at", "2015-06-16 06:28:28.785410"]]
2125
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.786509"], ["email", "tito@hills.info"], ["name", "Santino"], ["updated_at", "2015-06-16 06:28:28.786509"]]
2126
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.787517"], ["email", "stephen.hyatt@spinka.com"], ["name", "Issac"], ["updated_at", "2015-06-16 06:28:28.787517"]]
2127
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.788401"], ["email", "shemar_reichert@mckenziegreenholt.net"], ["name", "Emmy"], ["updated_at", "2015-06-16 06:28:28.788401"]]
2128
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.789302"], ["email", "petra.ohara@kertzmann.info"], ["name", "Una"], ["updated_at", "2015-06-16 06:28:28.789302"]]
2129
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.790178"], ["email", "jovani.kuhic@ziemannziemann.name"], ["name", "Viva"], ["updated_at", "2015-06-16 06:28:28.790178"]]
2130
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.791170"], ["email", "jaclyn@hodkiewicz.org"], ["name", "Elissa"], ["updated_at", "2015-06-16 06:28:28.791170"]]
2131
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.792134"], ["email", "ward@jenkins.org"], ["name", "Ashly"], ["updated_at", "2015-06-16 06:28:28.792134"]]
2132
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.793113"], ["email", "leon@gorczanycronin.net"], ["name", "Easton"], ["updated_at", "2015-06-16 06:28:28.793113"]]
2133
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.794126"], ["email", "elias_kunze@leffler.net"], ["name", "Bettye"], ["updated_at", "2015-06-16 06:28:28.794126"]]
2134
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.795140"], ["email", "mariela.zemlak@hanelebsack.biz"], ["name", "Junior"], ["updated_at", "2015-06-16 06:28:28.795140"]]
2135
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.796133"], ["email", "alba@turcotte.name"], ["name", "Wilfred"], ["updated_at", "2015-06-16 06:28:28.796133"]]
2136
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.797160"], ["email", "clementina_pagac@kulas.com"], ["name", "Monique"], ["updated_at", "2015-06-16 06:28:28.797160"]]
2137
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.798145"], ["email", "dakota@hahn.name"], ["name", "Lilyan"], ["updated_at", "2015-06-16 06:28:28.798145"]]
2138
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.799140"], ["email", "caesar.mckenzie@brakus.net"], ["name", "Roselyn"], ["updated_at", "2015-06-16 06:28:28.799140"]]
2139
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.800158"], ["email", "leonard_borer@sipeshirthe.biz"], ["name", "Gertrude"], ["updated_at", "2015-06-16 06:28:28.800158"]]
2140
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.801207"], ["email", "imelda@volkman.biz"], ["name", "Mabelle"], ["updated_at", "2015-06-16 06:28:28.801207"]]
2141
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.802255"], ["email", "madisyn@mccullough.name"], ["name", "Marjory"], ["updated_at", "2015-06-16 06:28:28.802255"]]
2142
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.803276"], ["email", "claria@grimes.info"], ["name", "Bailey"], ["updated_at", "2015-06-16 06:28:28.803276"]]
2143
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.804311"], ["email", "eugene@mayert.org"], ["name", "Sandy"], ["updated_at", "2015-06-16 06:28:28.804311"]]
2144
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.805538"], ["email", "sheridan_schulist@bartoletti.info"], ["name", "Fermin"], ["updated_at", "2015-06-16 06:28:28.805538"]]
2145
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.807087"], ["email", "gwendolyn.leuschke@jacobsoncasper.org"], ["name", "Thaddeus"], ["updated_at", "2015-06-16 06:28:28.807087"]]
2146
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.808424"], ["email", "frederik@reillywest.name"], ["name", "Adrian"], ["updated_at", "2015-06-16 06:28:28.808424"]]
2147
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.809406"], ["email", "nedra@wisoky.biz"], ["name", "Murphy"], ["updated_at", "2015-06-16 06:28:28.809406"]]
2148
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.810367"], ["email", "owen@conroyjohnson.com"], ["name", "Ellsworth"], ["updated_at", "2015-06-16 06:28:28.810367"]]
2149
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.811345"], ["email", "jarvis@armstrong.net"], ["name", "Orrin"], ["updated_at", "2015-06-16 06:28:28.811345"]]
2150
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.812339"], ["email", "haie@beatty.org"], ["name", "Milford"], ["updated_at", "2015-06-16 06:28:28.812339"]]
2151
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.813300"], ["email", "tristin@von.info"], ["name", "Trever"], ["updated_at", "2015-06-16 06:28:28.813300"]]
2152
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.814320"], ["email", "aleia.beatty@wolf.biz"], ["name", "Paige"], ["updated_at", "2015-06-16 06:28:28.814320"]]
2153
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.815326"], ["email", "piper.mann@hintz.net"], ["name", "Laurie"], ["updated_at", "2015-06-16 06:28:28.815326"]]
2154
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.816328"], ["email", "estell_kshlerin@jenkins.info"], ["name", "Sigrid"], ["updated_at", "2015-06-16 06:28:28.816328"]]
2155
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.817331"], ["email", "felipa_lueilwitz@rolfson.net"], ["name", "Gregory"], ["updated_at", "2015-06-16 06:28:28.817331"]]
2156
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.818314"], ["email", "kaandra_marquardt@mccullough.org"], ["name", "Sean"], ["updated_at", "2015-06-16 06:28:28.818314"]]
2157
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.819267"], ["email", "tommie@schroeder.biz"], ["name", "Jarrell"], ["updated_at", "2015-06-16 06:28:28.819267"]]
2158
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2159
+  (0.2ms) ROLLBACK
2160
+  (0.1ms) BEGIN
2161
+ --------------------------------------------
2162
+ MetaBuildTest: test_building_single_instance
2163
+ --------------------------------------------
2164
+  (0.1ms) SAVEPOINT active_record_1
2165
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.822443"], ["email", "je@walterlockman.org"], ["name", "Roel"], ["updated_at", "2015-06-16 06:28:28.822443"]]
2166
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2167
+  (0.1ms) ROLLBACK
2168
+  (0.1ms) BEGIN
2169
+ -------------------------------------------------
2170
+ MetaBuildTest: test_building_unpersisted_instance
2171
+ -------------------------------------------------
2172
+  (0.1ms) SAVEPOINT active_record_1
2173
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2174
+  (0.1ms) ROLLBACK
2175
+  (0.1ms) BEGIN
2176
+ -------------------------------------------------
2177
+ MetaBuildTest: test_passing_arguments_to_builders
2178
+ -------------------------------------------------
2179
+  (0.1ms) SAVEPOINT active_record_1
2180
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:28:28.825219"], ["email", "bar@foobar.com"], ["name", "foo"], ["updated_at", "2015-06-16 06:28:28.825219"]]
2181
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2182
+  (0.1ms) ROLLBACK
2183
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
2184
+  (0.3ms) BEGIN
2185
+ ---------------------------------------
2186
+ ForEachTest: test_comment_instantiation
2187
+ ---------------------------------------
2188
+  (0.3ms) SAVEPOINT active_record_1
2189
+ SQL (0.8ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.456332"], ["email", "obie.swift@koepp.name"], ["name", "Aiden"], ["updated_at", "2015-06-16 06:33:30.456332"]]
2190
+ PG::UndefinedTable: ERROR: relation "comments" does not exist
2191
+ LINE 5: WHERE a.attrelid = '"comments"'::regclass
2192
+ ^
2193
+ : SELECT a.attname, format_type(a.atttypid, a.atttypmod),
2194
+ pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod
2195
+ FROM pg_attribute a LEFT JOIN pg_attrdef d
2196
+ ON a.attrelid = d.adrelid AND a.attnum = d.adnum
2197
+ WHERE a.attrelid = '"comments"'::regclass
2198
+ AND a.attnum > 0 AND NOT a.attisdropped
2199
+ ORDER BY a.attnum
2200
+
2201
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
2202
+  (0.3ms) ROLLBACK
2203
+  (0.3ms) BEGIN
2204
+ -----------------------------------------------
2205
+ ForEachTest: test_creating_avatar_for_each_user
2206
+ -----------------------------------------------
2207
+  (0.3ms) SAVEPOINT active_record_1
2208
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.489149"], ["email", "noble_mosciski@ernser.net"], ["name", "Jonathan"], ["updated_at", "2015-06-16 06:33:30.489149"]]
2209
+ PG::UndefinedTable: ERROR: relation "comments" does not exist
2210
+ LINE 5: WHERE a.attrelid = '"comments"'::regclass
2211
+ ^
2212
+ : SELECT a.attname, format_type(a.atttypid, a.atttypmod),
2213
+ pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod
2214
+ FROM pg_attribute a LEFT JOIN pg_attrdef d
2215
+ ON a.attrelid = d.adrelid AND a.attnum = d.adnum
2216
+ WHERE a.attrelid = '"comments"'::regclass
2217
+ AND a.attnum > 0 AND NOT a.attisdropped
2218
+ ORDER BY a.attnum
2219
+
2220
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
2221
+  (0.3ms) ROLLBACK
2222
+  (0.3ms) BEGIN
2223
+ -------------------------------------------------------
2224
+ MetaBuildTest: test_building_many_unpersisted_instances
2225
+ -------------------------------------------------------
2226
+  (0.3ms) SAVEPOINT active_record_1
2227
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2228
+  (0.5ms) ROLLBACK
2229
+  (0.3ms) BEGIN
2230
+ -------------------------------------------------
2231
+ MetaBuildTest: test_building_many_valid_instances
2232
+ -------------------------------------------------
2233
+  (0.3ms) SAVEPOINT active_record_1
2234
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.520881"], ["email", "annamarie@ohara.net"], ["name", "Dillan"], ["updated_at", "2015-06-16 06:33:30.520881"]]
2235
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.523350"], ["email", "breana_sauer@sawayn.info"], ["name", "Ali"], ["updated_at", "2015-06-16 06:33:30.523350"]]
2236
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.525417"], ["email", "sophie@christiansen.com"], ["name", "Kailey"], ["updated_at", "2015-06-16 06:33:30.525417"]]
2237
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.527371"], ["email", "teie.bergstrom@jacobson.net"], ["name", "Joel"], ["updated_at", "2015-06-16 06:33:30.527371"]]
2238
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.529273"], ["email", "jovany@dickens.info"], ["name", "Al"], ["updated_at", "2015-06-16 06:33:30.529273"]]
2239
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.531177"], ["email", "yasmine.lueilwitz@smith.name"], ["name", "Lenny"], ["updated_at", "2015-06-16 06:33:30.531177"]]
2240
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.532898"], ["email", "howell@dicki.biz"], ["name", "Dane"], ["updated_at", "2015-06-16 06:33:30.532898"]]
2241
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.534705"], ["email", "clay@oreilly.name"], ["name", "Therese"], ["updated_at", "2015-06-16 06:33:30.534705"]]
2242
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.536499"], ["email", "kiel_hegmann@kautzer.com"], ["name", "Susana"], ["updated_at", "2015-06-16 06:33:30.536499"]]
2243
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.538142"], ["email", "susanna@beatty.name"], ["name", "Olaf"], ["updated_at", "2015-06-16 06:33:30.538142"]]
2244
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.539704"], ["email", "ashlee@schillergrimes.info"], ["name", "Gabe"], ["updated_at", "2015-06-16 06:33:30.539704"]]
2245
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.541261"], ["email", "ella@moengottlieb.name"], ["name", "Julien"], ["updated_at", "2015-06-16 06:33:30.541261"]]
2246
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.542856"], ["email", "eloy.oconnell@klein.biz"], ["name", "Etha"], ["updated_at", "2015-06-16 06:33:30.542856"]]
2247
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.544485"], ["email", "geovanni_green@bashirianhamill.net"], ["name", "Helmer"], ["updated_at", "2015-06-16 06:33:30.544485"]]
2248
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.546264"], ["email", "lela@windler.name"], ["name", "Brennon"], ["updated_at", "2015-06-16 06:33:30.546264"]]
2249
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.547971"], ["email", "jack@hane.name"], ["name", "Edgar"], ["updated_at", "2015-06-16 06:33:30.547971"]]
2250
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.550065"], ["email", "donna_graham@hammes.biz"], ["name", "Madonna"], ["updated_at", "2015-06-16 06:33:30.550065"]]
2251
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.552233"], ["email", "harmony@reichel.net"], ["name", "Christina"], ["updated_at", "2015-06-16 06:33:30.552233"]]
2252
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.554436"], ["email", "justyn_sporer@mullerleuschke.org"], ["name", "Gilda"], ["updated_at", "2015-06-16 06:33:30.554436"]]
2253
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.556681"], ["email", "katharina@abernathy.info"], ["name", "Milford"], ["updated_at", "2015-06-16 06:33:30.556681"]]
2254
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.558691"], ["email", "jazmyn_stark@bernhard.biz"], ["name", "Nicole"], ["updated_at", "2015-06-16 06:33:30.558691"]]
2255
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.560450"], ["email", "fae_mueller@douglas.info"], ["name", "Ward"], ["updated_at", "2015-06-16 06:33:30.560450"]]
2256
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.562098"], ["email", "buck@hackett.biz"], ["name", "Coy"], ["updated_at", "2015-06-16 06:33:30.562098"]]
2257
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.563699"], ["email", "dorothea@larson.name"], ["name", "Randall"], ["updated_at", "2015-06-16 06:33:30.563699"]]
2258
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.565332"], ["email", "eliezer@volkmanroberts.info"], ["name", "Casimir"], ["updated_at", "2015-06-16 06:33:30.565332"]]
2259
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.566969"], ["email", "patrick@buckridge.com"], ["name", "Aric"], ["updated_at", "2015-06-16 06:33:30.566969"]]
2260
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.568562"], ["email", "dante@king.biz"], ["name", "Arden"], ["updated_at", "2015-06-16 06:33:30.568562"]]
2261
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.570160"], ["email", "kenyatta.reilly@luettgen.info"], ["name", "Noemy"], ["updated_at", "2015-06-16 06:33:30.570160"]]
2262
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.571695"], ["email", "carol@hoppe.org"], ["name", "Larry"], ["updated_at", "2015-06-16 06:33:30.571695"]]
2263
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.573290"], ["email", "asha@mohr.net"], ["name", "Porter"], ["updated_at", "2015-06-16 06:33:30.573290"]]
2264
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.574821"], ["email", "leda_collins@rempel.name"], ["name", "Aileen"], ["updated_at", "2015-06-16 06:33:30.574821"]]
2265
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.576348"], ["email", "annamae_skiles@raynor.com"], ["name", "Tod"], ["updated_at", "2015-06-16 06:33:30.576348"]]
2266
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.577941"], ["email", "savanah.krajcik@brakus.name"], ["name", "Eve"], ["updated_at", "2015-06-16 06:33:30.577941"]]
2267
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.579471"], ["email", "breana_stehr@bosco.com"], ["name", "Adrienne"], ["updated_at", "2015-06-16 06:33:30.579471"]]
2268
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.581036"], ["email", "moshe@vandervort.org"], ["name", "Earnestine"], ["updated_at", "2015-06-16 06:33:30.581036"]]
2269
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.582530"], ["email", "ruthe@kihn.org"], ["name", "Savannah"], ["updated_at", "2015-06-16 06:33:30.582530"]]
2270
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.584020"], ["email", "everett_grimes@ledner.biz"], ["name", "Bianka"], ["updated_at", "2015-06-16 06:33:30.584020"]]
2271
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.585479"], ["email", "felipe@hickle.com"], ["name", "Noe"], ["updated_at", "2015-06-16 06:33:30.585479"]]
2272
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.586945"], ["email", "georgianna@kozey.biz"], ["name", "Jamel"], ["updated_at", "2015-06-16 06:33:30.586945"]]
2273
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.588371"], ["email", "ashley@lubowitzkris.com"], ["name", "Rico"], ["updated_at", "2015-06-16 06:33:30.588371"]]
2274
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.589844"], ["email", "lyda@cruickshank.biz"], ["name", "Nickolas"], ["updated_at", "2015-06-16 06:33:30.589844"]]
2275
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.591275"], ["email", "marianna@schmittankunding.net"], ["name", "Alia"], ["updated_at", "2015-06-16 06:33:30.591275"]]
2276
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.592700"], ["email", "maryse@huelswuckert.com"], ["name", "Rick"], ["updated_at", "2015-06-16 06:33:30.592700"]]
2277
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.594108"], ["email", "jennie_walker@bogan.net"], ["name", "Abdiel"], ["updated_at", "2015-06-16 06:33:30.594108"]]
2278
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.595446"], ["email", "ania@keeling.info"], ["name", "Kasandra"], ["updated_at", "2015-06-16 06:33:30.595446"]]
2279
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.596776"], ["email", "hazel@pacocha.org"], ["name", "Raymundo"], ["updated_at", "2015-06-16 06:33:30.596776"]]
2280
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.598155"], ["email", "aurelio.goodwin@riceerdman.name"], ["name", "Kaitlin"], ["updated_at", "2015-06-16 06:33:30.598155"]]
2281
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.599494"], ["email", "toni@rogahn.biz"], ["name", "Esther"], ["updated_at", "2015-06-16 06:33:30.599494"]]
2282
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.600847"], ["email", "darren@beergreenfelder.com"], ["name", "Jonathan"], ["updated_at", "2015-06-16 06:33:30.600847"]]
2283
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.602198"], ["email", "billie@kulasroberts.info"], ["name", "Laura"], ["updated_at", "2015-06-16 06:33:30.602198"]]
2284
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2285
+  (0.2ms) ROLLBACK
2286
+  (0.2ms) BEGIN
2287
+ --------------------------------------------
2288
+ MetaBuildTest: test_building_single_instance
2289
+ --------------------------------------------
2290
+  (0.2ms) SAVEPOINT active_record_1
2291
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.606496"], ["email", "adell@schimmel.biz"], ["name", "Ethyl"], ["updated_at", "2015-06-16 06:33:30.606496"]]
2292
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2293
+  (0.2ms) ROLLBACK
2294
+  (0.2ms) BEGIN
2295
+ -------------------------------------------------
2296
+ MetaBuildTest: test_building_unpersisted_instance
2297
+ -------------------------------------------------
2298
+  (0.1ms) SAVEPOINT active_record_1
2299
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2300
+  (0.1ms) ROLLBACK
2301
+  (0.1ms) BEGIN
2302
+ -------------------------------------------------
2303
+ MetaBuildTest: test_passing_arguments_to_builders
2304
+ -------------------------------------------------
2305
+  (0.1ms) SAVEPOINT active_record_1
2306
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:33:30.610766"], ["email", "bar@foobar.com"], ["name", "foo"], ["updated_at", "2015-06-16 06:33:30.610766"]]
2307
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2308
+  (0.1ms) ROLLBACK
2309
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
2310
+  (0.2ms) BEGIN
2311
+ ---------------------------------------
2312
+ ForEachTest: test_comment_instantiation
2313
+ ---------------------------------------
2314
+  (0.3ms) SAVEPOINT active_record_1
2315
+ SQL (0.8ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.156422"], ["email", "yolanda@bauch.net"], ["name", "Stephania"], ["updated_at", "2015-06-16 06:34:07.156422"]]
2316
+ PG::UndefinedTable: ERROR: relation "comments" does not exist
2317
+ LINE 5: WHERE a.attrelid = '"comments"'::regclass
2318
+ ^
2319
+ : SELECT a.attname, format_type(a.atttypid, a.atttypmod),
2320
+ pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod
2321
+ FROM pg_attribute a LEFT JOIN pg_attrdef d
2322
+ ON a.attrelid = d.adrelid AND a.attnum = d.adnum
2323
+ WHERE a.attrelid = '"comments"'::regclass
2324
+ AND a.attnum > 0 AND NOT a.attisdropped
2325
+ ORDER BY a.attnum
2326
+
2327
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
2328
+  (0.3ms) ROLLBACK
2329
+  (0.2ms) BEGIN
2330
+ -----------------------------------------------
2331
+ ForEachTest: test_creating_avatar_for_each_user
2332
+ -----------------------------------------------
2333
+  (0.2ms) SAVEPOINT active_record_1
2334
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.164209"], ["email", "tyrel@terrywillms.net"], ["name", "Isaias"], ["updated_at", "2015-06-16 06:34:07.164209"]]
2335
+ PG::UndefinedTable: ERROR: relation "comments" does not exist
2336
+ LINE 5: WHERE a.attrelid = '"comments"'::regclass
2337
+ ^
2338
+ : SELECT a.attname, format_type(a.atttypid, a.atttypmod),
2339
+ pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod
2340
+ FROM pg_attribute a LEFT JOIN pg_attrdef d
2341
+ ON a.attrelid = d.adrelid AND a.attnum = d.adnum
2342
+ WHERE a.attrelid = '"comments"'::regclass
2343
+ AND a.attnum > 0 AND NOT a.attisdropped
2344
+ ORDER BY a.attnum
2345
+
2346
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
2347
+  (0.2ms) ROLLBACK
2348
+  (0.2ms) BEGIN
2349
+ -------------------------------------------------------
2350
+ MetaBuildTest: test_building_many_unpersisted_instances
2351
+ -------------------------------------------------------
2352
+  (0.2ms) SAVEPOINT active_record_1
2353
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2354
+  (0.2ms) ROLLBACK
2355
+  (0.1ms) BEGIN
2356
+ -------------------------------------------------
2357
+ MetaBuildTest: test_building_many_valid_instances
2358
+ -------------------------------------------------
2359
+  (0.1ms) SAVEPOINT active_record_1
2360
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.181981"], ["email", "mortimer@beierterry.org"], ["name", "Hazle"], ["updated_at", "2015-06-16 06:34:07.181981"]]
2361
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.183420"], ["email", "nathanial.walsh@bartell.name"], ["name", "Randal"], ["updated_at", "2015-06-16 06:34:07.183420"]]
2362
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.184708"], ["email", "jillian_gerhold@prohaskawisoky.org"], ["name", "Julio"], ["updated_at", "2015-06-16 06:34:07.184708"]]
2363
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.185931"], ["email", "laurianne.mann@marvin.info"], ["name", "Emma"], ["updated_at", "2015-06-16 06:34:07.185931"]]
2364
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.187186"], ["email", "zetta@wintheiser.net"], ["name", "Tiara"], ["updated_at", "2015-06-16 06:34:07.187186"]]
2365
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.188422"], ["email", "kole@wizafeil.com"], ["name", "Rod"], ["updated_at", "2015-06-16 06:34:07.188422"]]
2366
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.189809"], ["email", "donnie.olson@rowe.name"], ["name", "Ashleigh"], ["updated_at", "2015-06-16 06:34:07.189809"]]
2367
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.191421"], ["email", "pamela_mcclure@fahey.info"], ["name", "Rachelle"], ["updated_at", "2015-06-16 06:34:07.191421"]]
2368
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.193292"], ["email", "lela@damoreabshire.org"], ["name", "Krista"], ["updated_at", "2015-06-16 06:34:07.193292"]]
2369
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.194535"], ["email", "kaci@grantjohnston.biz"], ["name", "Jada"], ["updated_at", "2015-06-16 06:34:07.194535"]]
2370
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.195753"], ["email", "crystel@sporer.org"], ["name", "Marisol"], ["updated_at", "2015-06-16 06:34:07.195753"]]
2371
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.196990"], ["email", "declan.braun@sporerprice.com"], ["name", "Jamison"], ["updated_at", "2015-06-16 06:34:07.196990"]]
2372
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.198253"], ["email", "elna_blick@adams.info"], ["name", "Sandrine"], ["updated_at", "2015-06-16 06:34:07.198253"]]
2373
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.199425"], ["email", "myrl_deckow@shieldsrohan.com"], ["name", "Joannie"], ["updated_at", "2015-06-16 06:34:07.199425"]]
2374
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.200569"], ["email", "madalyn@marvinzieme.com"], ["name", "Brycen"], ["updated_at", "2015-06-16 06:34:07.200569"]]
2375
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.201830"], ["email", "rhianna_moen@ryan.name"], ["name", "Jamarcus"], ["updated_at", "2015-06-16 06:34:07.201830"]]
2376
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.203055"], ["email", "macy@bode.org"], ["name", "Jewell"], ["updated_at", "2015-06-16 06:34:07.203055"]]
2377
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.204291"], ["email", "luz_johns@carter.net"], ["name", "Osvaldo"], ["updated_at", "2015-06-16 06:34:07.204291"]]
2378
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.205542"], ["email", "jovanny@gleichner.com"], ["name", "Talia"], ["updated_at", "2015-06-16 06:34:07.205542"]]
2379
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.206785"], ["email", "stefanie_murazik@mann.net"], ["name", "Janice"], ["updated_at", "2015-06-16 06:34:07.206785"]]
2380
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.208052"], ["email", "jeyca@reynolds.biz"], ["name", "Stephon"], ["updated_at", "2015-06-16 06:34:07.208052"]]
2381
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.209310"], ["email", "lonzo_spinka@osinski.info"], ["name", "Kennith"], ["updated_at", "2015-06-16 06:34:07.209310"]]
2382
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.210543"], ["email", "emmitt.oberbrunner@dibbert.com"], ["name", "Myrtie"], ["updated_at", "2015-06-16 06:34:07.210543"]]
2383
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.211750"], ["email", "stefan@ritchie.info"], ["name", "Xavier"], ["updated_at", "2015-06-16 06:34:07.211750"]]
2384
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.213010"], ["email", "cooper_bogan@toypurdy.net"], ["name", "Kyra"], ["updated_at", "2015-06-16 06:34:07.213010"]]
2385
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.214307"], ["email", "marquise_schuppe@paucek.info"], ["name", "Kristian"], ["updated_at", "2015-06-16 06:34:07.214307"]]
2386
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.215541"], ["email", "belle_kautzer@collier.com"], ["name", "Lexi"], ["updated_at", "2015-06-16 06:34:07.215541"]]
2387
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.216796"], ["email", "annamarie.smith@flatley.com"], ["name", "Adolphus"], ["updated_at", "2015-06-16 06:34:07.216796"]]
2388
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.218057"], ["email", "monte.bergnaum@ritchie.name"], ["name", "Marisa"], ["updated_at", "2015-06-16 06:34:07.218057"]]
2389
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.219219"], ["email", "sabryna@boscoruel.net"], ["name", "Florence"], ["updated_at", "2015-06-16 06:34:07.219219"]]
2390
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.220446"], ["email", "patricia@roberts.biz"], ["name", "Guy"], ["updated_at", "2015-06-16 06:34:07.220446"]]
2391
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.221750"], ["email", "merl_konopelski@leschmccullough.name"], ["name", "Verona"], ["updated_at", "2015-06-16 06:34:07.221750"]]
2392
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.222959"], ["email", "krystina@shanahan.com"], ["name", "Jameson"], ["updated_at", "2015-06-16 06:34:07.222959"]]
2393
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.224160"], ["email", "denis@thiel.biz"], ["name", "Lois"], ["updated_at", "2015-06-16 06:34:07.224160"]]
2394
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.225347"], ["email", "mable@huels.info"], ["name", "Beau"], ["updated_at", "2015-06-16 06:34:07.225347"]]
2395
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.226504"], ["email", "audrey@stiedemann.com"], ["name", "Micheal"], ["updated_at", "2015-06-16 06:34:07.226504"]]
2396
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.227689"], ["email", "daron_stehr@johnson.info"], ["name", "Muriel"], ["updated_at", "2015-06-16 06:34:07.227689"]]
2397
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.228833"], ["email", "merlin@renner.info"], ["name", "Micah"], ["updated_at", "2015-06-16 06:34:07.228833"]]
2398
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.230013"], ["email", "jakayla_huels@schuster.net"], ["name", "Lily"], ["updated_at", "2015-06-16 06:34:07.230013"]]
2399
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.231158"], ["email", "burnice@torphywilliamson.biz"], ["name", "Devonte"], ["updated_at", "2015-06-16 06:34:07.231158"]]
2400
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.232317"], ["email", "edwardo_koepp@cole.org"], ["name", "Marquise"], ["updated_at", "2015-06-16 06:34:07.232317"]]
2401
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.233482"], ["email", "lera@gaylord.net"], ["name", "Chelsey"], ["updated_at", "2015-06-16 06:34:07.233482"]]
2402
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.234683"], ["email", "haylie_vandervort@hand.com"], ["name", "Andreanne"], ["updated_at", "2015-06-16 06:34:07.234683"]]
2403
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.235896"], ["email", "valentina_rutherford@mullercole.info"], ["name", "Zita"], ["updated_at", "2015-06-16 06:34:07.235896"]]
2404
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.237104"], ["email", "zackery_fisher@hyatt.org"], ["name", "Zetta"], ["updated_at", "2015-06-16 06:34:07.237104"]]
2405
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.238313"], ["email", "alice.bogisich@bechtelar.com"], ["name", "Zack"], ["updated_at", "2015-06-16 06:34:07.238313"]]
2406
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.239493"], ["email", "adalberto.bartell@halvorson.name"], ["name", "Josephine"], ["updated_at", "2015-06-16 06:34:07.239493"]]
2407
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.240664"], ["email", "jamir@aufderharwiegand.name"], ["name", "Deondre"], ["updated_at", "2015-06-16 06:34:07.240664"]]
2408
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.241851"], ["email", "conner@mclaughlin.com"], ["name", "Zechariah"], ["updated_at", "2015-06-16 06:34:07.241851"]]
2409
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.243016"], ["email", "tyree_smitham@lind.info"], ["name", "Zachery"], ["updated_at", "2015-06-16 06:34:07.243016"]]
2410
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2411
+  (0.2ms) ROLLBACK
2412
+  (0.2ms) BEGIN
2413
+ --------------------------------------------
2414
+ MetaBuildTest: test_building_single_instance
2415
+ --------------------------------------------
2416
+  (0.2ms) SAVEPOINT active_record_1
2417
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.248863"], ["email", "amani.pacocha@koelpin.net"], ["name", "Gordon"], ["updated_at", "2015-06-16 06:34:07.248863"]]
2418
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2419
+  (0.2ms) ROLLBACK
2420
+  (0.2ms) BEGIN
2421
+ -------------------------------------------------
2422
+ MetaBuildTest: test_building_unpersisted_instance
2423
+ -------------------------------------------------
2424
+  (0.2ms) SAVEPOINT active_record_1
2425
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2426
+  (0.3ms) ROLLBACK
2427
+  (0.2ms) BEGIN
2428
+ -------------------------------------------------
2429
+ MetaBuildTest: test_passing_arguments_to_builders
2430
+ -------------------------------------------------
2431
+  (0.2ms) SAVEPOINT active_record_1
2432
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:07.254141"], ["email", "bar@foobar.com"], ["name", "foo"], ["updated_at", "2015-06-16 06:34:07.254141"]]
2433
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2434
+  (0.2ms) ROLLBACK
2435
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2436
+  (0.3ms) BEGIN
2437
+ ---------------------------------------
2438
+ ForEachTest: test_comment_instantiation
2439
+ ---------------------------------------
2440
+  (0.3ms) SAVEPOINT active_record_1
2441
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.250894"], ["email", "lillie@mann.com"], ["name", "Jacky"], ["updated_at", "2015-06-16 06:34:53.250894"]]
2442
+ PG::UndefinedTable: ERROR: relation "comments" does not exist
2443
+ LINE 5: WHERE a.attrelid = '"comments"'::regclass
2444
+ ^
2445
+ : SELECT a.attname, format_type(a.atttypid, a.atttypmod),
2446
+ pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod
2447
+ FROM pg_attribute a LEFT JOIN pg_attrdef d
2448
+ ON a.attrelid = d.adrelid AND a.attnum = d.adnum
2449
+ WHERE a.attrelid = '"comments"'::regclass
2450
+ AND a.attnum > 0 AND NOT a.attisdropped
2451
+ ORDER BY a.attnum
2452
+
2453
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
2454
+  (0.2ms) ROLLBACK
2455
+  (0.1ms) BEGIN
2456
+ -----------------------------------------------
2457
+ ForEachTest: test_creating_avatar_for_each_user
2458
+ -----------------------------------------------
2459
+  (0.1ms) SAVEPOINT active_record_1
2460
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.257009"], ["email", "aliya@labadie.info"], ["name", "Scottie"], ["updated_at", "2015-06-16 06:34:53.257009"]]
2461
+ PG::UndefinedTable: ERROR: relation "comments" does not exist
2462
+ LINE 5: WHERE a.attrelid = '"comments"'::regclass
2463
+ ^
2464
+ : SELECT a.attname, format_type(a.atttypid, a.atttypmod),
2465
+ pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod
2466
+ FROM pg_attribute a LEFT JOIN pg_attrdef d
2467
+ ON a.attrelid = d.adrelid AND a.attnum = d.adnum
2468
+ WHERE a.attrelid = '"comments"'::regclass
2469
+ AND a.attnum > 0 AND NOT a.attisdropped
2470
+ ORDER BY a.attnum
2471
+
2472
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2473
+  (0.1ms) ROLLBACK
2474
+  (0.1ms) BEGIN
2475
+ -------------------------------------------------------
2476
+ MetaBuildTest: test_building_many_unpersisted_instances
2477
+ -------------------------------------------------------
2478
+  (0.1ms) SAVEPOINT active_record_1
2479
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2480
+  (0.1ms) ROLLBACK
2481
+  (0.1ms) BEGIN
2482
+ -------------------------------------------------
2483
+ MetaBuildTest: test_building_many_valid_instances
2484
+ -------------------------------------------------
2485
+  (0.1ms) SAVEPOINT active_record_1
2486
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.272959"], ["email", "luna@langworth.org"], ["name", "Verdie"], ["updated_at", "2015-06-16 06:34:53.272959"]]
2487
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.274296"], ["email", "arnaldo.kertzmann@ledner.org"], ["name", "Shania"], ["updated_at", "2015-06-16 06:34:53.274296"]]
2488
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.275404"], ["email", "josefina.reichert@pacochacremin.net"], ["name", "Emelie"], ["updated_at", "2015-06-16 06:34:53.275404"]]
2489
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.276471"], ["email", "ben.frami@medhurst.name"], ["name", "Clementine"], ["updated_at", "2015-06-16 06:34:53.276471"]]
2490
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.277528"], ["email", "lindsay.hegmann@funkdicki.biz"], ["name", "Keara"], ["updated_at", "2015-06-16 06:34:53.277528"]]
2491
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.278613"], ["email", "layne@ernser.org"], ["name", "Tyrell"], ["updated_at", "2015-06-16 06:34:53.278613"]]
2492
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.279779"], ["email", "german_connelly@romaguera.biz"], ["name", "Christiana"], ["updated_at", "2015-06-16 06:34:53.279779"]]
2493
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.280953"], ["email", "hettie_mckenzie@abshire.com"], ["name", "Bria"], ["updated_at", "2015-06-16 06:34:53.280953"]]
2494
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.282114"], ["email", "hans_blanda@windlerbailey.name"], ["name", "Josephine"], ["updated_at", "2015-06-16 06:34:53.282114"]]
2495
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.283403"], ["email", "luigi@stiedemannschoen.name"], ["name", "Arturo"], ["updated_at", "2015-06-16 06:34:53.283403"]]
2496
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.284539"], ["email", "nathan@monahan.org"], ["name", "Ahmad"], ["updated_at", "2015-06-16 06:34:53.284539"]]
2497
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.285762"], ["email", "vena_graham@casper.net"], ["name", "Lexie"], ["updated_at", "2015-06-16 06:34:53.285762"]]
2498
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.286949"], ["email", "levi@fisherhowell.net"], ["name", "Arturo"], ["updated_at", "2015-06-16 06:34:53.286949"]]
2499
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.288131"], ["email", "kaylie@prosacco.net"], ["name", "Julien"], ["updated_at", "2015-06-16 06:34:53.288131"]]
2500
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.289356"], ["email", "brooklyn@macgyver.biz"], ["name", "Neil"], ["updated_at", "2015-06-16 06:34:53.289356"]]
2501
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.290564"], ["email", "stefanie.swift@gerlach.com"], ["name", "Maxime"], ["updated_at", "2015-06-16 06:34:53.290564"]]
2502
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.291726"], ["email", "caleb@ortiz.org"], ["name", "Magali"], ["updated_at", "2015-06-16 06:34:53.291726"]]
2503
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.292933"], ["email", "esther.goyette@marksbarton.com"], ["name", "Wilhelmine"], ["updated_at", "2015-06-16 06:34:53.292933"]]
2504
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.294091"], ["email", "crystal@beer.name"], ["name", "Asia"], ["updated_at", "2015-06-16 06:34:53.294091"]]
2505
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.295284"], ["email", "lucinda@macejkovictoy.biz"], ["name", "Thea"], ["updated_at", "2015-06-16 06:34:53.295284"]]
2506
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.296485"], ["email", "candice@wittingsauer.info"], ["name", "Alessandro"], ["updated_at", "2015-06-16 06:34:53.296485"]]
2507
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.297712"], ["email", "nia@kuhlman.net"], ["name", "Alene"], ["updated_at", "2015-06-16 06:34:53.297712"]]
2508
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.298970"], ["email", "walter.hamill@gerlach.com"], ["name", "Tristian"], ["updated_at", "2015-06-16 06:34:53.298970"]]
2509
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.300181"], ["email", "reuben@corkery.biz"], ["name", "Lorenzo"], ["updated_at", "2015-06-16 06:34:53.300181"]]
2510
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.301456"], ["email", "cleora.cremin@larson.com"], ["name", "Marietta"], ["updated_at", "2015-06-16 06:34:53.301456"]]
2511
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.302526"], ["email", "marilie_graham@jastheller.name"], ["name", "Alexandria"], ["updated_at", "2015-06-16 06:34:53.302526"]]
2512
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.303655"], ["email", "noel@fahey.net"], ["name", "Vergie"], ["updated_at", "2015-06-16 06:34:53.303655"]]
2513
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.304759"], ["email", "armani_bradtke@stiedemann.info"], ["name", "Kennedy"], ["updated_at", "2015-06-16 06:34:53.304759"]]
2514
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.305859"], ["email", "cicero@jaskolskismith.org"], ["name", "Carmela"], ["updated_at", "2015-06-16 06:34:53.305859"]]
2515
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.306941"], ["email", "elisa@jones.biz"], ["name", "Dario"], ["updated_at", "2015-06-16 06:34:53.306941"]]
2516
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.308078"], ["email", "mitchell@abshire.biz"], ["name", "Felicia"], ["updated_at", "2015-06-16 06:34:53.308078"]]
2517
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.309268"], ["email", "rae.schneider@gorczany.org"], ["name", "Dalton"], ["updated_at", "2015-06-16 06:34:53.309268"]]
2518
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.310420"], ["email", "lewis.ryan@tromp.biz"], ["name", "Haven"], ["updated_at", "2015-06-16 06:34:53.310420"]]
2519
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.311597"], ["email", "luigi_cummings@buckridge.biz"], ["name", "Lelia"], ["updated_at", "2015-06-16 06:34:53.311597"]]
2520
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.312658"], ["email", "anastacio@wilderman.org"], ["name", "Jorge"], ["updated_at", "2015-06-16 06:34:53.312658"]]
2521
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.313807"], ["email", "kyler.cain@moenkovacek.info"], ["name", "Eleanora"], ["updated_at", "2015-06-16 06:34:53.313807"]]
2522
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.314927"], ["email", "rodolfo@botsford.info"], ["name", "Joshuah"], ["updated_at", "2015-06-16 06:34:53.314927"]]
2523
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.315988"], ["email", "josue@grimes.info"], ["name", "Jeff"], ["updated_at", "2015-06-16 06:34:53.315988"]]
2524
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.317068"], ["email", "kayley@king.net"], ["name", "Martine"], ["updated_at", "2015-06-16 06:34:53.317068"]]
2525
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.318169"], ["email", "mina.mertz@bernhard.net"], ["name", "Jaclyn"], ["updated_at", "2015-06-16 06:34:53.318169"]]
2526
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.319477"], ["email", "lourdes.damore@beer.net"], ["name", "Gussie"], ["updated_at", "2015-06-16 06:34:53.319477"]]
2527
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.320608"], ["email", "pearline.spencer@gaylord.net"], ["name", "Eden"], ["updated_at", "2015-06-16 06:34:53.320608"]]
2528
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.321737"], ["email", "alyon.lebsack@fadelleannon.com"], ["name", "Demario"], ["updated_at", "2015-06-16 06:34:53.321737"]]
2529
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.322876"], ["email", "aimee.rogahn@marvinhirthe.com"], ["name", "Clementine"], ["updated_at", "2015-06-16 06:34:53.322876"]]
2530
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.323953"], ["email", "concepcion_lang@daniel.info"], ["name", "Kenya"], ["updated_at", "2015-06-16 06:34:53.323953"]]
2531
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.325040"], ["email", "marie_goodwin@kuphalwisoky.com"], ["name", "Pete"], ["updated_at", "2015-06-16 06:34:53.325040"]]
2532
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.326172"], ["email", "trystan@bashirian.biz"], ["name", "Enrique"], ["updated_at", "2015-06-16 06:34:53.326172"]]
2533
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.327290"], ["email", "katheryn_klocko@boyerwunsch.info"], ["name", "Beth"], ["updated_at", "2015-06-16 06:34:53.327290"]]
2534
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.328469"], ["email", "graciela_kuhic@mccullough.info"], ["name", "Bertrand"], ["updated_at", "2015-06-16 06:34:53.328469"]]
2535
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.329632"], ["email", "cornell.dach@feest.info"], ["name", "Carissa"], ["updated_at", "2015-06-16 06:34:53.329632"]]
2536
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2537
+  (0.2ms) ROLLBACK
2538
+  (0.2ms) BEGIN
2539
+ --------------------------------------------
2540
+ MetaBuildTest: test_building_single_instance
2541
+ --------------------------------------------
2542
+  (0.1ms) SAVEPOINT active_record_1
2543
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.335291"], ["email", "sarai@mraz.name"], ["name", "Lenna"], ["updated_at", "2015-06-16 06:34:53.335291"]]
2544
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2545
+  (0.1ms) ROLLBACK
2546
+  (0.1ms) BEGIN
2547
+ -------------------------------------------------
2548
+ MetaBuildTest: test_building_unpersisted_instance
2549
+ -------------------------------------------------
2550
+  (0.1ms) SAVEPOINT active_record_1
2551
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2552
+  (0.1ms) ROLLBACK
2553
+  (0.1ms) BEGIN
2554
+ -------------------------------------------------
2555
+ MetaBuildTest: test_passing_arguments_to_builders
2556
+ -------------------------------------------------
2557
+  (0.1ms) SAVEPOINT active_record_1
2558
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:34:53.338794"], ["email", "bar@foobar.com"], ["name", "foo"], ["updated_at", "2015-06-16 06:34:53.338794"]]
2559
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2560
+  (0.1ms) ROLLBACK
2561
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
2562
+  (0.3ms) BEGIN
2563
+ ---------------------------------------
2564
+ ForEachTest: test_comment_instantiation
2565
+ ---------------------------------------
2566
+  (0.3ms) SAVEPOINT active_record_1
2567
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.945506"], ["email", "sigmund@zulauf.info"], ["name", "Breana"], ["updated_at", "2015-06-16 06:36:52.945506"]]
2568
+ PG::UndefinedTable: ERROR: relation "comments" does not exist
2569
+ LINE 5: WHERE a.attrelid = '"comments"'::regclass
2570
+ ^
2571
+ : SELECT a.attname, format_type(a.atttypid, a.atttypmod),
2572
+ pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod
2573
+ FROM pg_attribute a LEFT JOIN pg_attrdef d
2574
+ ON a.attrelid = d.adrelid AND a.attnum = d.adnum
2575
+ WHERE a.attrelid = '"comments"'::regclass
2576
+ AND a.attnum > 0 AND NOT a.attisdropped
2577
+ ORDER BY a.attnum
2578
+
2579
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
2580
+  (0.3ms) ROLLBACK
2581
+  (0.3ms) BEGIN
2582
+ -----------------------------------------------
2583
+ ForEachTest: test_creating_avatar_for_each_user
2584
+ -----------------------------------------------
2585
+  (0.2ms) SAVEPOINT active_record_1
2586
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.953014"], ["email", "wilburn_feil@thompson.net"], ["name", "Graham"], ["updated_at", "2015-06-16 06:36:52.953014"]]
2587
+ PG::UndefinedTable: ERROR: relation "comments" does not exist
2588
+ LINE 5: WHERE a.attrelid = '"comments"'::regclass
2589
+ ^
2590
+ : SELECT a.attname, format_type(a.atttypid, a.atttypmod),
2591
+ pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod
2592
+ FROM pg_attribute a LEFT JOIN pg_attrdef d
2593
+ ON a.attrelid = d.adrelid AND a.attnum = d.adnum
2594
+ WHERE a.attrelid = '"comments"'::regclass
2595
+ AND a.attnum > 0 AND NOT a.attisdropped
2596
+ ORDER BY a.attnum
2597
+
2598
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
2599
+  (0.2ms) ROLLBACK
2600
+  (0.2ms) BEGIN
2601
+ -------------------------------------------------------
2602
+ MetaBuildTest: test_building_many_unpersisted_instances
2603
+ -------------------------------------------------------
2604
+  (0.1ms) SAVEPOINT active_record_1
2605
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2606
+  (0.2ms) ROLLBACK
2607
+  (0.1ms) BEGIN
2608
+ -------------------------------------------------
2609
+ MetaBuildTest: test_building_many_valid_instances
2610
+ -------------------------------------------------
2611
+  (0.1ms) SAVEPOINT active_record_1
2612
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.970502"], ["email", "madalyn_senger@rohan.net"], ["name", "Kenna"], ["updated_at", "2015-06-16 06:36:52.970502"]]
2613
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.971829"], ["email", "ally.kovacek@moore.com"], ["name", "Alivia"], ["updated_at", "2015-06-16 06:36:52.971829"]]
2614
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.973028"], ["email", "kitty.heller@conn.name"], ["name", "Christina"], ["updated_at", "2015-06-16 06:36:52.973028"]]
2615
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.974204"], ["email", "elnora@morar.biz"], ["name", "Elisha"], ["updated_at", "2015-06-16 06:36:52.974204"]]
2616
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.975563"], ["email", "keshawn@morietteleuschke.org"], ["name", "Mina"], ["updated_at", "2015-06-16 06:36:52.975563"]]
2617
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.976876"], ["email", "johann@spencer.org"], ["name", "Dorian"], ["updated_at", "2015-06-16 06:36:52.976876"]]
2618
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.978356"], ["email", "leonor_ratke@kreiger.org"], ["name", "Gustave"], ["updated_at", "2015-06-16 06:36:52.978356"]]
2619
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.979814"], ["email", "fay_senger@denesik.name"], ["name", "Catalina"], ["updated_at", "2015-06-16 06:36:52.979814"]]
2620
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.981325"], ["email", "elmo@little.net"], ["name", "Sydney"], ["updated_at", "2015-06-16 06:36:52.981325"]]
2621
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.982466"], ["email", "charity@heller.com"], ["name", "Amara"], ["updated_at", "2015-06-16 06:36:52.982466"]]
2622
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.983520"], ["email", "breanna@reillygaylord.name"], ["name", "Weldon"], ["updated_at", "2015-06-16 06:36:52.983520"]]
2623
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.984602"], ["email", "tara_doyle@kiehn.net"], ["name", "Darryl"], ["updated_at", "2015-06-16 06:36:52.984602"]]
2624
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.985734"], ["email", "leie@larson.com"], ["name", "Lura"], ["updated_at", "2015-06-16 06:36:52.985734"]]
2625
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.986798"], ["email", "ashleigh.nicolas@smith.biz"], ["name", "Jammie"], ["updated_at", "2015-06-16 06:36:52.986798"]]
2626
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.987789"], ["email", "brooke@glover.net"], ["name", "Ronny"], ["updated_at", "2015-06-16 06:36:52.987789"]]
2627
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.988807"], ["email", "jaylan_kerluke@hamill.name"], ["name", "Mathias"], ["updated_at", "2015-06-16 06:36:52.988807"]]
2628
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.989843"], ["email", "nelson@roberts.org"], ["name", "Francis"], ["updated_at", "2015-06-16 06:36:52.989843"]]
2629
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.990852"], ["email", "cristian@oreilly.com"], ["name", "Thora"], ["updated_at", "2015-06-16 06:36:52.990852"]]
2630
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.991842"], ["email", "rogelio@reichel.info"], ["name", "Bethel"], ["updated_at", "2015-06-16 06:36:52.991842"]]
2631
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.992860"], ["email", "kara_breitenberg@bashirian.net"], ["name", "Colby"], ["updated_at", "2015-06-16 06:36:52.992860"]]
2632
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.993878"], ["email", "chasity@roweschmidt.org"], ["name", "Lee"], ["updated_at", "2015-06-16 06:36:52.993878"]]
2633
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.994927"], ["email", "whitney_lakin@morarwisoky.biz"], ["name", "Junius"], ["updated_at", "2015-06-16 06:36:52.994927"]]
2634
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.995977"], ["email", "chesley@harber.net"], ["name", "Timothy"], ["updated_at", "2015-06-16 06:36:52.995977"]]
2635
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.996987"], ["email", "aleandra_ko@stokeskling.com"], ["name", "Cade"], ["updated_at", "2015-06-16 06:36:52.996987"]]
2636
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.998009"], ["email", "vita@schultz.name"], ["name", "Dillon"], ["updated_at", "2015-06-16 06:36:52.998009"]]
2637
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:52.999015"], ["email", "luisa@konopelski.org"], ["name", "Reid"], ["updated_at", "2015-06-16 06:36:52.999015"]]
2638
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.000079"], ["email", "london_boyle@jaskolski.org"], ["name", "Vivian"], ["updated_at", "2015-06-16 06:36:53.000079"]]
2639
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.001216"], ["email", "keaton.oconnell@kemmerzboncak.org"], ["name", "Sandrine"], ["updated_at", "2015-06-16 06:36:53.001216"]]
2640
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.002386"], ["email", "rachel@damoreward.com"], ["name", "Kassandra"], ["updated_at", "2015-06-16 06:36:53.002386"]]
2641
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.003451"], ["email", "magali@green.org"], ["name", "Aylin"], ["updated_at", "2015-06-16 06:36:53.003451"]]
2642
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.004568"], ["email", "gabriella.roob@rice.org"], ["name", "Vernice"], ["updated_at", "2015-06-16 06:36:53.004568"]]
2643
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.005625"], ["email", "austyn@pagac.com"], ["name", "Bridgette"], ["updated_at", "2015-06-16 06:36:53.005625"]]
2644
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.006658"], ["email", "august@braun.info"], ["name", "Hugh"], ["updated_at", "2015-06-16 06:36:53.006658"]]
2645
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.007653"], ["email", "eulalia@dooleygerlach.net"], ["name", "Clifford"], ["updated_at", "2015-06-16 06:36:53.007653"]]
2646
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.008649"], ["email", "braulio@morar.com"], ["name", "Antonia"], ["updated_at", "2015-06-16 06:36:53.008649"]]
2647
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.009648"], ["email", "kacey@zieme.biz"], ["name", "Rosalee"], ["updated_at", "2015-06-16 06:36:53.009648"]]
2648
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.010643"], ["email", "athena@osinski.org"], ["name", "Magnus"], ["updated_at", "2015-06-16 06:36:53.010643"]]
2649
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.011626"], ["email", "jovan@breitenberg.net"], ["name", "Alysa"], ["updated_at", "2015-06-16 06:36:53.011626"]]
2650
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.012776"], ["email", "tristin@trompbeier.net"], ["name", "Helena"], ["updated_at", "2015-06-16 06:36:53.012776"]]
2651
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.014013"], ["email", "betsy_hilpert@abernathy.net"], ["name", "Esteban"], ["updated_at", "2015-06-16 06:36:53.014013"]]
2652
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.015192"], ["email", "lynn@leannon.biz"], ["name", "Katharina"], ["updated_at", "2015-06-16 06:36:53.015192"]]
2653
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.016371"], ["email", "angelina.mckenzie@schoen.com"], ["name", "Breanne"], ["updated_at", "2015-06-16 06:36:53.016371"]]
2654
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.017558"], ["email", "kellen_daniel@hermistonbradtke.name"], ["name", "Lois"], ["updated_at", "2015-06-16 06:36:53.017558"]]
2655
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.018718"], ["email", "brandt@raynorhirthe.org"], ["name", "Kianna"], ["updated_at", "2015-06-16 06:36:53.018718"]]
2656
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.019869"], ["email", "nola@stromancollier.info"], ["name", "Filomena"], ["updated_at", "2015-06-16 06:36:53.019869"]]
2657
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.021029"], ["email", "bernadine@mitchell.net"], ["name", "Emma"], ["updated_at", "2015-06-16 06:36:53.021029"]]
2658
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.022113"], ["email", "alexander@kihnbecker.biz"], ["name", "Drake"], ["updated_at", "2015-06-16 06:36:53.022113"]]
2659
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.023259"], ["email", "bertha.leuschke@hayes.org"], ["name", "Royce"], ["updated_at", "2015-06-16 06:36:53.023259"]]
2660
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.024430"], ["email", "everette.simonis@ferrygoldner.name"], ["name", "Paige"], ["updated_at", "2015-06-16 06:36:53.024430"]]
2661
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.025562"], ["email", "eudora.hodkiewicz@stehr.org"], ["name", "Roma"], ["updated_at", "2015-06-16 06:36:53.025562"]]
2662
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2663
+  (0.2ms) ROLLBACK
2664
+  (0.1ms) BEGIN
2665
+ --------------------------------------------
2666
+ MetaBuildTest: test_building_single_instance
2667
+ --------------------------------------------
2668
+  (0.1ms) SAVEPOINT active_record_1
2669
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.031183"], ["email", "watson@rogahn.biz"], ["name", "Sibyl"], ["updated_at", "2015-06-16 06:36:53.031183"]]
2670
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2671
+  (0.1ms) ROLLBACK
2672
+  (0.1ms) BEGIN
2673
+ -------------------------------------------------
2674
+ MetaBuildTest: test_building_unpersisted_instance
2675
+ -------------------------------------------------
2676
+  (0.1ms) SAVEPOINT active_record_1
2677
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2678
+  (0.1ms) ROLLBACK
2679
+  (0.1ms) BEGIN
2680
+ -------------------------------------------------
2681
+ MetaBuildTest: test_passing_arguments_to_builders
2682
+ -------------------------------------------------
2683
+  (0.1ms) SAVEPOINT active_record_1
2684
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:53.033994"], ["email", "bar@foobar.com"], ["name", "foo"], ["updated_at", "2015-06-16 06:36:53.033994"]]
2685
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2686
+  (0.1ms) ROLLBACK
2687
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
2688
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2689
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
2690
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
2691
+  (0.2ms) BEGIN
2692
+ ---------------------------------------
2693
+ ForEachTest: test_comment_instantiation
2694
+ ---------------------------------------
2695
+  (0.2ms) SAVEPOINT active_record_1
2696
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:40:49.839154"], ["email", "oleta.jaskolski@denesikarmstrong.com"], ["name", "Lera"], ["updated_at", "2015-06-16 06:40:49.839154"]]
2697
+ PG::UndefinedTable: ERROR: relation "comments" does not exist
2698
+ LINE 5: WHERE a.attrelid = '"comments"'::regclass
2699
+ ^
2700
+ : SELECT a.attname, format_type(a.atttypid, a.atttypmod),
2701
+ pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod
2702
+ FROM pg_attribute a LEFT JOIN pg_attrdef d
2703
+ ON a.attrelid = d.adrelid AND a.attnum = d.adnum
2704
+ WHERE a.attrelid = '"comments"'::regclass
2705
+ AND a.attnum > 0 AND NOT a.attisdropped
2706
+ ORDER BY a.attnum
2707
+
2708
+ PG::InFailedSqlTransaction: ERROR: current transaction is aborted, commands ignored until end of transaction block
2709
+ : SELECT a.attname, format_type(a.atttypid, a.atttypmod),
2710
+ pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod
2711
+ FROM pg_attribute a LEFT JOIN pg_attrdef d
2712
+ ON a.attrelid = d.adrelid AND a.attnum = d.adnum
2713
+ WHERE a.attrelid = '"comments"'::regclass
2714
+ AND a.attnum > 0 AND NOT a.attisdropped
2715
+ ORDER BY a.attnum
2716
+
2717
+ PG::InFailedSqlTransaction: ERROR: current transaction is aborted, commands ignored until end of transaction block
2718
+ : SELECT a.attname, format_type(a.atttypid, a.atttypmod),
2719
+ pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod
2720
+ FROM pg_attribute a LEFT JOIN pg_attrdef d
2721
+ ON a.attrelid = d.adrelid AND a.attnum = d.adnum
2722
+ WHERE a.attrelid = '"comments"'::regclass
2723
+ AND a.attnum > 0 AND NOT a.attisdropped
2724
+ ORDER BY a.attnum
2725
+
2726
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
2727
+  (0.5ms) ROLLBACK
2728
+  (0.4ms) BEGIN
2729
+ -----------------------------------------------
2730
+ ForEachTest: test_creating_avatar_for_each_user
2731
+ -----------------------------------------------
2732
+  (0.4ms) SAVEPOINT active_record_1
2733
+ SQL (0.9ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:41:08.049465"], ["email", "geo_kiehn@murphy.net"], ["name", "Adelle"], ["updated_at", "2015-06-16 06:41:08.049465"]]
2734
+ PG::UndefinedTable: ERROR: relation "comments" does not exist
2735
+ LINE 5: WHERE a.attrelid = '"comments"'::regclass
2736
+ ^
2737
+ : SELECT a.attname, format_type(a.atttypid, a.atttypmod),
2738
+ pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod
2739
+ FROM pg_attribute a LEFT JOIN pg_attrdef d
2740
+ ON a.attrelid = d.adrelid AND a.attnum = d.adnum
2741
+ WHERE a.attrelid = '"comments"'::regclass
2742
+ AND a.attnum > 0 AND NOT a.attisdropped
2743
+ ORDER BY a.attnum
2744
+
2745
+  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1
2746
+  (0.4ms) ROLLBACK
2747
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2748
+ Migrating to CreateComments (20150616062934)
2749
+  (0.3ms) BEGIN
2750
+  (126.0ms) CREATE TABLE "comments" ("id" serial primary key, "user_id" integer, "description" character varying(255), "created_at" timestamp, "updated_at" timestamp) 
2751
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150616062934"]]
2752
+  (18.6ms) COMMIT
2753
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2754
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2755
+  (0.3ms) BEGIN
2756
+ -------------------------------------------------------
2757
+ MetaBuildTest: test_building_many_unpersisted_instances
2758
+ -------------------------------------------------------
2759
+  (0.2ms) SAVEPOINT active_record_1
2760
+  (0.4ms) RELEASE SAVEPOINT active_record_1
2761
+  (0.2ms) ROLLBACK
2762
+  (0.2ms) BEGIN
2763
+ -------------------------------------------------
2764
+ MetaBuildTest: test_building_many_valid_instances
2765
+ -------------------------------------------------
2766
+  (0.2ms) SAVEPOINT active_record_1
2767
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.435735"], ["email", "mabel@doyle.com"], ["name", "Caitlyn"], ["updated_at", "2015-06-16 06:42:25.435735"]]
2768
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.439769"], ["email", "pierre@koelpin.net"], ["name", "Ruby"], ["updated_at", "2015-06-16 06:42:25.439769"]]
2769
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.441120"], ["email", "wilford@kelergoldner.info"], ["name", "Janice"], ["updated_at", "2015-06-16 06:42:25.441120"]]
2770
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.442467"], ["email", "lizzie.kris@mann.biz"], ["name", "Kianna"], ["updated_at", "2015-06-16 06:42:25.442467"]]
2771
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.443761"], ["email", "harley_marvin@lesch.biz"], ["name", "Ike"], ["updated_at", "2015-06-16 06:42:25.443761"]]
2772
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.445174"], ["email", "izabella@kuphal.info"], ["name", "Drake"], ["updated_at", "2015-06-16 06:42:25.445174"]]
2773
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.446710"], ["email", "jaydon.wiza@lockman.name"], ["name", "Ibrahim"], ["updated_at", "2015-06-16 06:42:25.446710"]]
2774
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.448021"], ["email", "luigi@gaylordcollins.info"], ["name", "Juwan"], ["updated_at", "2015-06-16 06:42:25.448021"]]
2775
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.449328"], ["email", "constance@king.info"], ["name", "Jenifer"], ["updated_at", "2015-06-16 06:42:25.449328"]]
2776
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.450632"], ["email", "devyn@considine.org"], ["name", "Blaise"], ["updated_at", "2015-06-16 06:42:25.450632"]]
2777
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.451904"], ["email", "camila.purdy@lakin.name"], ["name", "Telly"], ["updated_at", "2015-06-16 06:42:25.451904"]]
2778
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.453154"], ["email", "jovany@willms.info"], ["name", "Ewald"], ["updated_at", "2015-06-16 06:42:25.453154"]]
2779
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.454459"], ["email", "maeve_feest@shieldchaefer.info"], ["name", "Cleve"], ["updated_at", "2015-06-16 06:42:25.454459"]]
2780
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.455513"], ["email", "felicita.mayer@stokes.info"], ["name", "Aracely"], ["updated_at", "2015-06-16 06:42:25.455513"]]
2781
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.456607"], ["email", "charlotte@tromp.biz"], ["name", "Ford"], ["updated_at", "2015-06-16 06:42:25.456607"]]
2782
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.457665"], ["email", "sheldon@damore.info"], ["name", "Bernie"], ["updated_at", "2015-06-16 06:42:25.457665"]]
2783
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.458831"], ["email", "minerva_huel@schimmelleffler.info"], ["name", "Francis"], ["updated_at", "2015-06-16 06:42:25.458831"]]
2784
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.459999"], ["email", "leila@von.com"], ["name", "Yvette"], ["updated_at", "2015-06-16 06:42:25.459999"]]
2785
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.461280"], ["email", "arno.nader@kuhlman.org"], ["name", "Jaime"], ["updated_at", "2015-06-16 06:42:25.461280"]]
2786
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.462736"], ["email", "jacynthe.bartoletti@gibson.info"], ["name", "Mateo"], ["updated_at", "2015-06-16 06:42:25.462736"]]
2787
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.464475"], ["email", "meta.ko@king.name"], ["name", "Dianna"], ["updated_at", "2015-06-16 06:42:25.464475"]]
2788
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.465634"], ["email", "cielo@veumbruen.info"], ["name", "Shanel"], ["updated_at", "2015-06-16 06:42:25.465634"]]
2789
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.466763"], ["email", "ruel@kuhic.net"], ["name", "Berry"], ["updated_at", "2015-06-16 06:42:25.466763"]]
2790
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.467822"], ["email", "paolo_macejkovic@eberthodkiewicz.net"], ["name", "Baylee"], ["updated_at", "2015-06-16 06:42:25.467822"]]
2791
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.468839"], ["email", "marcelino@shanahan.com"], ["name", "Blair"], ["updated_at", "2015-06-16 06:42:25.468839"]]
2792
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.469868"], ["email", "virgie@cainbrown.org"], ["name", "Irwin"], ["updated_at", "2015-06-16 06:42:25.469868"]]
2793
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.470935"], ["email", "lorine_schiller@batz.org"], ["name", "Jade"], ["updated_at", "2015-06-16 06:42:25.470935"]]
2794
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.471962"], ["email", "marjolaine@schroederheidenreich.com"], ["name", "Junior"], ["updated_at", "2015-06-16 06:42:25.471962"]]
2795
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.473029"], ["email", "antwon@damore.org"], ["name", "Audrey"], ["updated_at", "2015-06-16 06:42:25.473029"]]
2796
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.474085"], ["email", "giovani@gislason.org"], ["name", "Leopoldo"], ["updated_at", "2015-06-16 06:42:25.474085"]]
2797
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.475088"], ["email", "heath@dickens.info"], ["name", "Jannie"], ["updated_at", "2015-06-16 06:42:25.475088"]]
2798
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.476123"], ["email", "sarah@wyman.com"], ["name", "Mervin"], ["updated_at", "2015-06-16 06:42:25.476123"]]
2799
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.477199"], ["email", "neha@considine.name"], ["name", "Hollis"], ["updated_at", "2015-06-16 06:42:25.477199"]]
2800
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.478253"], ["email", "lisa.mclaughlin@brakusleffler.net"], ["name", "Tressa"], ["updated_at", "2015-06-16 06:42:25.478253"]]
2801
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.479281"], ["email", "edwardo@rippin.org"], ["name", "Cecilia"], ["updated_at", "2015-06-16 06:42:25.479281"]]
2802
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.480280"], ["email", "savion@ondrickahane.org"], ["name", "Nola"], ["updated_at", "2015-06-16 06:42:25.480280"]]
2803
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.481367"], ["email", "june@stoltenberg.biz"], ["name", "Martine"], ["updated_at", "2015-06-16 06:42:25.481367"]]
2804
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.482400"], ["email", "betty.kiehn@bahringer.net"], ["name", "Ona"], ["updated_at", "2015-06-16 06:42:25.482400"]]
2805
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.483426"], ["email", "bennett_damore@stammmuller.biz"], ["name", "Arnold"], ["updated_at", "2015-06-16 06:42:25.483426"]]
2806
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.484434"], ["email", "janelle@krajcikjacobi.biz"], ["name", "Dulce"], ["updated_at", "2015-06-16 06:42:25.484434"]]
2807
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.485480"], ["email", "norberto@beattyfriesen.com"], ["name", "Beverly"], ["updated_at", "2015-06-16 06:42:25.485480"]]
2808
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.486574"], ["email", "tina.erdman@kreiger.info"], ["name", "Clarabelle"], ["updated_at", "2015-06-16 06:42:25.486574"]]
2809
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.487629"], ["email", "cortney@stoltenberg.info"], ["name", "Israel"], ["updated_at", "2015-06-16 06:42:25.487629"]]
2810
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.488737"], ["email", "demarcus.hansen@ruel.info"], ["name", "Bertrand"], ["updated_at", "2015-06-16 06:42:25.488737"]]
2811
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.489807"], ["email", "mark_bartell@buckridge.com"], ["name", "Sandra"], ["updated_at", "2015-06-16 06:42:25.489807"]]
2812
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.490931"], ["email", "noe.sipes@heidenreich.com"], ["name", "Joelle"], ["updated_at", "2015-06-16 06:42:25.490931"]]
2813
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.491959"], ["email", "freda@goldnerondricka.name"], ["name", "Astrid"], ["updated_at", "2015-06-16 06:42:25.491959"]]
2814
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.492963"], ["email", "nicolas@murphycollier.biz"], ["name", "Rodrick"], ["updated_at", "2015-06-16 06:42:25.492963"]]
2815
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.494019"], ["email", "celestino.boyer@mckenzie.info"], ["name", "Desiree"], ["updated_at", "2015-06-16 06:42:25.494019"]]
2816
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.495065"], ["email", "bette@collier.name"], ["name", "Merl"], ["updated_at", "2015-06-16 06:42:25.495065"]]
2817
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2818
+  (0.1ms) ROLLBACK
2819
+  (0.1ms) BEGIN
2820
+ --------------------------------------------
2821
+ MetaBuildTest: test_building_single_instance
2822
+ --------------------------------------------
2823
+  (0.1ms) SAVEPOINT active_record_1
2824
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.500367"], ["email", "mckenzie@corkery.biz"], ["name", "Ryley"], ["updated_at", "2015-06-16 06:42:25.500367"]]
2825
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2826
+  (0.1ms) ROLLBACK
2827
+  (0.1ms) BEGIN
2828
+ -------------------------------------------------
2829
+ MetaBuildTest: test_building_unpersisted_instance
2830
+ -------------------------------------------------
2831
+  (0.1ms) SAVEPOINT active_record_1
2832
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2833
+  (0.1ms) ROLLBACK
2834
+  (0.1ms) BEGIN
2835
+ -------------------------------------------------
2836
+ MetaBuildTest: test_passing_arguments_to_builders
2837
+ -------------------------------------------------
2838
+  (0.1ms) SAVEPOINT active_record_1
2839
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.503258"], ["email", "bar@foobar.com"], ["name", "foo"], ["updated_at", "2015-06-16 06:42:25.503258"]]
2840
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2841
+  (0.1ms) ROLLBACK
2842
+  (0.1ms) BEGIN
2843
+ ---------------------------------------
2844
+ ForEachTest: test_comment_instantiation
2845
+ ---------------------------------------
2846
+  (0.1ms) SAVEPOINT active_record_1
2847
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.505854"], ["email", "raphaelle@larson.com"], ["name", "Trace"], ["updated_at", "2015-06-16 06:42:25.505854"]]
2848
+ SQL (0.4ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.514323"], ["description", "Dolore consequatur repellendus qui. Illum qui beatae ut eum inventore. Et repellendus ullam."], ["updated_at", "2015-06-16 06:42:25.514323"], ["user_id", 1459]]
2849
+ SQL (0.2ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.516413"], ["description", "Et placeat et vitae reiciendis quis voluptatem eos. Qui debitis quia ut. Asperiores aperiam rerum rerum occaecati qui est. Reprehenderit incidunt sint est molestiae ratione quo. Qui voluptas accusantium debitis et et."], ["updated_at", "2015-06-16 06:42:25.516413"], ["user_id", 1459]]
2850
+ SQL (0.2ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.517689"], ["description", "Vel veniam ad maiores cum omnis. Itaque sit maxime quibusdam delectus consequatur aut assumenda. Velit repudiandae totam ut maxime. Omnis ipsa est perspiciatis. Hic est architecto aut possimus."], ["updated_at", "2015-06-16 06:42:25.517689"], ["user_id", 1459]]
2851
+ SQL (0.2ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.518883"], ["description", "Eos repudiandae voluptas minima quidem quod. Quas sed distinctio sunt ut. At unde autem eius. Voluptatibus quis nulla. Doloremque eveniet optio repellat iusto molestiae quo."], ["updated_at", "2015-06-16 06:42:25.518883"], ["user_id", 1459]]
2852
+ SQL (0.2ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.520055"], ["description", "Sequi inventore ullam. Eius sunt voluptatibus. Est est modi sit dolorum quia."], ["updated_at", "2015-06-16 06:42:25.520055"], ["user_id", 1459]]
2853
+ SQL (0.2ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.521261"], ["description", "Debitis facere dolorem omnis ex. Officiis error temporibus enim praesentium qui necessitatibus quasi. Nihil quis magni voluptatem laborum quos. Aliquam tempora nesciunt. Ut enim cumque rerum aut consequatur qui."], ["updated_at", "2015-06-16 06:42:25.521261"], ["user_id", 1459]]
2854
+ SQL (0.2ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.522417"], ["description", "Deserunt quae ex repudiandae et. Repellendus ut voluptate voluptas autem. Quisquam autem mollitia nihil et eos molestias. A et alias dolorem voluptatem ipsa commodi culpa."], ["updated_at", "2015-06-16 06:42:25.522417"], ["user_id", 1459]]
2855
+ SQL (0.2ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.523550"], ["description", "Quos ut hic vero delectus magnam aut aut. Itaque est ut hic ullam. Et sed excepturi labore est."], ["updated_at", "2015-06-16 06:42:25.523550"], ["user_id", 1459]]
2856
+ SQL (0.2ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.524707"], ["description", "Quod facilis provident aut qui et ipsam. Molestiae enim minima hic. Sunt asperiores dolorem. Vero occaecati velit veritatis consequatur rerum."], ["updated_at", "2015-06-16 06:42:25.524707"], ["user_id", 1459]]
2857
+ SQL (0.2ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.525996"], ["description", "Animi delectus repudiandae omnis. Dolore maxime accusantium voluptates. Ratione et ea vel quia rerum."], ["updated_at", "2015-06-16 06:42:25.525996"], ["user_id", 1459]]
2858
+ SQL (0.4ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.527244"], ["description", "Repudiandae aut ipsam officiis. Non nisi at ut qui. Ipsam dolores atque cumque. Molestiae quae tempore maxime voluptatem sed accusantium laudantium. Sapiente quibusdam est."], ["updated_at", "2015-06-16 06:42:25.527244"], ["user_id", 1459]]
2859
+ SQL (0.2ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.529030"], ["description", "In error voluptas tenetur rem aspernatur consequatur. Ullam ad cumque aut cum suscipit inventore animi. Mollitia recusandae culpa velit quia. Expedita blanditiis reiciendis dicta. Libero provident nihil."], ["updated_at", "2015-06-16 06:42:25.529030"], ["user_id", 1459]]
2860
+ SQL (0.2ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.530289"], ["description", "Optio nemo et explicabo numquam sit. Dicta possimus dolor rem enim. Magnam ipsam molestiae occaecati."], ["updated_at", "2015-06-16 06:42:25.530289"], ["user_id", 1459]]
2861
+ SQL (0.1ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.531516"], ["description", "Laborum quaerat consequatur esse magnam. Dolorum et voluptatem nulla eligendi amet et inventore. Vitae ipsa quasi et. Non repudiandae eos voluptates suscipit repellendus occaecati nihil."], ["updated_at", "2015-06-16 06:42:25.531516"], ["user_id", 1459]]
2862
+ SQL (0.2ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.532688"], ["description", "Quia tempora non. Mollitia harum ea et ipsum nihil voluptatem omnis. Ut nihil veritatis. Non minima quo totam distinctio optio tenetur labore. Debitis praesentium tempora iste."], ["updated_at", "2015-06-16 06:42:25.532688"], ["user_id", 1459]]
2863
+ SQL (0.2ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.533930"], ["description", "Rerum nesciunt culpa non ut suscipit. Aut et et dolorem labore ipsam. Accusantium sit explicabo corrupti eveniet. Quibusdam quam earum et."], ["updated_at", "2015-06-16 06:42:25.533930"], ["user_id", 1459]]
2864
+ SQL (0.2ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.535088"], ["description", "Qui rerum vel optio iusto laboriosam blanditiis. Ut et atque voluptate optio ea iusto. Culpa ea eum consequuntur praesentium sed dolorem et. Debitis non cum pariatur voluptatem. Quasi fugiat perspiciatis ea aperiam aut eaque."], ["updated_at", "2015-06-16 06:42:25.535088"], ["user_id", 1459]]
2865
+ SQL (0.2ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.536251"], ["description", "Mollitia officiis quia a aspernatur. Neque exercitationem omnis. Sit recusandae explicabo tempore ex ipsam perspiciatis voluptatibus. Facilis qui est. Sit est repellendus laborum quod nemo magnam."], ["updated_at", "2015-06-16 06:42:25.536251"], ["user_id", 1459]]
2866
+ SQL (0.2ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.537423"], ["description", "Veniam qui rerum odit sunt dicta deleniti. Voluptatem sequi dicta. Omnis unde rerum ducimus in."], ["updated_at", "2015-06-16 06:42:25.537423"], ["user_id", 1459]]
2867
+ SQL (0.2ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.538536"], ["description", "Natus ea quaerat sed quos dignissimos in. Velit omnis est. Omnis qui rerum rem earum ipsum pariatur incidunt."], ["updated_at", "2015-06-16 06:42:25.538536"], ["user_id", 1459]]
2868
+ SQL (0.3ms) UPDATE "users" SET "avatar" = $1, "updated_at" = $2 WHERE "users"."id" = 1459 [["avatar", "http://robohash.org/numquamquilibero.png?size=300x300"], ["updated_at", "2015-06-16 06:42:25.539460"]]
2869
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2870
+  (0.2ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."user_id" = $1 [["user_id", 1459]]
2871
+  (0.2ms) ROLLBACK
2872
+  (0.1ms) BEGIN
2873
+ -----------------------------------------------
2874
+ ForEachTest: test_creating_avatar_for_each_user
2875
+ -----------------------------------------------
2876
+  (0.1ms) SAVEPOINT active_record_1
2877
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.548775"], ["email", "jeanie@cummerata.name"], ["name", "Estella"], ["updated_at", "2015-06-16 06:42:25.548775"]]
2878
+ SQL (0.1ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.550152"], ["description", "Voluptatem sed aliquid corrupti atque animi. Veritatis error exercitationem qui ipsa libero adipisci impedit. Consectetur facere architecto. In voluptas tenetur. Ut ea doloribus quasi ipsa temporibus."], ["updated_at", "2015-06-16 06:42:25.550152"], ["user_id", 1460]]
2879
+ SQL (0.1ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.551257"], ["description", "Libero tenetur facilis consequatur id omnis voluptatem ratione. Iusto libero ut error deleniti assumenda corporis nemo. Ipsum et necessitatibus ut voluptatibus."], ["updated_at", "2015-06-16 06:42:25.551257"], ["user_id", 1460]]
2880
+ SQL (0.1ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.552336"], ["description", "Voluptate laboriosam ratione. Asperiores in qui et doloremque error. Dolorem autem rem in dolores totam. Molestiae ut harum sit."], ["updated_at", "2015-06-16 06:42:25.552336"], ["user_id", 1460]]
2881
+ SQL (0.1ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.553408"], ["description", "Blanditiis at numquam. Vitae aut maxime. Facilis consectetur consequatur odit laudantium quaerat sit. Debitis vel odit dignissimos rerum."], ["updated_at", "2015-06-16 06:42:25.553408"], ["user_id", 1460]]
2882
+ SQL (0.1ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.554454"], ["description", "Magnam nihil dolorem libero delectus laboriosam. Quaerat eos aspernatur provident sit ea. Non tenetur ut soluta voluptates. Sunt delectus odit odio sed voluptates nemo voluptatibus."], ["updated_at", "2015-06-16 06:42:25.554454"], ["user_id", 1460]]
2883
+ SQL (0.1ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.555476"], ["description", "Nemo repellat at labore dolores. Esse error impedit. Veritatis architecto consequatur ea."], ["updated_at", "2015-06-16 06:42:25.555476"], ["user_id", 1460]]
2884
+ SQL (0.2ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.556708"], ["description", "Officiis quasi velit voluptatibus inventore. Inventore harum aut deleniti voluptas. Qui ipsa tempora qui nihil ipsam. Labore inventore eum."], ["updated_at", "2015-06-16 06:42:25.556708"], ["user_id", 1460]]
2885
+ SQL (0.4ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.557999"], ["description", "Repellendus fugit cupiditate quos autem. Voluptatem corrupti quaerat facilis assumenda quidem totam. Voluptatibus rerum voluptate excepturi exercitationem quis doloremque."], ["updated_at", "2015-06-16 06:42:25.557999"], ["user_id", 1460]]
2886
+ SQL (0.1ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.559819"], ["description", "Et est eos ut aut et et et. Modi dolorem aut sit minima. Est optio eos. Eveniet eligendi unde porro quia vel pariatur et. Corrupti ea minus aut asperiores earum."], ["updated_at", "2015-06-16 06:42:25.559819"], ["user_id", 1460]]
2887
+ SQL (0.1ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.560971"], ["description", "Qui quia sed exercitationem occaecati suscipit quod dignissimos. Enim ut est qui ut itaque amet explicabo. Adipisci beatae molestiae in odio dolorum aut magni."], ["updated_at", "2015-06-16 06:42:25.560971"], ["user_id", 1460]]
2888
+ SQL (0.1ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.562088"], ["description", "At sit quia minus dicta reprehenderit sequi dolorum. Aut qui voluptatem commodi ducimus minima esse. Natus omnis et quo dolorem quia pariatur aut. Dignissimos in id aut officiis ipsa. Quae temporibus impedit sit magnam quisquam laborum."], ["updated_at", "2015-06-16 06:42:25.562088"], ["user_id", 1460]]
2889
+ SQL (0.2ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.563156"], ["description", "Repellendus et autem. Doloribus ut numquam odit doloremque sit culpa ratione. Voluptatem culpa incidunt. Qui quidem sunt et deserunt consectetur qui. Vero excepturi laudantium et quisquam vel adipisci."], ["updated_at", "2015-06-16 06:42:25.563156"], ["user_id", 1460]]
2890
+ SQL (0.1ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.564225"], ["description", "Iusto voluptatem nihil dolorem et voluptas. Ut et enim officiis quia. Ut quo vel illo dolor inventore accusantium consectetur. Ad velit est non saepe blanditiis quidem vero."], ["updated_at", "2015-06-16 06:42:25.564225"], ["user_id", 1460]]
2891
+ SQL (0.1ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.565272"], ["description", "Et cumque quis tempore. Porro incidunt quod ut qui. Cum quidem nisi magni dicta et quam. Ab enim beatae sed sint in est."], ["updated_at", "2015-06-16 06:42:25.565272"], ["user_id", 1460]]
2892
+ SQL (0.1ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.566373"], ["description", "Distinctio omnis veniam. Expedita pariatur in saepe eos ut. Iure omnis accusantium."], ["updated_at", "2015-06-16 06:42:25.566373"], ["user_id", 1460]]
2893
+ SQL (0.1ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.567383"], ["description", "Voluptatem velit assumenda vel. Dolores quo reiciendis maxime ut. Natus aut perferendis qui voluptas."], ["updated_at", "2015-06-16 06:42:25.567383"], ["user_id", 1460]]
2894
+ SQL (0.1ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.568412"], ["description", "Voluptas blanditiis dolorem maiores culpa nemo iure ratione. Quo et tempora molestias rerum perspiciatis aliquid. Quo et et cum dolores aut perferendis repudiandae. Ullam voluptatem eos reprehenderit amet."], ["updated_at", "2015-06-16 06:42:25.568412"], ["user_id", 1460]]
2895
+ SQL (0.2ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.569453"], ["description", "Accusantium officia nostrum sint voluptates at. Eligendi nisi placeat vel. Consequatur et delectus et qui ut blanditiis officiis. Totam molestias esse quod incidunt recusandae."], ["updated_at", "2015-06-16 06:42:25.569453"], ["user_id", 1460]]
2896
+ SQL (0.3ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.570503"], ["description", "Accusantium magni ducimus ipsum quae suscipit consequatur. Odio animi eum et assumenda cum. Sit officia quod eum ab enim reprehenderit totam."], ["updated_at", "2015-06-16 06:42:25.570503"], ["user_id", 1460]]
2897
+ SQL (0.1ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:42:25.571686"], ["description", "Quam voluptas voluptatum. Et aspernatur iusto pariatur modi debitis rerum necessitatibus. Iste cum temporibus enim ipsa nulla rerum."], ["updated_at", "2015-06-16 06:42:25.571686"], ["user_id", 1460]]
2898
+ SQL (0.2ms) UPDATE "users" SET "avatar" = $1, "updated_at" = $2 WHERE "users"."id" = 1460 [["avatar", "http://robohash.org/quiaetsed.png?size=300x300"], ["updated_at", "2015-06-16 06:42:25.572521"]]
2899
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2900
+  (0.1ms) ROLLBACK