rock_motive 1.0.0.beta1

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 (67) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +54 -0
  4. data/lib/generators/mini_test/context_generator.rb +20 -0
  5. data/lib/generators/mini_test/role_generator.rb +20 -0
  6. data/lib/generators/mini_test/templates/context_spec.rb +4 -0
  7. data/lib/generators/mini_test/templates/context_test.rb +4 -0
  8. data/lib/generators/mini_test/templates/role_spec.rb +4 -0
  9. data/lib/generators/mini_test/templates/role_test.rb +4 -0
  10. data/lib/generators/rails/context_generator.rb +29 -0
  11. data/lib/generators/rails/role_generator.rb +14 -0
  12. data/lib/generators/rails/templates/context.rb +11 -0
  13. data/lib/generators/rails/templates/role.rb +2 -0
  14. data/lib/generators/test_unit/context_generator.rb +9 -0
  15. data/lib/generators/test_unit/role_generator.rb +9 -0
  16. data/lib/generators/test_unit/templates/context_test.rb +4 -0
  17. data/lib/generators/test_unit/templates/role_test.rb +4 -0
  18. data/lib/rock_motive/context.rb +79 -0
  19. data/lib/rock_motive/railtie.rb +8 -0
  20. data/lib/rock_motive/version.rb +3 -0
  21. data/lib/rock_motive.rb +3 -0
  22. data/lib/tasks/rock_motive_tasks.rake +4 -0
  23. data/test/dummy/README.rdoc +28 -0
  24. data/test/dummy/Rakefile +6 -0
  25. data/test/dummy/app/assets/javascripts/application.js +13 -0
  26. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  27. data/test/dummy/app/controllers/application_controller.rb +5 -0
  28. data/test/dummy/app/helpers/application_helper.rb +2 -0
  29. data/test/dummy/app/models/bird.rb +2 -0
  30. data/test/dummy/app/roles/pigeon_role.rb +5 -0
  31. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  32. data/test/dummy/bin/bundle +3 -0
  33. data/test/dummy/bin/rails +4 -0
  34. data/test/dummy/bin/rake +4 -0
  35. data/test/dummy/bin/setup +29 -0
  36. data/test/dummy/config/application.rb +31 -0
  37. data/test/dummy/config/boot.rb +5 -0
  38. data/test/dummy/config/database.yml +25 -0
  39. data/test/dummy/config/environment.rb +5 -0
  40. data/test/dummy/config/environments/development.rb +41 -0
  41. data/test/dummy/config/environments/production.rb +79 -0
  42. data/test/dummy/config/environments/test.rb +42 -0
  43. data/test/dummy/config/initializers/assets.rb +11 -0
  44. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  45. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  46. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  47. data/test/dummy/config/initializers/inflections.rb +16 -0
  48. data/test/dummy/config/initializers/mime_types.rb +4 -0
  49. data/test/dummy/config/initializers/session_store.rb +3 -0
  50. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  51. data/test/dummy/config/locales/en.yml +23 -0
  52. data/test/dummy/config/routes.rb +56 -0
  53. data/test/dummy/config/secrets.yml +22 -0
  54. data/test/dummy/config.ru +4 -0
  55. data/test/dummy/db/migrate/20150201003815_create_birds.rb +9 -0
  56. data/test/dummy/db/schema.rb +22 -0
  57. data/test/dummy/db/test.sqlite3 +0 -0
  58. data/test/dummy/log/development.log +0 -0
  59. data/test/dummy/log/test.log +1705 -0
  60. data/test/dummy/public/404.html +67 -0
  61. data/test/dummy/public/422.html +67 -0
  62. data/test/dummy/public/500.html +66 -0
  63. data/test/dummy/public/favicon.ico +0 -0
  64. data/test/rock_motive/context_test.rb +72 -0
  65. data/test/rock_motive_test.rb +7 -0
  66. data/test/test_helper.rb +24 -0
  67. metadata +279 -0
