attr_initializable 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. data/README.md +5 -1
  2. data/Rakefile +8 -3
  3. data/lib/attr_initializable/version.rb +2 -1
  4. data/lib/attr_initializable.rb +15 -6
  5. data/test/{dummy → dummy-rails3}/Rakefile +0 -0
  6. data/test/{dummy → dummy-rails3}/app/assets/javascripts/application.js +0 -0
  7. data/test/{dummy → dummy-rails3}/app/assets/stylesheets/application.css +0 -0
  8. data/test/{dummy → dummy-rails3}/app/controllers/application_controller.rb +0 -0
  9. data/test/{dummy → dummy-rails3}/app/helpers/application_helper.rb +0 -0
  10. data/test/{dummy → dummy-rails3}/app/models/manufacturer.rb +0 -0
  11. data/test/{dummy → dummy-rails3}/app/models/widget.rb +0 -0
  12. data/test/{dummy → dummy-rails3}/app/views/layouts/application.html.erb +0 -0
  13. data/test/{dummy → dummy-rails3}/config/application.rb +0 -0
  14. data/test/{dummy → dummy-rails3}/config/boot.rb +0 -0
  15. data/test/{dummy → dummy-rails3}/config/database.yml +0 -0
  16. data/test/{dummy → dummy-rails3}/config/environment.rb +0 -0
  17. data/test/{dummy → dummy-rails3}/config/environments/development.rb +0 -0
  18. data/test/{dummy → dummy-rails3}/config/environments/production.rb +0 -0
  19. data/test/{dummy → dummy-rails3}/config/environments/test.rb +0 -0
  20. data/test/{dummy → dummy-rails3}/config/initializers/backtrace_silencers.rb +0 -0
  21. data/test/{dummy → dummy-rails3}/config/initializers/inflections.rb +0 -0
  22. data/test/{dummy → dummy-rails3}/config/initializers/mime_types.rb +0 -0
  23. data/test/{dummy → dummy-rails3}/config/initializers/secret_token.rb +0 -0
  24. data/test/{dummy → dummy-rails3}/config/initializers/session_store.rb +0 -0
  25. data/test/{dummy → dummy-rails3}/config/initializers/wrap_parameters.rb +0 -0
  26. data/test/{dummy → dummy-rails3}/config/locales/en.yml +0 -0
  27. data/test/{dummy → dummy-rails3}/config/routes.rb +0 -0
  28. data/test/{dummy → dummy-rails3}/config.ru +0 -0
  29. data/test/{dummy → dummy-rails3}/db/migrate/20131027192625_create_manufacturers.rb +0 -0
  30. data/test/{dummy → dummy-rails3}/db/migrate/20131027192834_create_widgets.rb +0 -0
  31. data/test/{dummy → dummy-rails3}/db/schema.rb +0 -0
  32. data/test/{dummy → dummy-rails3}/db/test.sqlite3 +0 -0
  33. data/test/dummy-rails3/log/test.log +1169 -0
  34. data/test/{dummy → dummy-rails3}/public/404.html +0 -0
  35. data/test/{dummy → dummy-rails3}/public/422.html +0 -0
  36. data/test/{dummy → dummy-rails3}/public/500.html +0 -0
  37. data/test/{dummy → dummy-rails3}/public/favicon.ico +0 -0
  38. data/test/{dummy → dummy-rails3}/script/rails +0 -0
  39. data/test/dummy-rails4/Rakefile +6 -0
  40. data/test/dummy-rails4/app/assets/javascripts/application.js +16 -0
  41. data/test/dummy-rails4/app/assets/stylesheets/application.css +13 -0
  42. data/test/dummy-rails4/app/controllers/application_controller.rb +5 -0
  43. data/test/dummy-rails4/app/helpers/application_helper.rb +2 -0
  44. data/test/dummy-rails4/app/models/manufacturer.rb +3 -0
  45. data/test/dummy-rails4/app/models/widget.rb +7 -0
  46. data/test/dummy-rails4/app/views/layouts/application.html.erb +14 -0
  47. data/test/dummy-rails4/bin/bundle +3 -0
  48. data/test/dummy-rails4/bin/rails +4 -0
  49. data/test/dummy-rails4/bin/rake +4 -0
  50. data/test/dummy-rails4/config/application.rb +27 -0
  51. data/test/dummy-rails4/config/boot.rb +4 -0
  52. data/test/dummy-rails4/config/database.yml +25 -0
  53. data/test/dummy-rails4/config/environment.rb +5 -0
  54. data/test/dummy-rails4/config/environments/development.rb +29 -0
  55. data/test/dummy-rails4/config/environments/production.rb +80 -0
  56. data/test/dummy-rails4/config/environments/test.rb +36 -0
  57. data/test/dummy-rails4/config/initializers/backtrace_silencers.rb +7 -0
  58. data/test/dummy-rails4/config/initializers/filter_parameter_logging.rb +4 -0
  59. data/test/dummy-rails4/config/initializers/inflections.rb +16 -0
  60. data/test/dummy-rails4/config/initializers/mime_types.rb +5 -0
  61. data/test/dummy-rails4/config/initializers/secret_token.rb +12 -0
  62. data/test/dummy-rails4/config/initializers/session_store.rb +3 -0
  63. data/test/dummy-rails4/config/initializers/wrap_parameters.rb +14 -0
  64. data/test/dummy-rails4/config/locales/en.yml +23 -0
  65. data/test/dummy-rails4/config/routes.rb +56 -0
  66. data/test/dummy-rails4/config.ru +4 -0
  67. data/test/dummy-rails4/db/migrate/20131027192625_create_manufacturers.rb +9 -0
  68. data/test/dummy-rails4/db/migrate/20131027192834_create_widgets.rb +11 -0
  69. data/test/dummy-rails4/db/schema.rb +28 -0
  70. data/test/dummy-rails4/db/seeds.rb +7 -0
  71. data/test/{dummy/db/development.sqlite3 → dummy-rails4/db/test.sqlite3} +0 -0
  72. data/test/dummy-rails4/log/development.log +14 -0
  73. data/test/dummy-rails4/log/test.log +706 -0
  74. data/test/dummy-rails4/public/404.html +58 -0
  75. data/test/dummy-rails4/public/422.html +58 -0
  76. data/test/dummy-rails4/public/500.html +57 -0
  77. data/test/dummy-rails4/public/favicon.ico +0 -0
  78. data/test/dummy-rails4/public/robots.txt +5 -0
  79. data/test/test_helper.rb +12 -4
  80. data/test/test_utils.rb +27 -0
  81. metadata +154 -94
  82. data/test/dummy/README.rdoc +0 -261
  83. data/test/dummy/log/development.log +0 -28
  84. data/test/dummy/log/test.log +0 -690
