bootstrap_validator_rails 0.0.5
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 +32 -0
- data/lib/bootstrap_validator_rails/engine.rb +4 -0
- data/lib/bootstrap_validator_rails/version.rb +3 -0
- data/lib/bootstrap_validator_rails.rb +42 -0
- data/lib/tasks/bootstrap_validator_rails_tasks.rake +4 -0
- data/test/bootstrap_validator_rails_test.rb +13 -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/post.rb +3 -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/config/application.rb +23 -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 +37 -0
- data/test/dummy/config/environments/production.rb +82 -0
- data/test/dummy/config/environments/test.rb +39 -0
- data/test/dummy/config/initializers/assets.rb +8 -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/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20140723124112_create_posts.rb +7 -0
- data/test/dummy/db/schema.rb +20 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/ENV=test.log +0 -0
- data/test/dummy/log/development.log +22 -0
- data/test/dummy/log/test.log +781 -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/test_helper.rb +15 -0
- data/vendor/assets/javascripts/bootstrapValidator.js +1803 -0
- data/vendor/assets/javascripts/language/de_DE.js +326 -0
- data/vendor/assets/javascripts/language/en_US.js +327 -0
- data/vendor/assets/javascripts/language/es_CL.js +326 -0
- data/vendor/assets/javascripts/language/hu_HU.js +326 -0
- data/vendor/assets/javascripts/language/vi_VN.js +322 -0
- data/vendor/assets/javascripts/language/zh_CN.js +326 -0
- data/vendor/assets/javascripts/language/zh_TW.js +326 -0
- data/vendor/assets/javascripts/validator/base64.js +25 -0
- data/vendor/assets/javascripts/validator/between.js +66 -0
- data/vendor/assets/javascripts/validator/callback.js +40 -0
- data/vendor/assets/javascripts/validator/choice.js +68 -0
- data/vendor/assets/javascripts/validator/creditCard.js +103 -0
- data/vendor/assets/javascripts/validator/cusip.js +55 -0
- data/vendor/assets/javascripts/validator/cvv.js +116 -0
- data/vendor/assets/javascripts/validator/date.js +118 -0
- data/vendor/assets/javascripts/validator/different.js +41 -0
- data/vendor/assets/javascripts/validator/digits.js +24 -0
- data/vendor/assets/javascripts/validator/ean.js +40 -0
- data/vendor/assets/javascripts/validator/emailAddress.js +31 -0
- data/vendor/assets/javascripts/validator/file.js +69 -0
- data/vendor/assets/javascripts/validator/greaterThan.js +61 -0
- data/vendor/assets/javascripts/validator/grid.js +37 -0
- data/vendor/assets/javascripts/validator/hex.js +25 -0
- data/vendor/assets/javascripts/validator/hexColor.js +28 -0
- data/vendor/assets/javascripts/validator/iban.js +246 -0
- data/vendor/assets/javascripts/validator/id.js +815 -0
- data/vendor/assets/javascripts/validator/identical.js +40 -0
- data/vendor/assets/javascripts/validator/imei.js +44 -0
- data/vendor/assets/javascripts/validator/integer.js +28 -0
- data/vendor/assets/javascripts/validator/ip.js +48 -0
- data/vendor/assets/javascripts/validator/isbn.js +86 -0
- data/vendor/assets/javascripts/validator/isin.js +59 -0
- data/vendor/assets/javascripts/validator/ismn.js +59 -0
- data/vendor/assets/javascripts/validator/issn.js +46 -0
- data/vendor/assets/javascripts/validator/lessThan.js +61 -0
- data/vendor/assets/javascripts/validator/mac.js +25 -0
- data/vendor/assets/javascripts/validator/notEmpty.js +32 -0
- data/vendor/assets/javascripts/validator/numeric.js +39 -0
- data/vendor/assets/javascripts/validator/phone.js +84 -0
- data/vendor/assets/javascripts/validator/regexp.js +42 -0
- data/vendor/assets/javascripts/validator/remote.js +70 -0
- data/vendor/assets/javascripts/validator/rtn.js +38 -0
- data/vendor/assets/javascripts/validator/sedol.js +40 -0
- data/vendor/assets/javascripts/validator/siren.js +28 -0
- data/vendor/assets/javascripts/validator/siret.js +38 -0
- data/vendor/assets/javascripts/validator/step.js +64 -0
- data/vendor/assets/javascripts/validator/stringCase.js +36 -0
- data/vendor/assets/javascripts/validator/stringLength.js +81 -0
- data/vendor/assets/javascripts/validator/uri.js +101 -0
- data/vendor/assets/javascripts/validator/uuid.js +46 -0
- data/vendor/assets/javascripts/validator/vat.js +1220 -0
- data/vendor/assets/javascripts/validator/vin.js +49 -0
- data/vendor/assets/javascripts/validator/zipCode.js +162 -0
- data/vendor/assets/stylesheets/bootstrapValidator.css +21 -0
- metadata +233 -0
|
@@ -0,0 +1,781 @@
|
|
|
1
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
2
|
+
---------------------------------------
|
|
3
|
+
BootstrapValidatorRailsTest: test_truth
|
|
4
|
+
---------------------------------------
|
|
5
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
6
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
7
|
+
---------------------------------------
|
|
8
|
+
BootstrapValidatorRailsTest: test_truth
|
|
9
|
+
---------------------------------------
|
|
10
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
11
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
12
|
+
---------------------------------------
|
|
13
|
+
BootstrapValidatorRailsTest: test_truth
|
|
14
|
+
---------------------------------------
|
|
15
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
16
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
17
|
+
---------------------------------------
|
|
18
|
+
BootstrapValidatorRailsTest: test_truth
|
|
19
|
+
---------------------------------------
|
|
20
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
21
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
22
|
+
---------------------------------------
|
|
23
|
+
BootstrapValidatorRailsTest: test_truth
|
|
24
|
+
---------------------------------------
|
|
25
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
26
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
27
|
+
---------------------------------------
|
|
28
|
+
BootstrapValidatorRailsTest: test_truth
|
|
29
|
+
---------------------------------------
|
|
30
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
31
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
32
|
+
---------------------------------------
|
|
33
|
+
BootstrapValidatorRailsTest: test_truth
|
|
34
|
+
---------------------------------------
|
|
35
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
36
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
37
|
+
SQLite3::SQLException: no such table: posts: SELECT "posts".* FROM "posts"
|
|
38
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
39
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
40
|
+
[1m[36mPost Load (0.9ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
41
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
42
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
43
|
+
---------------------------------------
|
|
44
|
+
BootstrapValidatorRailsTest: test_truth
|
|
45
|
+
---------------------------------------
|
|
46
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
47
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
48
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
49
|
+
--------------------------------------
|
|
50
|
+
BootstrapValidatorRailsTest: test_test
|
|
51
|
+
--------------------------------------
|
|
52
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
53
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
54
|
+
---------------------------------------
|
|
55
|
+
BootstrapValidatorRailsTest: test_truth
|
|
56
|
+
---------------------------------------
|
|
57
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
58
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
59
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
60
|
+
--------------------------------------
|
|
61
|
+
BootstrapValidatorRailsTest: test_test
|
|
62
|
+
--------------------------------------
|
|
63
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
64
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
65
|
+
---------------------------------------
|
|
66
|
+
BootstrapValidatorRailsTest: test_truth
|
|
67
|
+
---------------------------------------
|
|
68
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
69
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
70
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
71
|
+
--------------------------------------
|
|
72
|
+
BootstrapValidatorRailsTest: test_test
|
|
73
|
+
--------------------------------------
|
|
74
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
75
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
76
|
+
---------------------------------------
|
|
77
|
+
BootstrapValidatorRailsTest: test_truth
|
|
78
|
+
---------------------------------------
|
|
79
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
80
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
81
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
82
|
+
--------------------------------------
|
|
83
|
+
BootstrapValidatorRailsTest: test_test
|
|
84
|
+
--------------------------------------
|
|
85
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
86
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
87
|
+
---------------------------------------
|
|
88
|
+
BootstrapValidatorRailsTest: test_truth
|
|
89
|
+
---------------------------------------
|
|
90
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
91
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
92
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
93
|
+
--------------------------------------
|
|
94
|
+
BootstrapValidatorRailsTest: test_test
|
|
95
|
+
--------------------------------------
|
|
96
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
97
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
98
|
+
---------------------------------------
|
|
99
|
+
BootstrapValidatorRailsTest: test_truth
|
|
100
|
+
---------------------------------------
|
|
101
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
102
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
103
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
104
|
+
--------------------------------------
|
|
105
|
+
BootstrapValidatorRailsTest: test_test
|
|
106
|
+
--------------------------------------
|
|
107
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
108
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
109
|
+
---------------------------------------
|
|
110
|
+
BootstrapValidatorRailsTest: test_truth
|
|
111
|
+
---------------------------------------
|
|
112
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
113
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
114
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
115
|
+
--------------------------------------
|
|
116
|
+
BootstrapValidatorRailsTest: test_test
|
|
117
|
+
--------------------------------------
|
|
118
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
119
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
120
|
+
---------------------------------------
|
|
121
|
+
BootstrapValidatorRailsTest: test_truth
|
|
122
|
+
---------------------------------------
|
|
123
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
124
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
125
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
126
|
+
--------------------------------------
|
|
127
|
+
BootstrapValidatorRailsTest: test_test
|
|
128
|
+
--------------------------------------
|
|
129
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
130
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
131
|
+
---------------------------------------
|
|
132
|
+
BootstrapValidatorRailsTest: test_truth
|
|
133
|
+
---------------------------------------
|
|
134
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
135
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
136
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
137
|
+
--------------------------------------
|
|
138
|
+
BootstrapValidatorRailsTest: test_test
|
|
139
|
+
--------------------------------------
|
|
140
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
141
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
142
|
+
---------------------------------------
|
|
143
|
+
BootstrapValidatorRailsTest: test_truth
|
|
144
|
+
---------------------------------------
|
|
145
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
146
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
147
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
148
|
+
--------------------------------------
|
|
149
|
+
BootstrapValidatorRailsTest: test_test
|
|
150
|
+
--------------------------------------
|
|
151
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
152
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
153
|
+
---------------------------------------
|
|
154
|
+
BootstrapValidatorRailsTest: test_truth
|
|
155
|
+
---------------------------------------
|
|
156
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
157
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
158
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
159
|
+
--------------------------------------
|
|
160
|
+
BootstrapValidatorRailsTest: test_test
|
|
161
|
+
--------------------------------------
|
|
162
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
163
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
164
|
+
---------------------------------------
|
|
165
|
+
BootstrapValidatorRailsTest: test_truth
|
|
166
|
+
---------------------------------------
|
|
167
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
168
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
169
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
170
|
+
--------------------------------------
|
|
171
|
+
BootstrapValidatorRailsTest: test_test
|
|
172
|
+
--------------------------------------
|
|
173
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
174
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
175
|
+
---------------------------------------
|
|
176
|
+
BootstrapValidatorRailsTest: test_truth
|
|
177
|
+
---------------------------------------
|
|
178
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
179
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
180
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
181
|
+
--------------------------------------
|
|
182
|
+
BootstrapValidatorRailsTest: test_test
|
|
183
|
+
--------------------------------------
|
|
184
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
185
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
186
|
+
---------------------------------------
|
|
187
|
+
BootstrapValidatorRailsTest: test_truth
|
|
188
|
+
---------------------------------------
|
|
189
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
190
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
191
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
192
|
+
--------------------------------------
|
|
193
|
+
BootstrapValidatorRailsTest: test_test
|
|
194
|
+
--------------------------------------
|
|
195
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
196
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
197
|
+
---------------------------------------
|
|
198
|
+
BootstrapValidatorRailsTest: test_truth
|
|
199
|
+
---------------------------------------
|
|
200
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
201
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
202
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
203
|
+
--------------------------------------
|
|
204
|
+
BootstrapValidatorRailsTest: test_test
|
|
205
|
+
--------------------------------------
|
|
206
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
207
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
208
|
+
---------------------------------------
|
|
209
|
+
BootstrapValidatorRailsTest: test_truth
|
|
210
|
+
---------------------------------------
|
|
211
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
212
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
213
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
214
|
+
--------------------------------------
|
|
215
|
+
BootstrapValidatorRailsTest: test_test
|
|
216
|
+
--------------------------------------
|
|
217
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
218
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
219
|
+
---------------------------------------
|
|
220
|
+
BootstrapValidatorRailsTest: test_truth
|
|
221
|
+
---------------------------------------
|
|
222
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
223
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
224
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
225
|
+
--------------------------------------
|
|
226
|
+
BootstrapValidatorRailsTest: test_test
|
|
227
|
+
--------------------------------------
|
|
228
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
229
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
230
|
+
---------------------------------------
|
|
231
|
+
BootstrapValidatorRailsTest: test_truth
|
|
232
|
+
---------------------------------------
|
|
233
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
234
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
235
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
236
|
+
--------------------------------------
|
|
237
|
+
BootstrapValidatorRailsTest: test_test
|
|
238
|
+
--------------------------------------
|
|
239
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
240
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
241
|
+
---------------------------------------
|
|
242
|
+
BootstrapValidatorRailsTest: test_truth
|
|
243
|
+
---------------------------------------
|
|
244
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
245
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
246
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
247
|
+
--------------------------------------
|
|
248
|
+
BootstrapValidatorRailsTest: test_test
|
|
249
|
+
--------------------------------------
|
|
250
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
251
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
252
|
+
---------------------------------------
|
|
253
|
+
BootstrapValidatorRailsTest: test_truth
|
|
254
|
+
---------------------------------------
|
|
255
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
256
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
257
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
258
|
+
--------------------------------------
|
|
259
|
+
BootstrapValidatorRailsTest: test_test
|
|
260
|
+
--------------------------------------
|
|
261
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
262
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
263
|
+
---------------------------------------
|
|
264
|
+
BootstrapValidatorRailsTest: test_truth
|
|
265
|
+
---------------------------------------
|
|
266
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
267
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
268
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
269
|
+
--------------------------------------
|
|
270
|
+
BootstrapValidatorRailsTest: test_test
|
|
271
|
+
--------------------------------------
|
|
272
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
273
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
274
|
+
---------------------------------------
|
|
275
|
+
BootstrapValidatorRailsTest: test_truth
|
|
276
|
+
---------------------------------------
|
|
277
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
278
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
279
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
280
|
+
--------------------------------------
|
|
281
|
+
BootstrapValidatorRailsTest: test_test
|
|
282
|
+
--------------------------------------
|
|
283
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
284
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
285
|
+
---------------------------------------
|
|
286
|
+
BootstrapValidatorRailsTest: test_truth
|
|
287
|
+
---------------------------------------
|
|
288
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
289
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
290
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
291
|
+
--------------------------------------
|
|
292
|
+
BootstrapValidatorRailsTest: test_test
|
|
293
|
+
--------------------------------------
|
|
294
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
295
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
296
|
+
---------------------------------------
|
|
297
|
+
BootstrapValidatorRailsTest: test_truth
|
|
298
|
+
---------------------------------------
|
|
299
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
300
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
301
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
302
|
+
--------------------------------------
|
|
303
|
+
BootstrapValidatorRailsTest: test_test
|
|
304
|
+
--------------------------------------
|
|
305
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
306
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
307
|
+
---------------------------------------
|
|
308
|
+
BootstrapValidatorRailsTest: test_truth
|
|
309
|
+
---------------------------------------
|
|
310
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
311
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
312
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
313
|
+
--------------------------------------
|
|
314
|
+
BootstrapValidatorRailsTest: test_test
|
|
315
|
+
--------------------------------------
|
|
316
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
317
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
318
|
+
---------------------------------------
|
|
319
|
+
BootstrapValidatorRailsTest: test_truth
|
|
320
|
+
---------------------------------------
|
|
321
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
322
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
323
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
324
|
+
--------------------------------------
|
|
325
|
+
BootstrapValidatorRailsTest: test_test
|
|
326
|
+
--------------------------------------
|
|
327
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
328
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
329
|
+
---------------------------------------
|
|
330
|
+
BootstrapValidatorRailsTest: test_truth
|
|
331
|
+
---------------------------------------
|
|
332
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
333
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
334
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
335
|
+
--------------------------------------
|
|
336
|
+
BootstrapValidatorRailsTest: test_test
|
|
337
|
+
--------------------------------------
|
|
338
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
339
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
340
|
+
---------------------------------------
|
|
341
|
+
BootstrapValidatorRailsTest: test_truth
|
|
342
|
+
---------------------------------------
|
|
343
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
344
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
345
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
346
|
+
--------------------------------------
|
|
347
|
+
BootstrapValidatorRailsTest: test_test
|
|
348
|
+
--------------------------------------
|
|
349
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
350
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
351
|
+
---------------------------------------
|
|
352
|
+
BootstrapValidatorRailsTest: test_truth
|
|
353
|
+
---------------------------------------
|
|
354
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[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
|
+
BootstrapValidatorRailsTest: test_test
|
|
359
|
+
--------------------------------------
|
|
360
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
361
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
362
|
+
---------------------------------------
|
|
363
|
+
BootstrapValidatorRailsTest: test_truth
|
|
364
|
+
---------------------------------------
|
|
365
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
366
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
367
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
368
|
+
--------------------------------------
|
|
369
|
+
BootstrapValidatorRailsTest: test_test
|
|
370
|
+
--------------------------------------
|
|
371
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
372
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
373
|
+
---------------------------------------
|
|
374
|
+
BootstrapValidatorRailsTest: test_truth
|
|
375
|
+
---------------------------------------
|
|
376
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
377
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
378
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
379
|
+
--------------------------------------
|
|
380
|
+
BootstrapValidatorRailsTest: test_test
|
|
381
|
+
--------------------------------------
|
|
382
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
383
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
384
|
+
---------------------------------------
|
|
385
|
+
BootstrapValidatorRailsTest: test_truth
|
|
386
|
+
---------------------------------------
|
|
387
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
388
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
389
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
390
|
+
--------------------------------------
|
|
391
|
+
BootstrapValidatorRailsTest: test_test
|
|
392
|
+
--------------------------------------
|
|
393
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
394
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
395
|
+
---------------------------------------
|
|
396
|
+
BootstrapValidatorRailsTest: test_truth
|
|
397
|
+
---------------------------------------
|
|
398
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
399
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
400
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
401
|
+
--------------------------------------
|
|
402
|
+
BootstrapValidatorRailsTest: test_test
|
|
403
|
+
--------------------------------------
|
|
404
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
405
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
406
|
+
---------------------------------------
|
|
407
|
+
BootstrapValidatorRailsTest: test_truth
|
|
408
|
+
---------------------------------------
|
|
409
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
410
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
411
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
412
|
+
--------------------------------------
|
|
413
|
+
BootstrapValidatorRailsTest: test_test
|
|
414
|
+
--------------------------------------
|
|
415
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
416
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
417
|
+
---------------------------------------
|
|
418
|
+
BootstrapValidatorRailsTest: test_truth
|
|
419
|
+
---------------------------------------
|
|
420
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
421
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
422
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
423
|
+
--------------------------------------
|
|
424
|
+
BootstrapValidatorRailsTest: test_test
|
|
425
|
+
--------------------------------------
|
|
426
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
427
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
428
|
+
---------------------------------------
|
|
429
|
+
BootstrapValidatorRailsTest: test_truth
|
|
430
|
+
---------------------------------------
|
|
431
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
432
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
433
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
434
|
+
--------------------------------------
|
|
435
|
+
BootstrapValidatorRailsTest: test_test
|
|
436
|
+
--------------------------------------
|
|
437
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
438
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
439
|
+
---------------------------------------
|
|
440
|
+
BootstrapValidatorRailsTest: test_truth
|
|
441
|
+
---------------------------------------
|
|
442
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
443
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
444
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
445
|
+
--------------------------------------
|
|
446
|
+
BootstrapValidatorRailsTest: test_test
|
|
447
|
+
--------------------------------------
|
|
448
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
449
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
450
|
+
---------------------------------------
|
|
451
|
+
BootstrapValidatorRailsTest: test_truth
|
|
452
|
+
---------------------------------------
|
|
453
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
454
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
455
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
456
|
+
--------------------------------------
|
|
457
|
+
BootstrapValidatorRailsTest: test_test
|
|
458
|
+
--------------------------------------
|
|
459
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
460
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
461
|
+
---------------------------------------
|
|
462
|
+
BootstrapValidatorRailsTest: test_truth
|
|
463
|
+
---------------------------------------
|
|
464
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
465
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
466
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
467
|
+
--------------------------------------
|
|
468
|
+
BootstrapValidatorRailsTest: test_test
|
|
469
|
+
--------------------------------------
|
|
470
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
471
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
472
|
+
---------------------------------------
|
|
473
|
+
BootstrapValidatorRailsTest: 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
|
+
BootstrapValidatorRailsTest: test_test
|
|
480
|
+
--------------------------------------
|
|
481
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
482
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
483
|
+
---------------------------------------
|
|
484
|
+
BootstrapValidatorRailsTest: test_truth
|
|
485
|
+
---------------------------------------
|
|
486
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
487
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
488
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
489
|
+
--------------------------------------
|
|
490
|
+
BootstrapValidatorRailsTest: test_test
|
|
491
|
+
--------------------------------------
|
|
492
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
493
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
494
|
+
---------------------------------------
|
|
495
|
+
BootstrapValidatorRailsTest: test_truth
|
|
496
|
+
---------------------------------------
|
|
497
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
498
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
499
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
500
|
+
--------------------------------------
|
|
501
|
+
BootstrapValidatorRailsTest: test_test
|
|
502
|
+
--------------------------------------
|
|
503
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
504
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
505
|
+
---------------------------------------
|
|
506
|
+
BootstrapValidatorRailsTest: test_truth
|
|
507
|
+
---------------------------------------
|
|
508
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
509
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
510
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
511
|
+
--------------------------------------
|
|
512
|
+
BootstrapValidatorRailsTest: test_test
|
|
513
|
+
--------------------------------------
|
|
514
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
515
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
516
|
+
---------------------------------------
|
|
517
|
+
BootstrapValidatorRailsTest: test_truth
|
|
518
|
+
---------------------------------------
|
|
519
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
520
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
521
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
522
|
+
--------------------------------------
|
|
523
|
+
BootstrapValidatorRailsTest: test_test
|
|
524
|
+
--------------------------------------
|
|
525
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
526
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
527
|
+
---------------------------------------
|
|
528
|
+
BootstrapValidatorRailsTest: test_truth
|
|
529
|
+
---------------------------------------
|
|
530
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
531
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
532
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
533
|
+
--------------------------------------
|
|
534
|
+
BootstrapValidatorRailsTest: test_test
|
|
535
|
+
--------------------------------------
|
|
536
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
537
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
538
|
+
---------------------------------------
|
|
539
|
+
BootstrapValidatorRailsTest: test_truth
|
|
540
|
+
---------------------------------------
|
|
541
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
542
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
543
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
544
|
+
--------------------------------------
|
|
545
|
+
BootstrapValidatorRailsTest: test_test
|
|
546
|
+
--------------------------------------
|
|
547
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
548
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
549
|
+
---------------------------------------
|
|
550
|
+
BootstrapValidatorRailsTest: test_truth
|
|
551
|
+
---------------------------------------
|
|
552
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
553
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
554
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
555
|
+
--------------------------------------
|
|
556
|
+
BootstrapValidatorRailsTest: test_test
|
|
557
|
+
--------------------------------------
|
|
558
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
559
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
560
|
+
---------------------------------------
|
|
561
|
+
BootstrapValidatorRailsTest: test_truth
|
|
562
|
+
---------------------------------------
|
|
563
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
564
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
565
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
566
|
+
--------------------------------------
|
|
567
|
+
BootstrapValidatorRailsTest: test_test
|
|
568
|
+
--------------------------------------
|
|
569
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
570
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
571
|
+
---------------------------------------
|
|
572
|
+
BootstrapValidatorRailsTest: test_truth
|
|
573
|
+
---------------------------------------
|
|
574
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
575
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
576
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
577
|
+
--------------------------------------
|
|
578
|
+
BootstrapValidatorRailsTest: test_test
|
|
579
|
+
--------------------------------------
|
|
580
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
581
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
582
|
+
---------------------------------------
|
|
583
|
+
BootstrapValidatorRailsTest: test_truth
|
|
584
|
+
---------------------------------------
|
|
585
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
586
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
587
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
588
|
+
--------------------------------------
|
|
589
|
+
BootstrapValidatorRailsTest: test_test
|
|
590
|
+
--------------------------------------
|
|
591
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
592
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
593
|
+
---------------------------------------
|
|
594
|
+
BootstrapValidatorRailsTest: test_truth
|
|
595
|
+
---------------------------------------
|
|
596
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
597
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
598
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
599
|
+
--------------------------------------
|
|
600
|
+
BootstrapValidatorRailsTest: test_test
|
|
601
|
+
--------------------------------------
|
|
602
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
603
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
604
|
+
---------------------------------------
|
|
605
|
+
BootstrapValidatorRailsTest: test_truth
|
|
606
|
+
---------------------------------------
|
|
607
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
608
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
609
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
610
|
+
--------------------------------------
|
|
611
|
+
BootstrapValidatorRailsTest: test_test
|
|
612
|
+
--------------------------------------
|
|
613
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
614
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
615
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
616
|
+
--------------------------------------
|
|
617
|
+
BootstrapValidatorRailsTest: test_test
|
|
618
|
+
--------------------------------------
|
|
619
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
620
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
621
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
622
|
+
--------------------------------------
|
|
623
|
+
BootstrapValidatorRailsTest: test_test
|
|
624
|
+
--------------------------------------
|
|
625
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
626
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
627
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
628
|
+
--------------------------------------
|
|
629
|
+
BootstrapValidatorRailsTest: test_test
|
|
630
|
+
--------------------------------------
|
|
631
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
632
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
633
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
634
|
+
--------------------------------------
|
|
635
|
+
BootstrapValidatorRailsTest: test_test
|
|
636
|
+
--------------------------------------
|
|
637
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
638
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
639
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
640
|
+
--------------------------------------
|
|
641
|
+
BootstrapValidatorRailsTest: test_test
|
|
642
|
+
--------------------------------------
|
|
643
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
644
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
645
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
646
|
+
--------------------------------------
|
|
647
|
+
BootstrapValidatorRailsTest: test_test
|
|
648
|
+
--------------------------------------
|
|
649
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
650
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
651
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
652
|
+
--------------------------------------
|
|
653
|
+
BootstrapValidatorRailsTest: test_test
|
|
654
|
+
--------------------------------------
|
|
655
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
656
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
657
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
658
|
+
--------------------------------------
|
|
659
|
+
BootstrapValidatorRailsTest: test_test
|
|
660
|
+
--------------------------------------
|
|
661
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
662
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
663
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
664
|
+
--------------------------------------
|
|
665
|
+
BootstrapValidatorRailsTest: test_test
|
|
666
|
+
--------------------------------------
|
|
667
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
668
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
669
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
670
|
+
--------------------------------------
|
|
671
|
+
BootstrapValidatorRailsTest: test_test
|
|
672
|
+
--------------------------------------
|
|
673
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
674
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
675
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
676
|
+
--------------------------------------
|
|
677
|
+
BootstrapValidatorRailsTest: test_test
|
|
678
|
+
--------------------------------------
|
|
679
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
680
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
681
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
682
|
+
--------------------------------------
|
|
683
|
+
BootstrapValidatorRailsTest: test_test
|
|
684
|
+
--------------------------------------
|
|
685
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
686
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
687
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
688
|
+
--------------------------------------
|
|
689
|
+
BootstrapValidatorRailsTest: test_test
|
|
690
|
+
--------------------------------------
|
|
691
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
692
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
693
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
694
|
+
--------------------------------------
|
|
695
|
+
BootstrapValidatorRailsTest: test_test
|
|
696
|
+
--------------------------------------
|
|
697
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
698
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
699
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
700
|
+
--------------------------------------
|
|
701
|
+
BootstrapValidatorRailsTest: test_test
|
|
702
|
+
--------------------------------------
|
|
703
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
704
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
705
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
706
|
+
--------------------------------------
|
|
707
|
+
BootstrapValidatorRailsTest: test_test
|
|
708
|
+
--------------------------------------
|
|
709
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
710
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
711
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
712
|
+
--------------------------------------
|
|
713
|
+
BootstrapValidatorRailsTest: test_test
|
|
714
|
+
--------------------------------------
|
|
715
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
716
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
717
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
718
|
+
--------------------------------------
|
|
719
|
+
BootstrapValidatorRailsTest: test_test
|
|
720
|
+
--------------------------------------
|
|
721
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
722
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
723
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
724
|
+
--------------------------------------
|
|
725
|
+
BootstrapValidatorRailsTest: test_test
|
|
726
|
+
--------------------------------------
|
|
727
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
728
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
729
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
730
|
+
--------------------------------------
|
|
731
|
+
BootstrapValidatorRailsTest: test_test
|
|
732
|
+
--------------------------------------
|
|
733
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
734
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
735
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
736
|
+
-------------------------------------------
|
|
737
|
+
BootstrapValidatorRailsTest: test_test_test
|
|
738
|
+
-------------------------------------------
|
|
739
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
740
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
741
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
742
|
+
-------------------------------------------------------------
|
|
743
|
+
BootstrapValidatorRailsTest: test_test_will_be_included_later
|
|
744
|
+
-------------------------------------------------------------
|
|
745
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
746
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
747
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
748
|
+
-------------------------------------------------------------
|
|
749
|
+
BootstrapValidatorRailsTest: test_test_will_be_included_later
|
|
750
|
+
-------------------------------------------------------------
|
|
751
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
752
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
753
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
754
|
+
-------------------------------------------------------------
|
|
755
|
+
BootstrapValidatorRailsTest: test_test_will_be_included_later
|
|
756
|
+
-------------------------------------------------------------
|
|
757
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
758
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
759
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
760
|
+
-------------------------------------------------------------
|
|
761
|
+
BootstrapValidatorRailsTest: test_test_will_be_included_later
|
|
762
|
+
-------------------------------------------------------------
|
|
763
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
764
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
765
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
766
|
+
-------------------------------------------------------------
|
|
767
|
+
BootstrapValidatorRailsTest: test_test_will_be_included_later
|
|
768
|
+
-------------------------------------------------------------
|
|
769
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
770
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.7ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
771
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
772
|
+
-------------------------------------------------------------
|
|
773
|
+
BootstrapValidatorRailsTest: test_test_will_be_included_later
|
|
774
|
+
-------------------------------------------------------------
|
|
775
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
776
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
777
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
778
|
+
-------------------------------------------------------------
|
|
779
|
+
BootstrapValidatorRailsTest: test_test_will_be_included_later
|
|
780
|
+
-------------------------------------------------------------
|
|
781
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|