@@ -0,0 +1,1705 @@
1
+  (0.1ms) begin transaction
2
+ --------------------------
3
+ RockMotiveTest: test_truth
4
+ --------------------------
5
+  (0.1ms) rollback transaction
6
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
7
+  (0.1ms) select sqlite_version(*)
8
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
9
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
10
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
12
+  (0.0ms) select sqlite_version(*)
13
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
14
+  (0.3ms) SELECT version FROM "schema_migrations"
15
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
16
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
17
+  (0.1ms) begin transaction
18
+ --------------------------
19
+ RockMotiveTest: test_truth
20
+ --------------------------
21
+  (0.0ms) rollback transaction
22
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
23
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
24
+  (0.0ms) select sqlite_version(*)
25
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
26
+  (0.1ms) SELECT version FROM "schema_migrations"
27
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
28
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
29
+  (0.1ms) begin transaction
30
+ --------------------------
31
+ RockMotiveTest: test_truth
32
+ --------------------------
33
+  (0.0ms) rollback transaction
34
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
35
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
36
+  (0.0ms) select sqlite_version(*)
37
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
38
+  (0.1ms) SELECT version FROM "schema_migrations"
39
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
40
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
41
+  (0.1ms) begin transaction
42
+ --------------------------
43
+ RockMotiveTest: test_truth
44
+ --------------------------
45
+  (0.0ms) rollback transaction
46
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
47
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
48
+  (0.1ms) select sqlite_version(*)
49
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
50
+  (0.1ms) SELECT version FROM "schema_migrations"
51
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
52
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
53
+  (0.1ms) begin transaction
54
+ --------------------------
55
+ RockMotiveTest: test_truth
56
+ --------------------------
57
+  (0.0ms) rollback transaction
58
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
59
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
60
+  (0.0ms) select sqlite_version(*)
61
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
62
+  (0.1ms) SELECT version FROM "schema_migrations"
63
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
64
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
65
+  (0.1ms) begin transaction
66
+ --------------------------
67
+ RockMotiveTest: test_truth
68
+ --------------------------
69
+  (0.0ms) rollback transaction
70
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
71
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
72
+  (0.0ms) select sqlite_version(*)
73
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
74
+  (0.1ms) SELECT version FROM "schema_migrations"
75
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
76
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
77
+  (0.1ms) begin transaction
78
+ --------------------------
79
+ RockMotiveTest: test_truth
80
+ --------------------------
81
+  (0.0ms) rollback transaction
82
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
83
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
84
+  (0.0ms) select sqlite_version(*)
85
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
86
+  (0.1ms) SELECT version FROM "schema_migrations"
87
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
88
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
89
+  (0.1ms) begin transaction
90
+ --------------------------
91
+ RockMotiveTest: test_truth
92
+ --------------------------
93
+  (0.0ms) rollback transaction
94
+  (0.0ms) begin transaction
95
+ -------------------------------------------
96
+ RockMotive::InteractionTest: test_.interact
97
+ -------------------------------------------
98
+  (0.0ms) rollback transaction
99
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
100
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
101
+  (0.0ms) select sqlite_version(*)
102
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
103
+  (0.1ms) SELECT version FROM "schema_migrations"
104
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
105
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
106
+  (0.1ms) begin transaction
107
+ -------------------------------------------
108
+ RockMotive::InteractionTest: test_.interact
109
+ -------------------------------------------
110
+  (0.0ms) rollback transaction
111
+  (0.0ms) begin transaction
112
+ --------------------------
113
+ RockMotiveTest: test_truth
114
+ --------------------------
115
+  (0.0ms) rollback transaction
116
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
117
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
118
+  (0.0ms) select sqlite_version(*)
119
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
120
+  (0.1ms) SELECT version FROM "schema_migrations"
121
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
122
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
123
+  (0.1ms) begin transaction
124
+ -------------------------------------------
125
+ RockMotive::InteractionTest: test_.interact
126
+ -------------------------------------------
127
+  (0.0ms) rollback transaction
128
+  (0.0ms) begin transaction
129
+ --------------------------
130
+ RockMotiveTest: test_truth
131
+ --------------------------
132
+  (0.1ms) rollback transaction
133
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
134
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
135
+  (0.0ms) select sqlite_version(*)
136
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
137
+  (0.1ms) SELECT version FROM "schema_migrations"
138
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
139
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
140
+  (0.1ms) begin transaction
141
+ -------------------------------------------
142
+ RockMotive::InteractionTest: test_.interact
143
+ -------------------------------------------
144
+  (0.0ms) rollback transaction
145
+  (0.0ms) begin transaction
146
+ --------------------------
147
+ RockMotiveTest: test_truth
148
+ --------------------------
149
+  (0.0ms) rollback transaction
150
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
151
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
152
+  (0.0ms) select sqlite_version(*)
153
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
154
+  (0.1ms) SELECT version FROM "schema_migrations"
155
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
156
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
157
+  (0.1ms) begin transaction
158
+ -------------------------------------------
159
+ RockMotive::InteractionTest: test_.interact
160
+ -------------------------------------------
161
+  (0.0ms) rollback transaction
162
+  (0.0ms) begin transaction
163
+ --------------------------
164
+ RockMotiveTest: test_truth
165
+ --------------------------
166
+  (0.0ms) rollback transaction
167
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
168
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
169
+  (0.1ms) select sqlite_version(*)
170
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
171
+  (0.1ms) SELECT version FROM "schema_migrations"
172
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
173
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
174
+  (0.1ms) begin transaction
175
+ -------------------------------------------
176
+ RockMotive::InteractionTest: test_.interact
177
+ -------------------------------------------
178
+  (0.0ms) rollback transaction
179
+  (0.0ms) begin transaction
180
+ --------------------------
181
+ RockMotiveTest: test_truth
182
+ --------------------------
183
+  (0.0ms) rollback transaction
184
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
185
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
186
+  (0.1ms) select sqlite_version(*)
187
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
188
+  (0.1ms) SELECT version FROM "schema_migrations"
189
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
190
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
191
+  (0.1ms) begin transaction
192
+ -------------------------------------------
193
+ RockMotive::InteractionTest: test_.interact
194
+ -------------------------------------------
195
+  (0.0ms) rollback transaction
196
+  (0.0ms) begin transaction
197
+ --------------------------
198
+ RockMotiveTest: test_truth
199
+ --------------------------
200
+  (0.0ms) rollback transaction
201
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
202
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
203
+  (0.0ms) select sqlite_version(*)
204
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
205
+  (0.1ms) SELECT version FROM "schema_migrations"
206
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
207
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
208
+  (0.1ms) begin transaction
209
+ -------------------------------------------
210
+ RockMotive::InteractionTest: test_.interact
211
+ -------------------------------------------
212
+  (0.0ms) rollback transaction
213
+  (0.1ms) begin transaction
214
+ --------------------------
215
+ RockMotiveTest: test_truth
216
+ --------------------------
217
+  (0.0ms) rollback transaction
218
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
219
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
220
+  (0.0ms) select sqlite_version(*)
221
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
222
+  (0.1ms) SELECT version FROM "schema_migrations"
223
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
224
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
225
+  (0.1ms) begin transaction
226
+ -------------------------------------------
227
+ RockMotive::InteractionTest: test_.interact
228
+ -------------------------------------------
229
+  (0.0ms) rollback transaction
230
+  (0.1ms) begin transaction
231
+ --------------------------
232
+ RockMotiveTest: test_truth
233
+ --------------------------
234
+  (0.0ms) rollback transaction
235
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
236
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
237
+  (0.1ms) select sqlite_version(*)
238
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
239
+  (0.1ms) SELECT version FROM "schema_migrations"
240
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
241
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
242
+  (0.1ms) begin transaction
243
+ --------------------------
244
+ RockMotiveTest: test_truth
245
+ --------------------------
246
+  (0.0ms) rollback transaction
247
+  (0.0ms) begin transaction
248
+ -------------------------------------------
249
+ RockMotive::InteractionTest: test_.interact
250
+ -------------------------------------------
251
+  (0.0ms) rollback transaction
252
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
253
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
254
+  (0.1ms) select sqlite_version(*)
255
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
256
+  (0.1ms) SELECT version FROM "schema_migrations"
257
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
258
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
259
+  (0.1ms) begin transaction
260
+ -------------------------------------------
261
+ RockMotive::InteractionTest: test_.interact
262
+ -------------------------------------------
263
+  (0.1ms) rollback transaction
264
+  (0.1ms) begin transaction
265
+ --------------------------
266
+ RockMotiveTest: test_truth
267
+ --------------------------
268
+  (0.1ms) rollback transaction
269
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
270
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
271
+  (0.1ms) select sqlite_version(*)
272
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
273
+  (0.1ms) SELECT version FROM "schema_migrations"
274
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
275
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
276
+  (0.1ms) begin transaction
277
+ --------------------------
278
+ RockMotiveTest: test_truth
279
+ --------------------------
280
+  (0.0ms) rollback transaction
281
+  (0.0ms) begin transaction
282
+ -------------------------------------------
283
+ RockMotive::InteractionTest: test_.interact
284
+ -------------------------------------------
285
+  (0.0ms) rollback transaction
286
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
287
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
288
+  (0.1ms) select sqlite_version(*)
289
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
290
+  (0.1ms) SELECT version FROM "schema_migrations"
291
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
292
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
293
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
294
+  (0.1ms) select sqlite_version(*)
295
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
296
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
297
+ Migrating to CreateBirds (20150201003815)
298
+  (0.0ms) begin transaction
299
+  (0.2ms) CREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
300
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150201003815"]]
301
+  (1.0ms) commit transaction
302
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
303
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
304
+  (0.1ms) begin transaction
305
+ -------------------------------------------------------
306
+ RockMotive::InteractionTest: test_#interact_with_extend
307
+ -------------------------------------------------------
308
+  (0.1ms) rollback transaction
309
+  (0.1ms) begin transaction
310
+ -------------------------------------------
311
+ RockMotive::InteractionTest: test_.interact
312
+ -------------------------------------------
313
+  (0.0ms) rollback transaction
314
+  (0.0ms) begin transaction
315
+ --------------------------
316
+ RockMotiveTest: test_truth
317
+ --------------------------
318
+  (0.0ms) rollback transaction
319
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
320
+  (0.1ms) select sqlite_version(*)
321
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
322
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
323
+ Migrating to CreateBirds (20150201003815)
324
+  (0.0ms) begin transaction
325
+  (0.3ms) CREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
326
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150201003815"]]
327
+  (0.8ms) commit transaction
328
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
329
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
330
+  (0.1ms) begin transaction
331
+ --------------------------
332
+ RockMotiveTest: test_truth
333
+ --------------------------
334
+  (0.1ms) rollback transaction
335
+  (0.1ms) begin transaction
336
+ -------------------------------------------
337
+ RockMotive::InteractionTest: test_.interact
338
+ -------------------------------------------
339
+  (0.1ms) rollback transaction
340
+  (0.0ms) begin transaction
341
+ -------------------------------------------------------
342
+ RockMotive::InteractionTest: test_#interact_with_extend
343
+ -------------------------------------------------------
344
+  (0.1ms) rollback transaction
345
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
346
+  (0.1ms) select sqlite_version(*)
347
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
348
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
349
+ Migrating to CreateBirds (20150201003815)
350
+  (0.0ms) begin transaction
351
+  (0.3ms) CREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
352
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150201003815"]]
353
+  (0.6ms) commit transaction
354
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
355
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
356
+  (0.1ms) begin transaction
357
+ -------------------------------------------------------
358
+ RockMotive::InteractionTest: test_#interact_with_extend
359
+ -------------------------------------------------------
360
+  (0.1ms) rollback transaction
361
+  (0.1ms) begin transaction
362
+ -------------------------------------------
363
+ RockMotive::InteractionTest: test_.interact
364
+ -------------------------------------------
365
+  (0.1ms) rollback transaction
366
+  (0.0ms) begin transaction
367
+ --------------------------
368
+ RockMotiveTest: test_truth
369
+ --------------------------
370
+  (0.0ms) rollback transaction
371
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
372
+  (0.1ms) begin transaction
373
+ -------------------------------------------------------
374
+ RockMotive::InteractionTest: test_#interact_with_extend
375
+ -------------------------------------------------------
376
+  (0.1ms) rollback transaction
377
+  (0.0ms) begin transaction
378
+ ---------------------------------------------------------
379
+ RockMotive::InteractionTest: test_.interact_with_override
380
+ ---------------------------------------------------------
381
+  (0.1ms) rollback transaction
382
+  (0.1ms) begin transaction
383
+ -------------------------------------------
384
+ RockMotive::InteractionTest: test_.interact
385
+ -------------------------------------------
386
+  (0.0ms) rollback transaction
387
+  (0.0ms) begin transaction
388
+ --------------------------
389
+ RockMotiveTest: test_truth
390
+ --------------------------
391
+  (0.0ms) rollback transaction
392
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
393
+  (0.1ms) begin transaction
394
+ --------------------------
395
+ RockMotiveTest: test_truth
396
+ --------------------------
397
+  (0.0ms) rollback transaction
398
+  (0.0ms) begin transaction
399
+ -------------------------------------------------------
400
+ RockMotive::InteractionTest: test_#interact_with_extend
401
+ -------------------------------------------------------
402
+  (0.1ms) rollback transaction
403
+  (0.1ms) begin transaction
404
+ ---------------------------------------------------------
405
+ RockMotive::InteractionTest: test_.interact_with_override
406
+ ---------------------------------------------------------
407
+  (0.0ms) rollback transaction
408
+  (0.0ms) begin transaction
409
+ -------------------------------------------
410
+ RockMotive::InteractionTest: test_.interact
411
+ -------------------------------------------
412
+  (0.0ms) rollback transaction
413
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
414
+  (0.1ms) begin transaction
415
+ --------------------------
416
+ RockMotiveTest: test_truth
417
+ --------------------------
418
+  (0.0ms) rollback transaction
419
+  (0.0ms) begin transaction
420
+ -------------------------------------------------------
421
+ RockMotive::InteractionTest: test_#interact_with_extend
422
+ -------------------------------------------------------
423
+  (0.1ms) rollback transaction
424
+  (0.0ms) begin transaction
425
+ ---------------------------------------------------------
426
+ RockMotive::InteractionTest: test_.interact_with_override
427
+ ---------------------------------------------------------
428
+  (0.1ms) rollback transaction
429
+  (0.0ms) begin transaction
430
+ -------------------------------------------
431
+ RockMotive::InteractionTest: test_.interact
432
+ -------------------------------------------
433
+  (0.0ms) rollback transaction
434
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
435
+  (0.1ms) begin transaction
436
+ --------------------------
437
+ RockMotiveTest: test_truth
438
+ --------------------------
439
+  (0.0ms) rollback transaction
440
+  (0.0ms) begin transaction
441
+ -------------------------------------------------------
442
+ RockMotive::InteractionTest: test_#interact_with_extend
443
+ -------------------------------------------------------
444
+  (0.1ms) rollback transaction
445
+  (0.0ms) begin transaction
446
+ ---------------------------------------------------------
447
+ RockMotive::InteractionTest: test_.interact_with_override
448
+ ---------------------------------------------------------
449
+  (0.0ms) rollback transaction
450
+  (0.0ms) begin transaction
451
+ -------------------------------------------
452
+ RockMotive::InteractionTest: test_.interact
453
+ -------------------------------------------
454
+  (0.0ms) rollback transaction
455
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
456
+  (0.1ms) begin transaction
457
+ ---------------------------------------------------------
458
+ RockMotive::InteractionTest: test_.interact_with_override
459
+ ---------------------------------------------------------
460
+  (0.1ms) rollback transaction
461
+  (0.1ms) begin transaction
462
+ -------------------------------------------------------
463
+ RockMotive::InteractionTest: test_#interact_with_extend
464
+ -------------------------------------------------------
465
+  (0.1ms) rollback transaction
466
+  (0.1ms) begin transaction
467
+ -------------------------------------------
468
+ RockMotive::InteractionTest: test_.interact
469
+ -------------------------------------------
470
+  (0.1ms) rollback transaction
471
+  (0.0ms) begin transaction
472
+ --------------------------
473
+ RockMotiveTest: test_truth
474
+ --------------------------
475
+  (0.0ms) rollback transaction
476
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
477
+  (0.1ms) begin transaction
478
+ -------------------------------------------
479
+ RockMotive::InteractionTest: test_.interact
480
+ -------------------------------------------
481
+  (0.1ms) rollback transaction
482
+  (0.1ms) begin transaction
483
+ -------------------------------------------------------
484
+ RockMotive::InteractionTest: test_#interact_with_extend
485
+ -------------------------------------------------------
486
+  (0.1ms) rollback transaction
487
+  (0.1ms) begin transaction
488
+ ---------------------------------------------------------
489
+ RockMotive::InteractionTest: test_.interact_with_override
490
+ ---------------------------------------------------------
491
+  (0.1ms) rollback transaction
492
+  (0.0ms) begin transaction
493
+ --------------------------
494
+ RockMotiveTest: test_truth
495
+ --------------------------
496
+  (0.0ms) rollback transaction
497
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
498
+  (0.1ms) begin transaction
499
+ --------------------------
500
+ RockMotiveTest: test_truth
501
+ --------------------------
502
+  (0.0ms) rollback transaction
503
+  (0.0ms) begin transaction
504
+ -------------------------------------------
505
+ RockMotive::InteractionTest: test_.interact
506
+ -------------------------------------------
507
+  (0.1ms) rollback transaction
508
+  (0.0ms) begin transaction
509
+ ---------------------------------------------------------
510
+ RockMotive::InteractionTest: test_.interact_with_override
511
+ ---------------------------------------------------------
512
+  (0.0ms) rollback transaction
513
+  (0.0ms) begin transaction
514
+ -------------------------------------------------------
515
+ RockMotive::InteractionTest: test_#interact_with_extend
516
+ -------------------------------------------------------
517
+  (0.1ms) rollback transaction
518
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
519
+  (0.1ms) begin transaction
520
+ -------------------------------------------------------
521
+ RockMotive::InteractionTest: test_#interact_with_extend
522
+ -------------------------------------------------------
523
+  (0.1ms) rollback transaction
524
+  (0.0ms) begin transaction
525
+ -------------------------------------------
526
+ RockMotive::InteractionTest: test_.interact
527
+ -------------------------------------------
528
+  (0.1ms) rollback transaction
529
+  (0.0ms) begin transaction
530
+ ---------------------------------------------------------
531
+ RockMotive::InteractionTest: test_.interact_with_override
532
+ ---------------------------------------------------------
533
+  (0.0ms) rollback transaction
534
+  (0.1ms) begin transaction
535
+ --------------------------
536
+ RockMotiveTest: test_truth
537
+ --------------------------
538
+  (0.0ms) rollback transaction
539
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
540
+  (0.1ms) begin transaction
541
+ --------------------------
542
+ RockMotiveTest: test_truth
543
+ --------------------------
544
+  (0.0ms) rollback transaction
545
+  (0.1ms) begin transaction
546
+ -------------------------------------------
547
+ RockMotive::InteractionTest: test_.interact
548
+ -------------------------------------------
549
+  (0.1ms) rollback transaction
550
+  (0.0ms) begin transaction
551
+ ---------------------------------------------------------
552
+ RockMotive::InteractionTest: test_.interact_with_override
553
+ ---------------------------------------------------------
554
+  (0.0ms) rollback transaction
555
+  (0.0ms) begin transaction
556
+ -----------------------------------------------------------------
557
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
558
+ -----------------------------------------------------------------
559
+  (0.1ms) rollback transaction
560
+  (0.1ms) begin transaction
561
+ -------------------------------------------------------
562
+ RockMotive::InteractionTest: test_#interact_with_extend
563
+ -------------------------------------------------------
564
+  (0.1ms) rollback transaction
565
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
566
+  (0.1ms) begin transaction
567
+ --------------------------
568
+ RockMotiveTest: test_truth
569
+ --------------------------
570
+  (0.0ms) rollback transaction
571
+  (0.0ms) begin transaction
572
+ -------------------------------------------------------
573
+ RockMotive::InteractionTest: test_#interact_with_extend
574
+ -------------------------------------------------------
575
+  (0.1ms) rollback transaction
576
+  (0.0ms) begin transaction
577
+ -----------------------------------------------------------------
578
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
579
+ -----------------------------------------------------------------
580
+  (0.1ms) rollback transaction
581
+  (0.0ms) begin transaction
582
+ -------------------------------------------
583
+ RockMotive::InteractionTest: test_.interact
584
+ -------------------------------------------
585
+  (0.1ms) rollback transaction
586
+  (0.0ms) begin transaction
587
+ ---------------------------------------------------------
588
+ RockMotive::InteractionTest: test_.interact_with_override
589
+ ---------------------------------------------------------
590
+  (0.0ms) rollback transaction
591
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
592
+  (0.1ms) begin transaction
593
+ --------------------------
594
+ RockMotiveTest: test_truth
595
+ --------------------------
596
+  (0.0ms) rollback transaction
597
+  (0.0ms) begin transaction
598
+ -----------------------------------------------------------------
599
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
600
+ -----------------------------------------------------------------
601
+  (0.1ms) rollback transaction
602
+  (0.1ms) begin transaction
603
+ -------------------------------------------
604
+ RockMotive::InteractionTest: test_.interact
605
+ -------------------------------------------
606
+  (0.0ms) rollback transaction
607
+  (0.0ms) begin transaction
608
+ -------------------------------------------------------
609
+ RockMotive::InteractionTest: test_#interact_with_extend
610
+ -------------------------------------------------------
611
+  (0.1ms) rollback transaction
612
+  (0.1ms) begin transaction
613
+ ---------------------------------------------------------
614
+ RockMotive::InteractionTest: test_.interact_with_override
615
+ ---------------------------------------------------------
616
+  (0.0ms) rollback transaction
617
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
618
+  (0.1ms) begin transaction
619
+ --------------------------
620
+ RockMotiveTest: test_truth
621
+ --------------------------
622
+  (0.0ms) rollback transaction
623
+  (0.0ms) begin transaction
624
+ ---------------------------------------------------------
625
+ RockMotive::InteractionTest: test_.interact_with_override
626
+ ---------------------------------------------------------
627
+  (0.0ms) rollback transaction
628
+  (0.0ms) begin transaction
629
+ -------------------------------------------
630
+ RockMotive::InteractionTest: test_.interact
631
+ -------------------------------------------
632
+  (0.0ms) rollback transaction
633
+  (0.0ms) begin transaction
634
+ -----------------------------------------------------------------
635
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
636
+ -----------------------------------------------------------------
637
+  (0.1ms) rollback transaction
638
+  (0.0ms) begin transaction
639
+ -------------------------------------------------------
640
+ RockMotive::InteractionTest: test_#interact_with_extend
641
+ -------------------------------------------------------
642
+  (0.1ms) rollback transaction
643
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
644
+  (0.1ms) begin transaction
645
+ --------------------------
646
+ RockMotiveTest: test_truth
647
+ --------------------------
648
+  (0.1ms) rollback transaction
649
+  (0.0ms) begin transaction
650
+ -------------------------------------------
651
+ RockMotive::InteractionTest: test_.interact
652
+ -------------------------------------------
653
+  (0.0ms) rollback transaction
654
+  (0.0ms) begin transaction
655
+ -----------------------------------------------------------------
656
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
657
+ -----------------------------------------------------------------
658
+  (0.1ms) rollback transaction
659
+  (0.0ms) begin transaction
660
+ ---------------------------------------------------------
661
+ RockMotive::InteractionTest: test_.interact_with_override
662
+ ---------------------------------------------------------
663
+  (0.0ms) rollback transaction
664
+  (0.0ms) begin transaction
665
+ -------------------------------------------------------
666
+ RockMotive::InteractionTest: test_#interact_with_extend
667
+ -------------------------------------------------------
668
+  (0.1ms) rollback transaction
669
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
670
+  (0.1ms) begin transaction
671
+ ---------------------------------------------------------
672
+ RockMotive::InteractionTest: test_.interact_with_override
673
+ ---------------------------------------------------------
674
+  (0.0ms) rollback transaction
675
+  (0.0ms) begin transaction
676
+ -----------------------------------------------------------------
677
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
678
+ -----------------------------------------------------------------
679
+  (0.1ms) rollback transaction
680
+  (0.0ms) begin transaction
681
+ -------------------------------------------
682
+ RockMotive::InteractionTest: test_.interact
683
+ -------------------------------------------
684
+  (0.0ms) rollback transaction
685
+  (0.0ms) begin transaction
686
+ -------------------------------------------------------
687
+ RockMotive::InteractionTest: test_#interact_with_extend
688
+ -------------------------------------------------------
689
+  (0.1ms) rollback transaction
690
+  (0.0ms) begin transaction
691
+ --------------------------
692
+ RockMotiveTest: test_truth
693
+ --------------------------
694
+  (0.0ms) rollback transaction
695
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
696
+  (0.1ms) begin transaction
697
+ --------------------------
698
+ RockMotiveTest: test_truth
699
+ --------------------------
700
+  (0.0ms) rollback transaction
701
+  (0.0ms) begin transaction
702
+ -----------------------------------------------------------------
703
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
704
+ -----------------------------------------------------------------
705
+  (0.2ms) rollback transaction
706
+  (0.1ms) begin transaction
707
+ -------------------------------------------------------
708
+ RockMotive::InteractionTest: test_#interact_with_extend
709
+ -------------------------------------------------------
710
+  (0.1ms) rollback transaction
711
+  (0.0ms) begin transaction
712
+ -------------------------------------------
713
+ RockMotive::InteractionTest: test_.interact
714
+ -------------------------------------------
715
+  (0.0ms) rollback transaction
716
+  (0.0ms) begin transaction
717
+ ---------------------------------------------------------
718
+ RockMotive::InteractionTest: test_.interact_with_override
719
+ ---------------------------------------------------------
720
+  (0.0ms) rollback transaction
721
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
722
+  (0.1ms) begin transaction
723
+ --------------------------
724
+ RockMotiveTest: test_truth
725
+ --------------------------
726
+  (0.1ms) rollback transaction
727
+  (0.0ms) begin transaction
728
+ ---------------------------------------------------------
729
+ RockMotive::InteractionTest: test_.interact_with_override
730
+ ---------------------------------------------------------
731
+  (0.0ms) rollback transaction
732
+  (0.0ms) begin transaction
733
+ -----------------------------------------------------------------
734
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
735
+ -----------------------------------------------------------------
736
+  (0.1ms) rollback transaction
737
+  (0.1ms) begin transaction
738
+ -------------------------------------------
739
+ RockMotive::InteractionTest: test_.interact
740
+ -------------------------------------------
741
+  (0.0ms) rollback transaction
742
+  (0.0ms) begin transaction
743
+ -------------------------------------------------------
744
+ RockMotive::InteractionTest: test_#interact_with_extend
745
+ -------------------------------------------------------
746
+  (0.1ms) rollback transaction
747
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
748
+  (0.1ms) begin transaction
749
+ --------------------------
750
+ RockMotiveTest: test_truth
751
+ --------------------------
752
+  (0.0ms) rollback transaction
753
+  (0.0ms) begin transaction
754
+ -------------------------------------------------------
755
+ RockMotive::InteractionTest: test_#interact_with_extend
756
+ -------------------------------------------------------
757
+  (0.1ms) rollback transaction
758
+  (0.0ms) begin transaction
759
+ ---------------------------------------------------------
760
+ RockMotive::InteractionTest: test_.interact_with_override
761
+ ---------------------------------------------------------
762
+  (0.1ms) rollback transaction
763
+  (0.1ms) begin transaction
764
+ -------------------------------------------
765
+ RockMotive::InteractionTest: test_.interact
766
+ -------------------------------------------
767
+  (0.0ms) rollback transaction
768
+  (0.1ms) begin transaction
769
+ -----------------------------------------------------------------
770
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
771
+ -----------------------------------------------------------------
772
+  (0.1ms) rollback transaction
773
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
774
+  (0.1ms) begin transaction
775
+ -------------------------------------------
776
+ RockMotive::InteractionTest: test_.interact
777
+ -------------------------------------------
778
+  (0.1ms) rollback transaction
779
+  (0.1ms) begin transaction
780
+ ---------------------------------------------------------
781
+ RockMotive::InteractionTest: test_.interact_with_override
782
+ ---------------------------------------------------------
783
+  (0.0ms) rollback transaction
784
+  (0.0ms) begin transaction
785
+ -----------------------------------------------------------------
786
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
787
+ -----------------------------------------------------------------
788
+  (0.1ms) rollback transaction
789
+  (0.1ms) begin transaction
790
+ -------------------------------------------------------
791
+ RockMotive::InteractionTest: test_#interact_with_extend
792
+ -------------------------------------------------------
793
+  (0.1ms) rollback transaction
794
+  (0.0ms) begin transaction
795
+ --------------------------
796
+ RockMotiveTest: test_truth
797
+ --------------------------
798
+  (0.0ms) rollback transaction
799
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
800
+  (0.1ms) begin transaction
801
+ --------------------------
802
+ RockMotiveTest: test_truth
803
+ --------------------------
804
+  (0.0ms) rollback transaction
805
+  (0.0ms) begin transaction
806
+ -------------------------------------------
807
+ RockMotive::InteractionTest: test_.interact
808
+ -------------------------------------------
809
+  (0.0ms) rollback transaction
810
+  (0.1ms) begin transaction
811
+ -----------------------------------------------------------------
812
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
813
+ -----------------------------------------------------------------
814
+  (0.1ms) rollback transaction
815
+  (0.0ms) begin transaction
816
+ -------------------------------------------------------
817
+ RockMotive::InteractionTest: test_#interact_with_extend
818
+ -------------------------------------------------------
819
+  (0.1ms) rollback transaction
820
+  (0.0ms) begin transaction
821
+ ---------------------------------------------------------
822
+ RockMotive::InteractionTest: test_.interact_with_override
823
+ ---------------------------------------------------------
824
+  (0.1ms) rollback transaction
825
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
826
+  (0.1ms) begin transaction
827
+ ---------------------------------------------------------
828
+ RockMotive::InteractionTest: test_.interact_with_override
829
+ ---------------------------------------------------------
830
+  (0.1ms) rollback transaction
831
+  (0.1ms) begin transaction
832
+ -----------------------------------------------------------------
833
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
834
+ -----------------------------------------------------------------
835
+  (0.1ms) rollback transaction
836
+  (0.0ms) begin transaction
837
+ -------------------------------------------
838
+ RockMotive::InteractionTest: test_.interact
839
+ -------------------------------------------
840
+  (0.0ms) rollback transaction
841
+  (0.0ms) begin transaction
842
+ -------------------------------------------------------
843
+ RockMotive::InteractionTest: test_#interact_with_extend
844
+ -------------------------------------------------------
845
+  (0.1ms) rollback transaction
846
+  (0.0ms) begin transaction
847
+ --------------------------
848
+ RockMotiveTest: test_truth
849
+ --------------------------
850
+  (0.0ms) rollback transaction
851
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
852
+  (0.1ms) begin transaction
853
+ ---------------------------------------------------------
854
+ RockMotive::InteractionTest: test_.interact_with_override
855
+ ---------------------------------------------------------
856
+  (0.1ms) rollback transaction
857
+  (0.0ms) begin transaction
858
+ -------------------------------------------
859
+ RockMotive::InteractionTest: test_.interact
860
+ -------------------------------------------
861
+  (0.0ms) rollback transaction
862
+  (0.0ms) begin transaction
863
+ -----------------------------------------------------------------
864
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
865
+ -----------------------------------------------------------------
866
+  (0.1ms) rollback transaction
867
+  (0.0ms) begin transaction
868
+ -------------------------------------------------------
869
+ RockMotive::InteractionTest: test_#interact_with_extend
870
+ -------------------------------------------------------
871
+  (0.1ms) rollback transaction
872
+  (0.0ms) begin transaction
873
+ --------------------------
874
+ RockMotiveTest: test_truth
875
+ --------------------------
876
+  (0.0ms) rollback transaction
877
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
878
+  (0.1ms) begin transaction
879
+ -------------------------------------------
880
+ RockMotive::InteractionTest: test_.interact
881
+ -------------------------------------------
882
+  (0.0ms) rollback transaction
883
+  (0.1ms) begin transaction
884
+ -----------------------------------------------------------------
885
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
886
+ -----------------------------------------------------------------
887
+  (0.1ms) rollback transaction
888
+  (0.0ms) begin transaction
889
+ -------------------------------------------------------
890
+ RockMotive::InteractionTest: test_#interact_with_extend
891
+ -------------------------------------------------------
892
+  (0.1ms) rollback transaction
893
+  (0.0ms) begin transaction
894
+ ---------------------------------------------------------
895
+ RockMotive::InteractionTest: test_.interact_with_override
896
+ ---------------------------------------------------------
897
+  (0.0ms) rollback transaction
898
+  (0.0ms) begin transaction
899
+ --------------------------
900
+ RockMotiveTest: test_truth
901
+ --------------------------
902
+  (0.0ms) rollback transaction
903
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
904
+  (0.1ms) begin transaction
905
+ --------------------------
906
+ RockMotiveTest: test_truth
907
+ --------------------------
908
+  (0.0ms) rollback transaction
909
+  (0.0ms) begin transaction
910
+ -------------------------------------------------------
911
+ RockMotive::InteractionTest: test_#interact_with_extend
912
+ -------------------------------------------------------
913
+  (0.1ms) rollback transaction
914
+  (0.0ms) begin transaction
915
+ -------------------------------------------
916
+ RockMotive::InteractionTest: test_.interact
917
+ -------------------------------------------
918
+  (0.1ms) rollback transaction
919
+  (0.0ms) begin transaction
920
+ -----------------------------------------------------------------
921
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
922
+ -----------------------------------------------------------------
923
+  (0.1ms) rollback transaction
924
+  (0.0ms) begin transaction
925
+ ---------------------------------------------------------
926
+ RockMotive::InteractionTest: test_.interact_with_override
927
+ ---------------------------------------------------------
928
+  (0.0ms) rollback transaction
929
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
930
+  (0.1ms) begin transaction
931
+ -------------------------------------------------------
932
+ RockMotive::InteractionTest: test_#interact_with_extend
933
+ -------------------------------------------------------
934
+  (0.1ms) rollback transaction
935
+  (0.0ms) begin transaction
936
+ ---------------------------------------------------------
937
+ RockMotive::InteractionTest: test_.interact_with_override
938
+ ---------------------------------------------------------
939
+  (0.0ms) rollback transaction
940
+  (0.1ms) begin transaction
941
+ -------------------------------------------
942
+ RockMotive::InteractionTest: test_.interact
943
+ -------------------------------------------
944
+  (0.1ms) rollback transaction
945
+  (0.0ms) begin transaction
946
+ -----------------------------------------------------------------
947
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
948
+ -----------------------------------------------------------------
949
+  (0.1ms) rollback transaction
950
+  (0.0ms) begin transaction
951
+ --------------------------
952
+ RockMotiveTest: test_truth
953
+ --------------------------
954
+  (0.0ms) rollback transaction
955
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
956
+  (0.1ms) begin transaction
957
+ ---------------------------------------------------------
958
+ RockMotive::InteractionTest: test_.interact_with_override
959
+ ---------------------------------------------------------
960
+  (0.0ms) rollback transaction
961
+  (0.1ms) begin transaction
962
+ -------------------------------------------
963
+ RockMotive::InteractionTest: test_.interact
964
+ -------------------------------------------
965
+  (0.0ms) rollback transaction
966
+  (0.0ms) begin transaction
967
+ -------------------------------------------------------
968
+ RockMotive::InteractionTest: test_#interact_with_extend
969
+ -------------------------------------------------------
970
+  (0.1ms) rollback transaction
971
+  (0.0ms) begin transaction
972
+ -----------------------------------------------------------------
973
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
974
+ -----------------------------------------------------------------
975
+  (0.1ms) rollback transaction
976
+  (0.1ms) begin transaction
977
+ --------------------------
978
+ RockMotiveTest: test_truth
979
+ --------------------------
980
+  (0.1ms) rollback transaction
981
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
982
+  (0.1ms) select sqlite_version(*)
983
+  (0.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
984
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
985
+ Migrating to CreateBirds (20150201003815)
986
+  (0.1ms) begin transaction
987
+  (0.3ms) CREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
988
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150201003815"]]
989
+  (0.4ms) commit transaction
990
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
991
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
992
+  (0.1ms) begin transaction
993
+ -------------------------------------------------------
994
+ RockMotive::InteractionTest: test_#interact_with_extend
995
+ -------------------------------------------------------
996
+  (0.1ms) rollback transaction
997
+  (0.0ms) begin transaction
998
+ ---------------------------------------------------------
999
+ RockMotive::InteractionTest: test_.interact_with_override
1000
+ ---------------------------------------------------------
1001
+  (0.0ms) rollback transaction
1002
+  (0.0ms) begin transaction
1003
+ -----------------------------------------------------------------
1004
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
1005
+ -----------------------------------------------------------------
1006
+  (0.1ms) rollback transaction
1007
+  (0.0ms) begin transaction
1008
+ -------------------------------------------
1009
+ RockMotive::InteractionTest: test_.interact
1010
+ -------------------------------------------
1011
+  (0.0ms) rollback transaction
1012
+  (0.0ms) begin transaction
1013
+ --------------------------
1014
+ RockMotiveTest: test_truth
1015
+ --------------------------
1016
+  (0.0ms) rollback transaction
1017
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1018
+  (0.1ms) begin transaction
1019
+ ---------------------------------------------------------
1020
+ RockMotive::InteractionTest: test_.interact_with_override
1021
+ ---------------------------------------------------------
1022
+  (0.1ms) rollback transaction
1023
+  (0.1ms) begin transaction
1024
+ -------------------------------------------
1025
+ RockMotive::InteractionTest: test_.interact
1026
+ -------------------------------------------
1027
+  (0.1ms) rollback transaction
1028
+  (0.0ms) begin transaction
1029
+ -------------------------------------------------------
1030
+ RockMotive::InteractionTest: test_#interact_with_extend
1031
+ -------------------------------------------------------
1032
+  (0.1ms) rollback transaction
1033
+  (0.0ms) begin transaction
1034
+ -----------------------------------------------------------------
1035
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
1036
+ -----------------------------------------------------------------
1037
+  (0.1ms) rollback transaction
1038
+  (0.1ms) begin transaction
1039
+ --------------------------
1040
+ RockMotiveTest: test_truth
1041
+ --------------------------
1042
+  (0.0ms) rollback transaction
1043
+ ActiveRecord::SchemaMigration Load (1.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
1044
+  (0.1ms) begin transaction
1045
+ --------------------------
1046
+ RockMotiveTest: test_truth
1047
+ --------------------------
1048
+  (0.0ms) rollback transaction
1049
+  (0.0ms) begin transaction
1050
+ -----------------------------------------------------------------
1051
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
1052
+ -----------------------------------------------------------------
1053
+  (0.1ms) rollback transaction
1054
+  (0.0ms) begin transaction
1055
+ ---------------------------------------------------------
1056
+ RockMotive::InteractionTest: test_.interact_with_override
1057
+ ---------------------------------------------------------
1058
+  (0.0ms) rollback transaction
1059
+  (0.1ms) begin transaction
1060
+ -------------------------------------------
1061
+ RockMotive::InteractionTest: test_.interact
1062
+ -------------------------------------------
1063
+  (0.0ms) rollback transaction
1064
+  (0.0ms) begin transaction
1065
+ -------------------------------------------------------
1066
+ RockMotive::InteractionTest: test_#interact_with_extend
1067
+ -------------------------------------------------------
1068
+  (0.1ms) rollback transaction
1069
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1070
+  (0.1ms) begin transaction
1071
+ -----------------------------------------------------------------
1072
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
1073
+ -----------------------------------------------------------------
1074
+  (0.1ms) rollback transaction
1075
+  (0.0ms) begin transaction
1076
+ ---------------------------------------------------------
1077
+ RockMotive::InteractionTest: test_.interact_with_override
1078
+ ---------------------------------------------------------
1079
+  (0.1ms) rollback transaction
1080
+  (0.0ms) begin transaction
1081
+ -------------------------------------------
1082
+ RockMotive::InteractionTest: test_.interact
1083
+ -------------------------------------------
1084
+  (0.0ms) rollback transaction
1085
+  (0.0ms) begin transaction
1086
+ -------------------------------------------------------
1087
+ RockMotive::InteractionTest: test_#interact_with_extend
1088
+ -------------------------------------------------------
1089
+  (0.1ms) rollback transaction
1090
+  (0.1ms) begin transaction
1091
+ --------------------------
1092
+ RockMotiveTest: test_truth
1093
+ --------------------------
1094
+  (0.0ms) rollback transaction
1095
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1096
+  (0.1ms) begin transaction
1097
+ --------------------------
1098
+ RockMotiveTest: test_truth
1099
+ --------------------------
1100
+  (0.0ms) rollback transaction
1101
+  (0.0ms) begin transaction
1102
+ ---------------------------------------------------------
1103
+ RockMotive::InteractionTest: test_.interact_with_override
1104
+ ---------------------------------------------------------
1105
+  (0.0ms) rollback transaction
1106
+  (0.0ms) begin transaction
1107
+ -------------------------------------------
1108
+ RockMotive::InteractionTest: test_.interact
1109
+ -------------------------------------------
1110
+  (0.0ms) rollback transaction
1111
+  (0.0ms) begin transaction
1112
+ -------------------------------------------------------
1113
+ RockMotive::InteractionTest: test_#interact_with_extend
1114
+ -------------------------------------------------------
1115
+  (0.1ms) rollback transaction
1116
+  (0.0ms) begin transaction
1117
+ -----------------------------------------------------------------
1118
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
1119
+ -----------------------------------------------------------------
1120
+  (0.1ms) rollback transaction
1121
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1122
+  (0.1ms) begin transaction
1123
+ ---------------------------------------------------------
1124
+ RockMotive::InteractionTest: test_.interact_with_override
1125
+ ---------------------------------------------------------
1126
+  (0.1ms) rollback transaction
1127
+  (0.1ms) begin transaction
1128
+ -------------------------------------------
1129
+ RockMotive::InteractionTest: test_.interact
1130
+ -------------------------------------------
1131
+  (0.0ms) rollback transaction
1132
+  (0.1ms) begin transaction
1133
+ -----------------------------------------------------------------
1134
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
1135
+ -----------------------------------------------------------------
1136
+  (0.1ms) rollback transaction
1137
+  (0.1ms) begin transaction
1138
+ -------------------------------------------------------
1139
+ RockMotive::InteractionTest: test_#interact_with_extend
1140
+ -------------------------------------------------------
1141
+  (0.1ms) rollback transaction
1142
+  (0.0ms) begin transaction
1143
+ --------------------------
1144
+ RockMotiveTest: test_truth
1145
+ --------------------------
1146
+  (0.0ms) rollback transaction
1147
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1148
+  (0.1ms) begin transaction
1149
+ -------------------------------------------------------
1150
+ RockMotive::InteractionTest: test_#interact_with_extend
1151
+ -------------------------------------------------------
1152
+  (0.1ms) rollback transaction
1153
+  (0.1ms) begin transaction
1154
+ -------------------------------------------
1155
+ RockMotive::InteractionTest: test_.interact
1156
+ -------------------------------------------
1157
+  (0.1ms) rollback transaction
1158
+  (0.1ms) begin transaction
1159
+ -----------------------------------------------------------------
1160
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
1161
+ -----------------------------------------------------------------
1162
+  (0.1ms) rollback transaction
1163
+  (0.1ms) begin transaction
1164
+ ---------------------------------------------------------
1165
+ RockMotive::InteractionTest: test_.interact_with_override
1166
+ ---------------------------------------------------------
1167
+  (0.1ms) rollback transaction
1168
+  (0.0ms) begin transaction
1169
+ --------------------------
1170
+ RockMotiveTest: test_truth
1171
+ --------------------------
1172
+  (0.0ms) rollback transaction
1173
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1174
+  (0.1ms) begin transaction
1175
+ -------------------------------------------------------
1176
+ RockMotive::InteractionTest: test_#interact_with_extend
1177
+ -------------------------------------------------------
1178
+  (0.1ms) rollback transaction
1179
+  (0.1ms) begin transaction
1180
+ -------------------------------------------
1181
+ RockMotive::InteractionTest: test_.interact
1182
+ -------------------------------------------
1183
+  (0.1ms) rollback transaction
1184
+  (0.1ms) begin transaction
1185
+ ---------------------------------------------------------
1186
+ RockMotive::InteractionTest: test_.interact_with_override
1187
+ ---------------------------------------------------------
1188
+  (0.0ms) rollback transaction
1189
+  (0.1ms) begin transaction
1190
+ -----------------------------------------------------------------
1191
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
1192
+ -----------------------------------------------------------------
1193
+  (0.1ms) rollback transaction
1194
+  (0.0ms) begin transaction
1195
+ --------------------------
1196
+ RockMotiveTest: test_truth
1197
+ --------------------------
1198
+  (0.1ms) rollback transaction
1199
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1200
+  (0.1ms) begin transaction
1201
+ --------------------------
1202
+ RockMotiveTest: test_truth
1203
+ --------------------------
1204
+  (0.0ms) rollback transaction
1205
+  (0.0ms) begin transaction
1206
+ ---------------------------------------------------------
1207
+ RockMotive::InteractionTest: test_.interact_with_override
1208
+ ---------------------------------------------------------
1209
+  (0.1ms) rollback transaction
1210
+  (0.1ms) begin transaction
1211
+ -------------------------------------------------------
1212
+ RockMotive::InteractionTest: test_#interact_with_extend
1213
+ -------------------------------------------------------
1214
+  (0.1ms) rollback transaction
1215
+  (0.0ms) begin transaction
1216
+ -----------------------------------------------------------------
1217
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
1218
+ -----------------------------------------------------------------
1219
+  (0.1ms) rollback transaction
1220
+  (0.1ms) begin transaction
1221
+ -------------------------------------------
1222
+ RockMotive::InteractionTest: test_.interact
1223
+ -------------------------------------------
1224
+  (0.0ms) rollback transaction
1225
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1226
+  (0.1ms) begin transaction
1227
+ -------------------------------------------------------
1228
+ RockMotive::InteractionTest: test_#interact_with_extend
1229
+ -------------------------------------------------------
1230
+  (0.1ms) rollback transaction
1231
+  (0.0ms) begin transaction
1232
+ -----------------------------------------------------------------
1233
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
1234
+ -----------------------------------------------------------------
1235
+  (0.1ms) rollback transaction
1236
+  (0.0ms) begin transaction
1237
+ -------------------------------------------
1238
+ RockMotive::InteractionTest: test_.interact
1239
+ -------------------------------------------
1240
+  (0.0ms) rollback transaction
1241
+  (0.0ms) begin transaction
1242
+ ---------------------------------------------------------
1243
+ RockMotive::InteractionTest: test_.interact_with_override
1244
+ ---------------------------------------------------------
1245
+  (0.0ms) rollback transaction
1246
+  (0.1ms) begin transaction
1247
+ --------------------------
1248
+ RockMotiveTest: test_truth
1249
+ --------------------------
1250
+  (0.0ms) rollback transaction
1251
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1252
+  (0.1ms) begin transaction
1253
+ --------------------------
1254
+ RockMotiveTest: test_truth
1255
+ --------------------------
1256
+  (0.0ms) rollback transaction
1257
+  (0.0ms) begin transaction
1258
+ ---------------------------------------------------------
1259
+ RockMotive::InteractionTest: test_.interact_with_override
1260
+ ---------------------------------------------------------
1261
+  (0.1ms) rollback transaction
1262
+  (0.0ms) begin transaction
1263
+ -------------------------------------------
1264
+ RockMotive::InteractionTest: test_.interact
1265
+ -------------------------------------------
1266
+  (0.1ms) rollback transaction
1267
+  (0.0ms) begin transaction
1268
+ -----------------------------------------------------------------
1269
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
1270
+ -----------------------------------------------------------------
1271
+  (0.1ms) rollback transaction
1272
+  (0.0ms) begin transaction
1273
+ -------------------------------------------------------
1274
+ RockMotive::InteractionTest: test_#interact_with_extend
1275
+ -------------------------------------------------------
1276
+  (0.1ms) rollback transaction
1277
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1278
+  (0.1ms) begin transaction
1279
+ --------------------------
1280
+ RockMotiveTest: test_truth
1281
+ --------------------------
1282
+  (0.0ms) rollback transaction
1283
+  (0.0ms) begin transaction
1284
+ -------------------------------------------------------
1285
+ RockMotive::InteractionTest: test_#interact_with_extend
1286
+ -------------------------------------------------------
1287
+  (0.1ms) rollback transaction
1288
+  (0.1ms) begin transaction
1289
+ -------------------------------------------
1290
+ RockMotive::InteractionTest: test_.interact
1291
+ -------------------------------------------
1292
+  (0.1ms) rollback transaction
1293
+  (0.0ms) begin transaction
1294
+ -----------------------------------------------------------------
1295
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
1296
+ -----------------------------------------------------------------
1297
+  (0.1ms) rollback transaction
1298
+  (0.1ms) begin transaction
1299
+ ---------------------------------------------------------
1300
+ RockMotive::InteractionTest: test_.interact_with_override
1301
+ ---------------------------------------------------------
1302
+  (0.0ms) rollback transaction
1303
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1304
+  (0.1ms) begin transaction
1305
+ -----------------------------------------------------------------
1306
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
1307
+ -----------------------------------------------------------------
1308
+  (0.1ms) rollback transaction
1309
+  (0.0ms) begin transaction
1310
+ -------------------------------------------------------
1311
+ RockMotive::InteractionTest: test_#interact_with_extend
1312
+ -------------------------------------------------------
1313
+  (0.1ms) rollback transaction
1314
+  (0.1ms) begin transaction
1315
+ -------------------------------------------
1316
+ RockMotive::InteractionTest: test_.interact
1317
+ -------------------------------------------
1318
+  (0.0ms) rollback transaction
1319
+  (0.1ms) begin transaction
1320
+ ---------------------------------------------------------
1321
+ RockMotive::InteractionTest: test_.interact_with_override
1322
+ ---------------------------------------------------------
1323
+  (0.0ms) rollback transaction
1324
+  (0.0ms) begin transaction
1325
+ --------------------------
1326
+ RockMotiveTest: test_truth
1327
+ --------------------------
1328
+  (0.0ms) rollback transaction
1329
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1330
+  (0.1ms) begin transaction
1331
+ -------------------------------------------------------
1332
+ RockMotive::InteractionTest: test_#interact_with_extend
1333
+ -------------------------------------------------------
1334
+  (0.1ms) rollback transaction
1335
+  (0.1ms) begin transaction
1336
+ ---------------------------------------------------------
1337
+ RockMotive::InteractionTest: test_.interact_with_override
1338
+ ---------------------------------------------------------
1339
+  (0.1ms) rollback transaction
1340
+  (0.1ms) begin transaction
1341
+ -----------------------------------------------------------------
1342
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
1343
+ -----------------------------------------------------------------
1344
+  (0.1ms) rollback transaction
1345
+  (0.0ms) begin transaction
1346
+ -------------------------------------------
1347
+ RockMotive::InteractionTest: test_.interact
1348
+ -------------------------------------------
1349
+  (0.0ms) rollback transaction
1350
+  (0.0ms) begin transaction
1351
+ --------------------------
1352
+ RockMotiveTest: test_truth
1353
+ --------------------------
1354
+  (0.0ms) rollback transaction
1355
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1356
+  (0.1ms) begin transaction
1357
+ -------------------------------------------------------
1358
+ RockMotive::InteractionTest: test_#interact_with_extend
1359
+ -------------------------------------------------------
1360
+  (0.1ms) rollback transaction
1361
+  (0.0ms) begin transaction
1362
+ -----------------------------------------------------------
1363
+ RockMotive::InteractionTest: test_#interact_with_unextended
1364
+ -----------------------------------------------------------
1365
+  (0.0ms) rollback transaction
1366
+  (0.0ms) begin transaction
1367
+ -----------------------------------------------------------------
1368
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
1369
+ -----------------------------------------------------------------
1370
+  (0.1ms) rollback transaction
1371
+  (0.0ms) begin transaction
1372
+ -------------------------------------------
1373
+ RockMotive::InteractionTest: test_.interact
1374
+ -------------------------------------------
1375
+  (0.1ms) rollback transaction
1376
+  (0.1ms) begin transaction
1377
+ ---------------------------------------------------------
1378
+ RockMotive::InteractionTest: test_.interact_with_override
1379
+ ---------------------------------------------------------
1380
+  (0.1ms) rollback transaction
1381
+  (0.0ms) begin transaction
1382
+ --------------------------
1383
+ RockMotiveTest: test_truth
1384
+ --------------------------
1385
+  (0.0ms) rollback transaction
1386
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1387
+  (0.1ms) begin transaction
1388
+ -------------------------------------------
1389
+ RockMotive::InteractionTest: test_.interact
1390
+ -------------------------------------------
1391
+  (0.1ms) rollback transaction
1392
+  (0.1ms) begin transaction
1393
+ -------------------------------------------------------
1394
+ RockMotive::InteractionTest: test_#interact_with_extend
1395
+ -------------------------------------------------------
1396
+  (0.1ms) rollback transaction
1397
+  (0.0ms) begin transaction
1398
+ -----------------------------------------------------------
1399
+ RockMotive::InteractionTest: test_#interact_with_unextended
1400
+ -----------------------------------------------------------
1401
+  (0.1ms) rollback transaction
1402
+  (0.0ms) begin transaction
1403
+ -----------------------------------------------------------------
1404
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
1405
+ -----------------------------------------------------------------
1406
+  (0.1ms) rollback transaction
1407
+  (0.0ms) begin transaction
1408
+ ---------------------------------------------------------
1409
+ RockMotive::InteractionTest: test_.interact_with_override
1410
+ ---------------------------------------------------------
1411
+  (0.1ms) rollback transaction
1412
+  (0.0ms) begin transaction
1413
+ --------------------------
1414
+ RockMotiveTest: test_truth
1415
+ --------------------------
1416
+  (0.0ms) rollback transaction
1417
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1418
+  (0.1ms) begin transaction
1419
+ --------------------------
1420
+ RockMotiveTest: test_truth
1421
+ --------------------------
1422
+  (0.0ms) rollback transaction
1423
+  (0.0ms) begin transaction
1424
+ -----------------------------------------------------------------
1425
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
1426
+ -----------------------------------------------------------------
1427
+  (0.1ms) rollback transaction
1428
+  (0.1ms) begin transaction
1429
+ -------------------------------------------------------
1430
+ RockMotive::InteractionTest: test_#interact_with_extend
1431
+ -------------------------------------------------------
1432
+  (0.1ms) rollback transaction
1433
+  (0.0ms) begin transaction
1434
+ ---------------------------------------------------------
1435
+ RockMotive::InteractionTest: test_.interact_with_override
1436
+ ---------------------------------------------------------
1437
+  (0.0ms) rollback transaction
1438
+  (0.0ms) begin transaction
1439
+ -------------------------------------------
1440
+ RockMotive::InteractionTest: test_.interact
1441
+ -------------------------------------------
1442
+  (0.0ms) rollback transaction
1443
+  (0.0ms) begin transaction
1444
+ -----------------------------------------------------------
1445
+ RockMotive::InteractionTest: test_#interact_with_unextended
1446
+ -----------------------------------------------------------
1447
+  (0.1ms) rollback transaction
1448
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1449
+  (0.1ms) begin transaction
1450
+ --------------------------
1451
+ RockMotiveTest: test_truth
1452
+ --------------------------
1453
+  (0.0ms) rollback transaction
1454
+  (0.0ms) begin transaction
1455
+ -------------------------------------------------------
1456
+ RockMotive::InteractionTest: test_#interact_with_extend
1457
+ -------------------------------------------------------
1458
+  (0.1ms) rollback transaction
1459
+  (0.1ms) begin transaction
1460
+ -----------------------------------------------------------------
1461
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
1462
+ -----------------------------------------------------------------
1463
+  (0.1ms) rollback transaction
1464
+  (0.0ms) begin transaction
1465
+ -------------------------------------------
1466
+ RockMotive::InteractionTest: test_.interact
1467
+ -------------------------------------------
1468
+  (0.1ms) rollback transaction
1469
+  (0.0ms) begin transaction
1470
+ ---------------------------------------------------------
1471
+ RockMotive::InteractionTest: test_.interact_with_override
1472
+ ---------------------------------------------------------
1473
+  (0.0ms) rollback transaction
1474
+  (0.0ms) begin transaction
1475
+ -----------------------------------------------------------
1476
+ RockMotive::InteractionTest: test_#interact_with_unextended
1477
+ -----------------------------------------------------------
1478
+  (0.0ms) rollback transaction
1479
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1480
+  (0.1ms) begin transaction
1481
+ -------------------------------------------------------
1482
+ RockMotive::InteractionTest: test_#interact_with_extend
1483
+ -------------------------------------------------------
1484
+  (0.1ms) rollback transaction
1485
+  (0.1ms) begin transaction
1486
+ ---------------------------------------------------------
1487
+ RockMotive::InteractionTest: test_.interact_with_override
1488
+ ---------------------------------------------------------
1489
+  (0.0ms) rollback transaction
1490
+  (0.0ms) begin transaction
1491
+ -----------------------------------------------------------
1492
+ RockMotive::InteractionTest: test_#interact_with_unextended
1493
+ -----------------------------------------------------------
1494
+  (0.0ms) rollback transaction
1495
+  (0.0ms) begin transaction
1496
+ -------------------------------------------
1497
+ RockMotive::InteractionTest: test_.interact
1498
+ -------------------------------------------
1499
+  (0.1ms) rollback transaction
1500
+  (0.0ms) begin transaction
1501
+ -----------------------------------------------------------------
1502
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
1503
+ -----------------------------------------------------------------
1504
+  (0.1ms) rollback transaction
1505
+  (0.0ms) begin transaction
1506
+ --------------------------
1507
+ RockMotiveTest: test_truth
1508
+ --------------------------
1509
+  (0.1ms) rollback transaction
1510
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1511
+  (0.1ms) begin transaction
1512
+ --------------------------
1513
+ RockMotiveTest: test_truth
1514
+ --------------------------
1515
+  (0.0ms) rollback transaction
1516
+  (0.0ms) begin transaction
1517
+ -------------------------------------------------------
1518
+ RockMotive::InteractionTest: test_#interact_with_extend
1519
+ -------------------------------------------------------
1520
+  (0.1ms) rollback transaction
1521
+  (0.0ms) begin transaction
1522
+ -----------------------------------------------------------
1523
+ RockMotive::InteractionTest: test_#interact_with_unextended
1524
+ -----------------------------------------------------------
1525
+  (0.1ms) rollback transaction
1526
+  (0.0ms) begin transaction
1527
+ -----------------------------------------------------------------
1528
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
1529
+ -----------------------------------------------------------------
1530
+  (0.1ms) rollback transaction
1531
+  (0.1ms) begin transaction
1532
+ -------------------------------------------
1533
+ RockMotive::InteractionTest: test_.interact
1534
+ -------------------------------------------
1535
+  (0.1ms) rollback transaction
1536
+  (0.0ms) begin transaction
1537
+ ---------------------------------------------------------
1538
+ RockMotive::InteractionTest: test_.interact_with_override
1539
+ ---------------------------------------------------------
1540
+  (0.1ms) rollback transaction
1541
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1542
+  (0.1ms) begin transaction
1543
+ ---------------------------------------------------------
1544
+ RockMotive::InteractionTest: test_.interact_with_override
1545
+ ---------------------------------------------------------
1546
+  (0.1ms) rollback transaction
1547
+  (0.0ms) begin transaction
1548
+ -------------------------------------------
1549
+ RockMotive::InteractionTest: test_.interact
1550
+ -------------------------------------------
1551
+  (0.1ms) rollback transaction
1552
+  (0.0ms) begin transaction
1553
+ -----------------------------------------------------------
1554
+ RockMotive::InteractionTest: test_#interact_with_unextended
1555
+ -----------------------------------------------------------
1556
+  (0.1ms) rollback transaction
1557
+  (0.1ms) begin transaction
1558
+ -----------------------------------------------------------------
1559
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
1560
+ -----------------------------------------------------------------
1561
+  (0.1ms) rollback transaction
1562
+  (0.0ms) begin transaction
1563
+ -------------------------------------------------------
1564
+ RockMotive::InteractionTest: test_#interact_with_extend
1565
+ -------------------------------------------------------
1566
+  (0.1ms) rollback transaction
1567
+  (0.0ms) begin transaction
1568
+ --------------------------
1569
+ RockMotiveTest: test_truth
1570
+ --------------------------
1571
+  (0.0ms) rollback transaction
1572
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1573
+  (0.1ms) select sqlite_version(*)
1574
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1575
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1576
+ Migrating to CreateBirds (20150201003815)
1577
+  (0.0ms) begin transaction
1578
+  (0.3ms) CREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1579
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150201003815"]]
1580
+  (0.7ms) commit transaction
1581
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1582
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1583
+  (0.1ms) begin transaction
1584
+ --------------------------
1585
+ RockMotiveTest: test_truth
1586
+ --------------------------
1587
+  (0.0ms) rollback transaction
1588
+  (0.0ms) begin transaction
1589
+ -------------------------------------------------------
1590
+ RockMotive::InteractionTest: test_#interact_with_extend
1591
+ -------------------------------------------------------
1592
+  (0.1ms) rollback transaction
1593
+  (0.0ms) begin transaction
1594
+ ---------------------------------------------------------
1595
+ RockMotive::InteractionTest: test_.interact_with_override
1596
+ ---------------------------------------------------------
1597
+  (0.0ms) rollback transaction
1598
+  (0.1ms) begin transaction
1599
+ -------------------------------------------
1600
+ RockMotive::InteractionTest: test_.interact
1601
+ -------------------------------------------
1602
+  (0.1ms) rollback transaction
1603
+  (0.1ms) begin transaction
1604
+ -----------------------------------------------------------
1605
+ RockMotive::InteractionTest: test_#interact_with_unextended
1606
+ -----------------------------------------------------------
1607
+  (0.1ms) rollback transaction
1608
+  (0.0ms) begin transaction
1609
+ -----------------------------------------------------------------
1610
+ RockMotive::InteractionTest: test_#interact_with_keyword_argument
1611
+ -----------------------------------------------------------------
1612
+  (0.1ms) rollback transaction
1613
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1614
+  (0.1ms) begin transaction
1615
+ --------------------------
1616
+ RockMotiveTest: test_truth
1617
+ --------------------------
1618
+  (0.0ms) rollback transaction
1619
+  (0.0ms) begin transaction
1620
+ -----------------------------------------------------
1621
+ RockMotive::ContextTest: test_.interact_with_override
1622
+ -----------------------------------------------------
1623
+  (0.0ms) rollback transaction
1624
+  (0.0ms) begin transaction
1625
+ -------------------------------------------------------
1626
+ RockMotive::ContextTest: test_#interact_with_unextended
1627
+ -------------------------------------------------------
1628
+  (0.1ms) rollback transaction
1629
+  (0.0ms) begin transaction
1630
+ -------------------------------------------------------------
1631
+ RockMotive::ContextTest: test_#interact_with_keyword_argument
1632
+ -------------------------------------------------------------
1633
+  (0.1ms) rollback transaction
1634
+  (0.0ms) begin transaction
1635
+ ---------------------------------------------------
1636
+ RockMotive::ContextTest: test_#interact_with_extend
1637
+ ---------------------------------------------------
1638
+  (0.1ms) rollback transaction
1639
+  (0.0ms) begin transaction
1640
+ ---------------------------------------
1641
+ RockMotive::ContextTest: test_.interact
1642
+ ---------------------------------------
1643
+  (0.0ms) rollback transaction
1644
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1645
+  (0.1ms) begin transaction
1646
+ -----------------------------------------------------
1647
+ RockMotive::ContextTest: test_.interact_with_override
1648
+ -----------------------------------------------------
1649
+  (0.1ms) rollback transaction
1650
+  (0.1ms) begin transaction
1651
+ -------------------------------------------------------
1652
+ RockMotive::ContextTest: test_#interact_with_unextended
1653
+ -------------------------------------------------------
1654
+  (0.1ms) rollback transaction
1655
+  (0.0ms) begin transaction
1656
+ -------------------------------------------------------------
1657
+ RockMotive::ContextTest: test_#interact_with_keyword_argument
1658
+ -------------------------------------------------------------
1659
+  (0.1ms) rollback transaction
1660
+  (0.0ms) begin transaction
1661
+ ---------------------------------------
1662
+ RockMotive::ContextTest: test_.interact
1663
+ ---------------------------------------
1664
+  (0.0ms) rollback transaction
1665
+  (0.1ms) begin transaction
1666
+ ---------------------------------------------------
1667
+ RockMotive::ContextTest: test_#interact_with_extend
1668
+ ---------------------------------------------------
1669
+  (0.1ms) rollback transaction
1670
+  (0.0ms) begin transaction
1671
+ --------------------------
1672
+ RockMotiveTest: test_truth
1673
+ --------------------------
1674
+  (0.0ms) rollback transaction
1675
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1676
+  (0.1ms) begin transaction
1677
+ --------------------------
1678
+ RockMotiveTest: test_truth
1679
+ --------------------------
1680
+  (0.0ms) rollback transaction
1681
+  (0.0ms) begin transaction
1682
+ ------------------------------------------------------
1683
+ RockMotive::ContextTest: test_#execute_with_unextended
1684
+ ------------------------------------------------------
1685
+  (0.1ms) rollback transaction
1686
+  (0.0ms) begin transaction
1687
+ --------------------------------------
1688
+ RockMotive::ContextTest: test_.execute
1689
+ --------------------------------------
1690
+  (0.0ms) rollback transaction
1691
+  (0.0ms) begin transaction
1692
+ ----------------------------------------------------
1693
+ RockMotive::ContextTest: test_.execute_with_override
1694
+ ----------------------------------------------------
1695
+  (0.0ms) rollback transaction
1696
+  (0.0ms) begin transaction
1697
+ ------------------------------------------------------------
1698
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
1699
+ ------------------------------------------------------------
1700
+  (0.1ms) rollback transaction
1701
+  (0.0ms) begin transaction
1702
+ --------------------------------------------------
1703
+ RockMotive::ContextTest: test_#execute_with_extend
1704
+ --------------------------------------------------
1705
+  (0.1ms) rollback transaction