@@ -0,0 +1,706 @@
1
+  (0.6ms) begin transaction
2
+ ------------------------------------------------------------------------------------
3
+ AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
4
+ ------------------------------------------------------------------------------------
5
+  (0.2ms) rollback transaction
6
+  (0.2ms) begin transaction
7
+ -------------------------------------------------------------------------------------
8
+ AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
9
+ -------------------------------------------------------------------------------------
10
+  (0.1ms) rollback transaction
11
+  (0.1ms) begin transaction
12
+ -----------------------------------------------------------------------------------------
13
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
14
+ -----------------------------------------------------------------------------------------
15
+  (0.1ms) rollback transaction
16
+  (0.1ms) begin transaction
17
+ ---------------------------------------------------------------------------------------
18
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
19
+ ---------------------------------------------------------------------------------------
20
+  (0.1ms) rollback transaction
21
+  (168.8ms) CREATE TABLE "items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
22
+  (198.7ms) CREATE TABLE "owners" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
23
+  (182.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
24
+  (155.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
25
+  (0.4ms) SELECT version FROM "schema_migrations"
26
+  (165.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20131206055812')
27
+  (156.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20131027192625')
28
+  (154.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131027192834')
29
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
30
+  (0.5ms) begin transaction
31
+ ------------------------------------------------------------------------------------
32
+ AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
33
+ ------------------------------------------------------------------------------------
34
+  (0.1ms) rollback transaction
35
+  (0.1ms) begin transaction
36
+ -------------------------------------------------------------------------------------
37
+ AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
38
+ -------------------------------------------------------------------------------------
39
+  (0.1ms) rollback transaction
40
+  (0.1ms) begin transaction
41
+ -----------------------------------------------------------------------------------------
42
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
43
+ -----------------------------------------------------------------------------------------
44
+  (0.1ms) rollback transaction
45
+  (0.1ms) begin transaction
46
+ ---------------------------------------------------------------------------------------
47
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
48
+ ---------------------------------------------------------------------------------------
49
+  (0.1ms) rollback transaction
50
+  (0.5ms) begin transaction
51
+ ------------------------------------------------------------------------------------
52
+ AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
53
+ ------------------------------------------------------------------------------------
54
+  (0.1ms) rollback transaction
55
+  (0.1ms) begin transaction
56
+ -------------------------------------------------------------------------------------
57
+ AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
58
+ -------------------------------------------------------------------------------------
59
+  (0.1ms) rollback transaction
60
+  (0.1ms) begin transaction
61
+ -----------------------------------------------------------------------------------------
62
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
63
+ -----------------------------------------------------------------------------------------
64
+  (0.1ms) rollback transaction
65
+  (0.1ms) begin transaction
66
+ ---------------------------------------------------------------------------------------
67
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
68
+ ---------------------------------------------------------------------------------------
69
+  (0.1ms) rollback transaction
70
+  (167.7ms) CREATE TABLE "manufacturers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
71
+  (188.8ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "manufacturer_id" integer, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
72
+  (194.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
73
+  (166.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
74
+  (0.3ms) SELECT version FROM "schema_migrations"
75
+  (188.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20131027192834')
76
+  (166.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20131027192625')
77
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
78
+  (0.6ms) begin transaction
79
+ ------------------------------------------------------------------------------------
80
+ AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
81
+ ------------------------------------------------------------------------------------
82
+  (0.1ms) SAVEPOINT active_record_1
83
+ SQL (34.4ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:26:43 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:26:43 UTC +00:00]]
84
+  (0.1ms) RELEASE SAVEPOINT active_record_1
85
+  (0.3ms) rollback transaction
86
+  (0.1ms) begin transaction
87
+ -------------------------------------------------------------------------------------
88
+ AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
89
+ -------------------------------------------------------------------------------------
90
+  (0.1ms) SAVEPOINT active_record_1
91
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:26:43 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:26:43 UTC +00:00]]
92
+  (0.1ms) RELEASE SAVEPOINT active_record_1
93
+  (0.3ms) rollback transaction
94
+  (0.1ms) begin transaction
95
+ -----------------------------------------------------------------------------------------
96
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
97
+ -----------------------------------------------------------------------------------------
98
+  (0.1ms) SAVEPOINT active_record_1
99
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:26:43 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:26:43 UTC +00:00]]
100
+  (0.1ms) RELEASE SAVEPOINT active_record_1
101
+  (0.2ms) rollback transaction
102
+  (0.1ms) begin transaction
103
+ ---------------------------------------------------------------------------------------
104
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
105
+ ---------------------------------------------------------------------------------------
106
+  (0.1ms) SAVEPOINT active_record_1
107
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:26:43 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:26:43 UTC +00:00]]
108
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109
+  (0.2ms) rollback transaction
110
+  (0.7ms) begin transaction
111
+ ------------------------------------------------------------------------------------
112
+ AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
113
+ ------------------------------------------------------------------------------------
114
+  (0.1ms) SAVEPOINT active_record_1
115
+ SQL (7.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:11:50 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:11:50 UTC +00:00]]
116
+  (0.1ms) RELEASE SAVEPOINT active_record_1
117
+  (0.2ms) rollback transaction
118
+  (0.1ms) begin transaction
119
+ -------------------------------------------------------------------------------------
120
+ AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
121
+ -------------------------------------------------------------------------------------
122
+  (0.1ms) SAVEPOINT active_record_1
123
+ SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:11:50 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:11:50 UTC +00:00]]
124
+  (0.1ms) RELEASE SAVEPOINT active_record_1
125
+  (0.3ms) rollback transaction
126
+  (0.1ms) begin transaction
127
+ -----------------------------------------------------------------------------------------
128
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
129
+ -----------------------------------------------------------------------------------------
130
+  (0.1ms) SAVEPOINT active_record_1
131
+ SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:11:50 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:11:50 UTC +00:00]]
132
+  (0.1ms) RELEASE SAVEPOINT active_record_1
133
+  (0.2ms) rollback transaction
134
+  (0.1ms) begin transaction
135
+ ---------------------------------------------------------------------------------------
136
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
137
+ ---------------------------------------------------------------------------------------
138
+  (0.1ms) SAVEPOINT active_record_1
139
+ SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:11:50 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:11:50 UTC +00:00]]
140
+  (0.1ms) RELEASE SAVEPOINT active_record_1
141
+  (0.2ms) rollback transaction
142
+  (0.7ms) begin transaction
143
+ ------------------------------------------------------------------------------------
144
+ AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
145
+ ------------------------------------------------------------------------------------
146
+  (0.1ms) SAVEPOINT active_record_1
147
+ SQL (7.4ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:12:41 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:12:41 UTC +00:00]]
148
+  (0.1ms) RELEASE SAVEPOINT active_record_1
149
+  (0.3ms) rollback transaction
150
+  (0.1ms) begin transaction
151
+ -------------------------------------------------------------------------------------
152
+ AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
153
+ -------------------------------------------------------------------------------------
154
+  (0.1ms) SAVEPOINT active_record_1
155
+ SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:12:41 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:12:41 UTC +00:00]]
156
+  (0.1ms) RELEASE SAVEPOINT active_record_1
157
+  (0.3ms) rollback transaction
158
+  (0.1ms) begin transaction
159
+ -----------------------------------------------------------------------------------------
160
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
161
+ -----------------------------------------------------------------------------------------
162
+  (0.1ms) SAVEPOINT active_record_1
163
+ SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:12:42 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:12:42 UTC +00:00]]
164
+  (0.1ms) RELEASE SAVEPOINT active_record_1
165
+  (0.2ms) rollback transaction
166
+  (0.1ms) begin transaction
167
+ ---------------------------------------------------------------------------------------
168
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
169
+ ---------------------------------------------------------------------------------------
170
+  (0.1ms) SAVEPOINT active_record_1
171
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:12:42 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:12:42 UTC +00:00]]
172
+  (0.1ms) RELEASE SAVEPOINT active_record_1
173
+  (0.2ms) rollback transaction
174
+  (0.7ms) begin transaction
175
+ ------------------------------------------------------------------------------------
176
+ AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
177
+ ------------------------------------------------------------------------------------
178
+  (0.1ms) SAVEPOINT active_record_1
179
+ SQL (7.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:16:10 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:16:10 UTC +00:00]]
180
+  (0.1ms) RELEASE SAVEPOINT active_record_1
181
+  (0.3ms) rollback transaction
182
+  (0.1ms) begin transaction
183
+ -------------------------------------------------------------------------------------
184
+ AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
185
+ -------------------------------------------------------------------------------------
186
+  (0.1ms) SAVEPOINT active_record_1
187
+ SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:16:10 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:16:10 UTC +00:00]]
188
+  (0.1ms) RELEASE SAVEPOINT active_record_1
189
+  (0.3ms) rollback transaction
190
+  (0.1ms) begin transaction
191
+ -----------------------------------------------------------------------------------------
192
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
193
+ -----------------------------------------------------------------------------------------
194
+  (0.1ms) SAVEPOINT active_record_1
195
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:16:10 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:16:10 UTC +00:00]]
196
+  (0.1ms) RELEASE SAVEPOINT active_record_1
197
+  (0.2ms) rollback transaction
198
+  (0.1ms) begin transaction
199
+ ---------------------------------------------------------------------------------------
200
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
201
+ ---------------------------------------------------------------------------------------
202
+  (0.1ms) SAVEPOINT active_record_1
203
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:16:10 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:16:10 UTC +00:00]]
204
+  (0.1ms) RELEASE SAVEPOINT active_record_1
205
+  (0.2ms) rollback transaction
206
+  (0.6ms) begin transaction
207
+ ------------------------------------------------------------------------------------
208
+ AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
209
+ ------------------------------------------------------------------------------------
210
+  (0.1ms) SAVEPOINT active_record_1
211
+ SQL (7.4ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:18:11 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:18:11 UTC +00:00]]
212
+  (0.1ms) RELEASE SAVEPOINT active_record_1
213
+  (0.3ms) rollback transaction
214
+  (0.1ms) begin transaction
215
+ -------------------------------------------------------------------------------------
216
+ AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
217
+ -------------------------------------------------------------------------------------
218
+  (0.1ms) SAVEPOINT active_record_1
219
+ SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:18:11 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:18:11 UTC +00:00]]
220
+  (0.1ms) RELEASE SAVEPOINT active_record_1
221
+  (0.3ms) rollback transaction
222
+  (0.1ms) begin transaction
223
+ -----------------------------------------------------------------------------------------
224
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
225
+ -----------------------------------------------------------------------------------------
226
+  (0.1ms) SAVEPOINT active_record_1
227
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:18:11 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:18:11 UTC +00:00]]
228
+  (0.1ms) RELEASE SAVEPOINT active_record_1
229
+  (0.2ms) rollback transaction
230
+  (0.1ms) begin transaction
231
+ ---------------------------------------------------------------------------------------
232
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
233
+ ---------------------------------------------------------------------------------------
234
+  (0.1ms) SAVEPOINT active_record_1
235
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:18:11 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:18:11 UTC +00:00]]
236
+  (0.1ms) RELEASE SAVEPOINT active_record_1
237
+  (0.2ms) rollback transaction
238
+  (0.6ms) begin transaction
239
+ ------------------------------------------------------------------------------------
240
+ AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
241
+ ------------------------------------------------------------------------------------
242
+  (0.1ms) SAVEPOINT active_record_1
243
+ SQL (37.8ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:19:07 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:19:07 UTC +00:00]]
244
+  (0.1ms) RELEASE SAVEPOINT active_record_1
245
+ Manufacturer Load (0.4ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = ? ORDER BY "manufacturers"."id" ASC LIMIT 1 [["id", 1]]
246
+  (0.3ms) rollback transaction
247
+  (0.1ms) begin transaction
248
+ -------------------------------------------------------------------------------------
249
+ AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
250
+ -------------------------------------------------------------------------------------
251
+  (0.1ms) SAVEPOINT active_record_1
252
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:19:07 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:19:07 UTC +00:00]]
253
+  (0.1ms) RELEASE SAVEPOINT active_record_1
254
+  (0.1ms) SAVEPOINT active_record_1
255
+ SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 22:19:07 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 22:19:07 UTC +00:00]]
256
+  (0.1ms) RELEASE SAVEPOINT active_record_1
257
+  (0.1ms) SAVEPOINT active_record_1
258
+ SQL (0.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:19:07 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:19:07 UTC +00:00]]
259
+  (0.1ms) RELEASE SAVEPOINT active_record_1
260
+  (0.1ms) SAVEPOINT active_record_1
261
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
262
+  (0.2ms) rollback transaction
263
+  (0.1ms) begin transaction
264
+ -----------------------------------------------------------------------------------------
265
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
266
+ -----------------------------------------------------------------------------------------
267
+  (0.1ms) SAVEPOINT active_record_1
268
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:19:07 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:19:07 UTC +00:00]]
269
+  (0.1ms) RELEASE SAVEPOINT active_record_1
270
+  (0.2ms) rollback transaction
271
+  (0.1ms) begin transaction
272
+ ---------------------------------------------------------------------------------------
273
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
274
+ ---------------------------------------------------------------------------------------
275
+  (0.1ms) SAVEPOINT active_record_1
276
+ SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:19:07 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:19:07 UTC +00:00]]
277
+  (0.1ms) RELEASE SAVEPOINT active_record_1
278
+  (0.1ms) SAVEPOINT active_record_1
279
+ SQL (0.5ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 22:19:07 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 22:19:07 UTC +00:00]]
280
+  (0.1ms) RELEASE SAVEPOINT active_record_1
281
+  (0.1ms) SAVEPOINT active_record_1
282
+ SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:19:07 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:19:07 UTC +00:00]]
283
+  (0.1ms) RELEASE SAVEPOINT active_record_1
284
+  (0.1ms) SAVEPOINT active_record_1
285
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
286
+  (0.4ms) rollback transaction
287
+  (0.5ms) begin transaction
288
+ ------------------------------------------------------------------------------------
289
+ AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
290
+ ------------------------------------------------------------------------------------
291
+  (0.1ms) rollback transaction
292
+  (0.1ms) begin transaction
293
+ -------------------------------------------------------------------------------------
294
+ AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
295
+ -------------------------------------------------------------------------------------
296
+  (0.1ms) rollback transaction
297
+  (0.1ms) begin transaction
298
+ -----------------------------------------------------------------------------------------
299
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
300
+ -----------------------------------------------------------------------------------------
301
+  (0.1ms) rollback transaction
302
+  (0.1ms) begin transaction
303
+ ---------------------------------------------------------------------------------------
304
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
305
+ ---------------------------------------------------------------------------------------
306
+  (0.1ms) rollback transaction
307
+  (165.3ms) CREATE TABLE "manufacturers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
308
+  (165.1ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "manufacturer_id" integer, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
309
+  (165.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
310
+  (156.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
311
+  (0.3ms) SELECT version FROM "schema_migrations"
312
+  (165.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20131027192834')
313
+  (144.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20131027192625')
314
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
315
+  (0.5ms) begin transaction
316
+ ------------------------------------------------------------------------------------
317
+ AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
318
+ ------------------------------------------------------------------------------------
319
+  (0.1ms) SAVEPOINT active_record_1
320
+ SQL (38.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:51:28 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:51:28 UTC +00:00]]
321
+  (0.1ms) RELEASE SAVEPOINT active_record_1
322
+ Manufacturer Load (0.3ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = ? ORDER BY "manufacturers"."id" ASC LIMIT 1 [["id", 1]]
323
+  (0.2ms) rollback transaction
324
+  (0.1ms) begin transaction
325
+ -------------------------------------------------------------------------------------
326
+ AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
327
+ -------------------------------------------------------------------------------------
328
+  (0.1ms) SAVEPOINT active_record_1
329
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:51:28 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:51:28 UTC +00:00]]
330
+  (0.1ms) RELEASE SAVEPOINT active_record_1
331
+  (0.1ms) SAVEPOINT active_record_1
332
+ SQL (0.7ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 22:51:28 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 22:51:28 UTC +00:00]]
333
+  (0.1ms) RELEASE SAVEPOINT active_record_1
334
+  (0.1ms) SAVEPOINT active_record_1
335
+ SQL (0.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:51:28 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:51:28 UTC +00:00]]
336
+  (0.1ms) RELEASE SAVEPOINT active_record_1
337
+  (0.1ms) SAVEPOINT active_record_1
338
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
339
+  (0.2ms) rollback transaction
340
+  (0.1ms) begin transaction
341
+ -----------------------------------------------------------------------------------------
342
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
343
+ -----------------------------------------------------------------------------------------
344
+  (0.1ms) SAVEPOINT active_record_1
345
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:51:28 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:51:28 UTC +00:00]]
346
+  (0.1ms) RELEASE SAVEPOINT active_record_1
347
+  (0.2ms) rollback transaction
348
+  (0.1ms) begin transaction
349
+ ---------------------------------------------------------------------------------------
350
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
351
+ ---------------------------------------------------------------------------------------
352
+  (0.1ms) SAVEPOINT active_record_1
353
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:51:28 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:51:28 UTC +00:00]]
354
+  (0.1ms) RELEASE SAVEPOINT active_record_1
355
+  (0.1ms) SAVEPOINT active_record_1
356
+ SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 22:51:28 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 22:51:28 UTC +00:00]]
357
+  (0.1ms) RELEASE SAVEPOINT active_record_1
358
+  (0.1ms) SAVEPOINT active_record_1
359
+ SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:51:28 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:51:28 UTC +00:00]]
360
+  (0.1ms) RELEASE SAVEPOINT active_record_1
361
+  (0.1ms) SAVEPOINT active_record_1
362
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
363
+  (0.2ms) rollback transaction
364
+  (0.7ms) begin transaction
365
+ ------------------------------------------------------------------------------------
366
+ AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
367
+ ------------------------------------------------------------------------------------
368
+  (0.1ms) SAVEPOINT active_record_1
369
+ SQL (39.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:49:32 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:49:32 UTC +00:00]]
370
+  (0.2ms) RELEASE SAVEPOINT active_record_1
371
+ Manufacturer Load (0.3ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = ? ORDER BY "manufacturers"."id" ASC LIMIT 1 [["id", 1]]
372
+  (0.2ms) rollback transaction
373
+  (0.1ms) begin transaction
374
+ -------------------------------------------------------------------------------------
375
+ AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
376
+ -------------------------------------------------------------------------------------
377
+  (0.1ms) SAVEPOINT active_record_1
378
+ SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:49:32 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:49:32 UTC +00:00]]
379
+  (0.1ms) RELEASE SAVEPOINT active_record_1
380
+  (0.1ms) SAVEPOINT active_record_1
381
+ SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 01:49:32 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 01:49:32 UTC +00:00]]
382
+  (0.1ms) RELEASE SAVEPOINT active_record_1
383
+  (0.1ms) SAVEPOINT active_record_1
384
+ SQL (0.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:49:32 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:49:32 UTC +00:00]]
385
+  (0.1ms) RELEASE SAVEPOINT active_record_1
386
+  (0.1ms) SAVEPOINT active_record_1
387
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
388
+  (0.2ms) rollback transaction
389
+  (0.1ms) begin transaction
390
+ -----------------------------------------------------------------------------------------
391
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
392
+ -----------------------------------------------------------------------------------------
393
+  (0.1ms) SAVEPOINT active_record_1
394
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:49:32 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:49:32 UTC +00:00]]
395
+  (0.1ms) RELEASE SAVEPOINT active_record_1
396
+  (0.2ms) rollback transaction
397
+  (0.1ms) begin transaction
398
+ ---------------------------------------------------------------------------------------
399
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
400
+ ---------------------------------------------------------------------------------------
401
+  (0.1ms) SAVEPOINT active_record_1
402
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:49:32 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:49:32 UTC +00:00]]
403
+  (0.1ms) RELEASE SAVEPOINT active_record_1
404
+  (0.1ms) SAVEPOINT active_record_1
405
+ SQL (0.5ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 01:49:32 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 01:49:32 UTC +00:00]]
406
+  (0.1ms) RELEASE SAVEPOINT active_record_1
407
+  (0.1ms) SAVEPOINT active_record_1
408
+ SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:49:32 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:49:32 UTC +00:00]]
409
+  (0.1ms) RELEASE SAVEPOINT active_record_1
410
+  (0.1ms) SAVEPOINT active_record_1
411
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
412
+  (0.2ms) rollback transaction
413
+  (0.6ms) begin transaction
414
+ ------------------------------------------------------------------------------------
415
+ AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
416
+ ------------------------------------------------------------------------------------
417
+  (0.1ms) SAVEPOINT active_record_1
418
+ SQL (38.0ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:49:40 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:49:40 UTC +00:00]]
419
+  (0.1ms) RELEASE SAVEPOINT active_record_1
420
+ Manufacturer Load (0.3ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = ? ORDER BY "manufacturers"."id" ASC LIMIT 1 [["id", 1]]
421
+  (0.2ms) rollback transaction
422
+  (0.1ms) begin transaction
423
+ -------------------------------------------------------------------------------------
424
+ AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
425
+ -------------------------------------------------------------------------------------
426
+  (0.1ms) SAVEPOINT active_record_1
427
+ SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:49:40 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:49:40 UTC +00:00]]
428
+  (0.1ms) RELEASE SAVEPOINT active_record_1
429
+  (0.1ms) SAVEPOINT active_record_1
430
+ SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 01:49:40 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 01:49:40 UTC +00:00]]
431
+  (0.1ms) RELEASE SAVEPOINT active_record_1
432
+  (0.1ms) SAVEPOINT active_record_1
433
+ SQL (0.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:49:40 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:49:40 UTC +00:00]]
434
+  (0.1ms) RELEASE SAVEPOINT active_record_1
435
+  (0.1ms) SAVEPOINT active_record_1
436
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
437
+  (0.2ms) rollback transaction
438
+  (0.1ms) begin transaction
439
+ -----------------------------------------------------------------------------------------
440
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
441
+ -----------------------------------------------------------------------------------------
442
+  (0.1ms) SAVEPOINT active_record_1
443
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:49:40 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:49:40 UTC +00:00]]
444
+  (0.1ms) RELEASE SAVEPOINT active_record_1
445
+  (0.3ms) rollback transaction
446
+  (0.1ms) begin transaction
447
+ ---------------------------------------------------------------------------------------
448
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
449
+ ---------------------------------------------------------------------------------------
450
+  (0.1ms) SAVEPOINT active_record_1
451
+ SQL (0.8ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:49:40 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:49:40 UTC +00:00]]
452
+  (0.1ms) RELEASE SAVEPOINT active_record_1
453
+  (0.1ms) SAVEPOINT active_record_1
454
+ SQL (0.7ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 01:49:40 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 01:49:40 UTC +00:00]]
455
+  (0.1ms) RELEASE SAVEPOINT active_record_1
456
+  (0.1ms) SAVEPOINT active_record_1
457
+ SQL (0.4ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:49:40 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:49:40 UTC +00:00]]
458
+  (0.1ms) RELEASE SAVEPOINT active_record_1
459
+  (0.1ms) SAVEPOINT active_record_1
460
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
461
+  (0.4ms) rollback transaction
462
+  (0.6ms) begin transaction
463
+ ------------------------------------------------------------------------------------
464
+ AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
465
+ ------------------------------------------------------------------------------------
466
+  (0.1ms) SAVEPOINT active_record_1
467
+ SQL (37.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:58:06 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:58:06 UTC +00:00]]
468
+  (0.1ms) RELEASE SAVEPOINT active_record_1
469
+ Manufacturer Load (0.3ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = ? ORDER BY "manufacturers"."id" ASC LIMIT 1 [["id", 1]]
470
+  (0.2ms) rollback transaction
471
+  (0.1ms) begin transaction
472
+ -------------------------------------------------------------------------------------
473
+ AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
474
+ -------------------------------------------------------------------------------------
475
+  (0.1ms) SAVEPOINT active_record_1
476
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:58:06 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:58:06 UTC +00:00]]
477
+  (0.1ms) RELEASE SAVEPOINT active_record_1
478
+  (0.1ms) SAVEPOINT active_record_1
479
+ SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 01:58:06 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 01:58:06 UTC +00:00]]
480
+  (0.1ms) RELEASE SAVEPOINT active_record_1
481
+  (0.1ms) SAVEPOINT active_record_1
482
+ SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:58:06 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:58:06 UTC +00:00]]
483
+  (0.1ms) RELEASE SAVEPOINT active_record_1
484
+  (0.1ms) SAVEPOINT active_record_1
485
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
486
+  (0.3ms) rollback transaction
487
+  (0.1ms) begin transaction
488
+ -----------------------------------------------------------------------------------------
489
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
490
+ -----------------------------------------------------------------------------------------
491
+  (0.1ms) SAVEPOINT active_record_1
492
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:58:06 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:58:06 UTC +00:00]]
493
+  (0.1ms) RELEASE SAVEPOINT active_record_1
494
+  (0.2ms) rollback transaction
495
+  (0.1ms) begin transaction
496
+ ---------------------------------------------------------------------------------------
497
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
498
+ ---------------------------------------------------------------------------------------
499
+  (0.1ms) SAVEPOINT active_record_1
500
+ SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:58:06 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:58:06 UTC +00:00]]
501
+  (0.1ms) RELEASE SAVEPOINT active_record_1
502
+  (0.1ms) SAVEPOINT active_record_1
503
+ SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 01:58:06 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 01:58:06 UTC +00:00]]
504
+  (0.1ms) RELEASE SAVEPOINT active_record_1
505
+  (0.1ms) SAVEPOINT active_record_1
506
+ SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:58:06 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:58:06 UTC +00:00]]
507
+  (0.1ms) RELEASE SAVEPOINT active_record_1
508
+  (0.1ms) SAVEPOINT active_record_1
509
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
510
+  (0.2ms) rollback transaction
511
+  (0.6ms) begin transaction
512
+ ------------------------------------------------------------------------------------
513
+ AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
514
+ ------------------------------------------------------------------------------------
515
+  (0.1ms) SAVEPOINT active_record_1
516
+ SQL (40.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:00:31 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:00:31 UTC +00:00]]
517
+  (0.1ms) RELEASE SAVEPOINT active_record_1
518
+ Manufacturer Load (0.4ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = ? ORDER BY "manufacturers"."id" ASC LIMIT 1 [["id", 1]]
519
+  (0.3ms) rollback transaction
520
+  (0.1ms) begin transaction
521
+ -------------------------------------------------------------------------------------
522
+ AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
523
+ -------------------------------------------------------------------------------------
524
+  (0.1ms) SAVEPOINT active_record_1
525
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:00:31 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:00:31 UTC +00:00]]
526
+  (0.1ms) RELEASE SAVEPOINT active_record_1
527
+  (0.1ms) SAVEPOINT active_record_1
528
+ SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 02:00:31 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 02:00:31 UTC +00:00]]
529
+  (0.1ms) RELEASE SAVEPOINT active_record_1
530
+  (0.1ms) SAVEPOINT active_record_1
531
+ SQL (0.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:00:31 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:00:31 UTC +00:00]]
532
+  (0.1ms) RELEASE SAVEPOINT active_record_1
533
+  (0.1ms) SAVEPOINT active_record_1
534
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
535
+  (0.2ms) rollback transaction
536
+  (0.1ms) begin transaction
537
+ -----------------------------------------------------------------------------------------
538
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
539
+ -----------------------------------------------------------------------------------------
540
+  (0.1ms) SAVEPOINT active_record_1
541
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:00:31 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:00:31 UTC +00:00]]
542
+  (0.1ms) RELEASE SAVEPOINT active_record_1
543
+  (0.2ms) rollback transaction
544
+  (0.1ms) begin transaction
545
+ ---------------------------------------------------------------------------------------
546
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
547
+ ---------------------------------------------------------------------------------------
548
+  (0.1ms) SAVEPOINT active_record_1
549
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:00:31 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:00:31 UTC +00:00]]
550
+  (0.1ms) RELEASE SAVEPOINT active_record_1
551
+  (0.1ms) SAVEPOINT active_record_1
552
+ SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 02:00:31 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 02:00:31 UTC +00:00]]
553
+  (0.1ms) RELEASE SAVEPOINT active_record_1
554
+  (0.1ms) SAVEPOINT active_record_1
555
+ SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:00:31 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:00:31 UTC +00:00]]
556
+  (0.1ms) RELEASE SAVEPOINT active_record_1
557
+  (0.1ms) SAVEPOINT active_record_1
558
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
559
+  (0.2ms) rollback transaction
560
+  (0.6ms) begin transaction
561
+ ------------------------------------------------------------------------------------
562
+ AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
563
+ ------------------------------------------------------------------------------------
564
+  (0.1ms) SAVEPOINT active_record_1
565
+ SQL (36.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:00:51 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:00:51 UTC +00:00]]
566
+  (0.1ms) RELEASE SAVEPOINT active_record_1
567
+ Manufacturer Load (0.3ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = ? ORDER BY "manufacturers"."id" ASC LIMIT 1 [["id", 1]]
568
+  (0.2ms) rollback transaction
569
+  (0.1ms) begin transaction
570
+ -------------------------------------------------------------------------------------
571
+ AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
572
+ -------------------------------------------------------------------------------------
573
+  (0.1ms) SAVEPOINT active_record_1
574
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:00:51 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:00:51 UTC +00:00]]
575
+  (0.1ms) RELEASE SAVEPOINT active_record_1
576
+  (0.1ms) SAVEPOINT active_record_1
577
+ SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 02:00:51 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 02:00:51 UTC +00:00]]
578
+  (0.1ms) RELEASE SAVEPOINT active_record_1
579
+  (0.1ms) SAVEPOINT active_record_1
580
+ SQL (0.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:00:51 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:00:51 UTC +00:00]]
581
+  (0.1ms) RELEASE SAVEPOINT active_record_1
582
+  (0.1ms) SAVEPOINT active_record_1
583
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
584
+  (0.2ms) rollback transaction
585
+  (0.1ms) begin transaction
586
+ -----------------------------------------------------------------------------------------
587
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
588
+ -----------------------------------------------------------------------------------------
589
+  (0.1ms) SAVEPOINT active_record_1
590
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:00:51 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:00:51 UTC +00:00]]
591
+  (0.1ms) RELEASE SAVEPOINT active_record_1
592
+  (0.2ms) rollback transaction
593
+  (0.1ms) begin transaction
594
+ ---------------------------------------------------------------------------------------
595
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
596
+ ---------------------------------------------------------------------------------------
597
+  (0.1ms) SAVEPOINT active_record_1
598
+ SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:00:51 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:00:51 UTC +00:00]]
599
+  (0.1ms) RELEASE SAVEPOINT active_record_1
600
+  (0.1ms) SAVEPOINT active_record_1
601
+ SQL (0.5ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 02:00:51 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 02:00:51 UTC +00:00]]
602
+  (0.1ms) RELEASE SAVEPOINT active_record_1
603
+  (0.1ms) SAVEPOINT active_record_1
604
+ SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:00:51 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:00:51 UTC +00:00]]
605
+  (0.1ms) RELEASE SAVEPOINT active_record_1
606
+  (0.1ms) SAVEPOINT active_record_1
607
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
608
+  (0.2ms) rollback transaction
609
+  (0.6ms) begin transaction
610
+ ------------------------------------------------------------------------------------
611
+ AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
612
+ ------------------------------------------------------------------------------------
613
+  (0.1ms) SAVEPOINT active_record_1
614
+ SQL (7.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:02:33 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:02:33 UTC +00:00]]
615
+  (0.1ms) RELEASE SAVEPOINT active_record_1
616
+ Manufacturer Load (0.3ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = ? ORDER BY "manufacturers"."id" ASC LIMIT 1 [["id", 1]]
617
+  (0.2ms) rollback transaction
618
+  (0.1ms) begin transaction
619
+ -------------------------------------------------------------------------------------
620
+ AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
621
+ -------------------------------------------------------------------------------------
622
+  (0.1ms) SAVEPOINT active_record_1
623
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:02:33 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:02:33 UTC +00:00]]
624
+  (0.1ms) RELEASE SAVEPOINT active_record_1
625
+  (0.1ms) SAVEPOINT active_record_1
626
+ SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 02:02:33 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 02:02:33 UTC +00:00]]
627
+  (0.1ms) RELEASE SAVEPOINT active_record_1
628
+  (0.1ms) SAVEPOINT active_record_1
629
+ SQL (0.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:02:33 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:02:33 UTC +00:00]]
630
+  (0.1ms) RELEASE SAVEPOINT active_record_1
631
+  (0.1ms) SAVEPOINT active_record_1
632
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
633
+  (0.3ms) rollback transaction
634
+  (0.1ms) begin transaction
635
+ -----------------------------------------------------------------------------------------
636
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
637
+ -----------------------------------------------------------------------------------------
638
+  (0.1ms) SAVEPOINT active_record_1
639
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:02:33 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:02:33 UTC +00:00]]
640
+  (0.1ms) RELEASE SAVEPOINT active_record_1
641
+  (0.2ms) rollback transaction
642
+  (0.1ms) begin transaction
643
+ ---------------------------------------------------------------------------------------
644
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
645
+ ---------------------------------------------------------------------------------------
646
+  (0.1ms) SAVEPOINT active_record_1
647
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:02:33 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:02:33 UTC +00:00]]
648
+  (0.1ms) RELEASE SAVEPOINT active_record_1
649
+  (0.1ms) SAVEPOINT active_record_1
650
+ SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 02:02:33 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 02:02:33 UTC +00:00]]
651
+  (0.1ms) RELEASE SAVEPOINT active_record_1
652
+  (0.1ms) SAVEPOINT active_record_1
653
+ SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:02:33 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:02:33 UTC +00:00]]
654
+  (0.1ms) RELEASE SAVEPOINT active_record_1
655
+  (0.1ms) SAVEPOINT active_record_1
656
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
657
+  (0.2ms) rollback transaction
658
+  (0.5ms) begin transaction
659
+ ------------------------------------------------------------------------------------
660
+ AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
661
+ ------------------------------------------------------------------------------------
662
+  (0.1ms) SAVEPOINT active_record_1
663
+ SQL (8.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:04:49 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:04:49 UTC +00:00]]
664
+  (0.1ms) RELEASE SAVEPOINT active_record_1
665
+ Manufacturer Load (0.3ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = ? ORDER BY "manufacturers"."id" ASC LIMIT 1 [["id", 1]]
666
+  (0.3ms) rollback transaction
667
+  (0.1ms) begin transaction
668
+ -------------------------------------------------------------------------------------
669
+ AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
670
+ -------------------------------------------------------------------------------------
671
+  (0.1ms) SAVEPOINT active_record_1
672
+ SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:04:49 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:04:49 UTC +00:00]]
673
+  (0.1ms) RELEASE SAVEPOINT active_record_1
674
+  (0.1ms) SAVEPOINT active_record_1
675
+ SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 02:04:49 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 02:04:49 UTC +00:00]]
676
+  (0.1ms) RELEASE SAVEPOINT active_record_1
677
+  (0.1ms) SAVEPOINT active_record_1
678
+ SQL (0.4ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:04:49 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:04:49 UTC +00:00]]
679
+  (0.1ms) RELEASE SAVEPOINT active_record_1
680
+  (0.1ms) SAVEPOINT active_record_1
681
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
682
+  (0.2ms) rollback transaction
683
+  (0.1ms) begin transaction
684
+ -----------------------------------------------------------------------------------------
685
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
686
+ -----------------------------------------------------------------------------------------
687
+  (0.1ms) SAVEPOINT active_record_1
688
+ SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:04:49 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:04:49 UTC +00:00]]
689
+  (0.1ms) RELEASE SAVEPOINT active_record_1
690
+  (0.3ms) rollback transaction
691
+  (0.1ms) begin transaction
692
+ ---------------------------------------------------------------------------------------
693
+ AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
694
+ ---------------------------------------------------------------------------------------
695
+  (0.1ms) SAVEPOINT active_record_1
696
+ SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:04:49 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:04:49 UTC +00:00]]
697
+  (0.1ms) RELEASE SAVEPOINT active_record_1
698
+  (0.1ms) SAVEPOINT active_record_1
699
+ SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 02:04:49 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 02:04:49 UTC +00:00]]
700
+  (0.1ms) RELEASE SAVEPOINT active_record_1
701
+  (0.1ms) SAVEPOINT active_record_1
702
+ SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:04:49 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:04:49 UTC +00:00]]
703
+  (0.1ms) RELEASE SAVEPOINT active_record_1
704
+  (0.1ms) SAVEPOINT active_record_1
705
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
706
+  (0.2ms) rollback transaction