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