t3-rails 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +74 -0
  4. data/Rakefile +41 -0
  5. data/lib/generators/t3/behavior_generator.rb +17 -0
  6. data/lib/generators/t3/bootstrap_generator.rb +42 -0
  7. data/lib/generators/t3/generator_helper.rb +19 -0
  8. data/lib/generators/t3/module_generator.rb +17 -0
  9. data/lib/generators/t3/service_generator.rb +17 -0
  10. data/lib/generators/templates/behavior.js +45 -0
  11. data/lib/generators/templates/module.js +45 -0
  12. data/lib/generators/templates/service.js +45 -0
  13. data/lib/t3/rails.rb +8 -0
  14. data/lib/t3/rails/version.rb +6 -0
  15. data/test/dummy/README.rdoc +28 -0
  16. data/test/dummy/Rakefile +6 -0
  17. data/test/dummy/app/assets/javascripts/application.js +13 -0
  18. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  19. data/test/dummy/app/controllers/application_controller.rb +5 -0
  20. data/test/dummy/app/helpers/application_helper.rb +2 -0
  21. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  22. data/test/dummy/bin/bundle +3 -0
  23. data/test/dummy/bin/rails +4 -0
  24. data/test/dummy/bin/rake +4 -0
  25. data/test/dummy/bin/setup +29 -0
  26. data/test/dummy/config.ru +4 -0
  27. data/test/dummy/config/application.rb +27 -0
  28. data/test/dummy/config/boot.rb +5 -0
  29. data/test/dummy/config/environment.rb +5 -0
  30. data/test/dummy/config/environments/development.rb +41 -0
  31. data/test/dummy/config/environments/production.rb +79 -0
  32. data/test/dummy/config/environments/test.rb +42 -0
  33. data/test/dummy/config/initializers/assets.rb +11 -0
  34. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  35. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  36. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  37. data/test/dummy/config/initializers/inflections.rb +16 -0
  38. data/test/dummy/config/initializers/mime_types.rb +4 -0
  39. data/test/dummy/config/initializers/session_store.rb +3 -0
  40. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  41. data/test/dummy/config/locales/en.yml +23 -0
  42. data/test/dummy/config/routes.rb +56 -0
  43. data/test/dummy/config/secrets.yml +22 -0
  44. data/test/dummy/log/development.log +4 -0
  45. data/test/dummy/log/test.log +3962 -0
  46. data/test/dummy/public/404.html +67 -0
  47. data/test/dummy/public/422.html +67 -0
  48. data/test/dummy/public/500.html +66 -0
  49. data/test/dummy/public/favicon.ico +0 -0
  50. data/test/dummy/tmp/app/assets/javascripts/behaviors/validate.js +45 -0
  51. data/test/generators/behavior_generator_test.rb +21 -0
  52. data/test/generators/bootstrap_generator_test.rb +75 -0
  53. data/test/generators/module_generator_test.rb +21 -0
  54. data/test/generators/service_generator_test.rb +21 -0
  55. data/test/t3_rails_test.rb +13 -0
  56. data/test/test_helper.rb +18 -0
  57. data/vendor/assets/javascripts/t3-testing.js +459 -0
  58. data/vendor/assets/javascripts/t3.js +1233 -0
  59. data/vendor/assets/javascripts/t3.min.js +18 -0
  60. metadata +172 -0
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 40c20b38959903e47a51cfebfef5e2868abd539c8fed1e32dcaef319f029ca8728a2e48ff7ddb53c71010cfa4aca1ea71f5fab869ab37c5420c1d5bbf5ea904d
15
+
16
+ test:
17
+ secret_key_base: 49968cb150248593078a1b3582051bb852f4b360e937fc71eb15f23a88f4db2510cf552ace9309f56751e07fa1d903ad269681c981c97e27095608e46e721a0e
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,4 @@
1
+  (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
@@ -0,0 +1,3962 @@
1
+  (0.1ms) begin transaction
2
+ -----------------------
3
+ T3RailsTest: test_truth
4
+ -----------------------
5
+  (0.1ms) rollback transaction
6
+  (0.2ms) begin transaction
7
+ -------------------------
8
+ T3::RailsTest: test_truth
9
+ -------------------------
10
+  (0.1ms) rollback transaction
11
+  (0.2ms) begin transaction
12
+ -----------------------
13
+ T3RailsTest: test_truth
14
+ -----------------------
15
+  (0.1ms) rollback transaction
16
+  (0.1ms) begin transaction
17
+ -----------------------
18
+ T3RailsTest: test_truth
19
+ -----------------------
20
+  (0.1ms) rollback transaction
21
+  (0.1ms) begin transaction
22
+ -----------------------
23
+ T3RailsTest: test_truth
24
+ -----------------------
25
+  (0.0ms) rollback transaction
26
+  (2.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
27
+  (0.1ms) select sqlite_version(*)
28
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
29
+  (0.1ms) SELECT version FROM "schema_migrations"
30
+  (6.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
31
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
32
+  (0.2ms) begin transaction
33
+ -----------------------
34
+ T3RailsTest: test_truth
35
+ -----------------------
36
+  (0.1ms) rollback transaction
37
+  (0.2ms) begin transaction
38
+ -----------------------
39
+ T3RailsTest: test_truth
40
+ -----------------------
41
+  (0.1ms) rollback transaction
42
+  (0.1ms) begin transaction
43
+ ------------------------------------
44
+ InstallGeneratorTest: test_the_truth
45
+ ------------------------------------
46
+  (0.0ms) rollback transaction
47
+  (0.2ms) begin transaction
48
+ ------------------------------------
49
+ InstallGeneratorTest: test_the_truth
50
+ ------------------------------------
51
+  (0.0ms) rollback transaction
52
+  (0.0ms) begin transaction
53
+ -----------------------
54
+ T3RailsTest: test_truth
55
+ -----------------------
56
+  (0.0ms) rollback transaction
57
+  (0.1ms) begin transaction
58
+ ------------------------------------
59
+ InstallGeneratorTest: test_the_truth
60
+ ------------------------------------
61
+  (0.1ms) rollback transaction
62
+  (0.1ms) begin transaction
63
+ -----------------------
64
+ T3RailsTest: test_truth
65
+ -----------------------
66
+  (0.1ms) rollback transaction
67
+  (0.1ms) begin transaction
68
+ --------------------------------------
69
+ BootstrapGeneratorTest: test_the_truth
70
+ --------------------------------------
71
+  (0.1ms) rollback transaction
72
+  (0.1ms) begin transaction
73
+ -----------------------
74
+ T3RailsTest: test_truth
75
+ -----------------------
76
+  (0.1ms) rollback transaction
77
+  (0.1ms) begin transaction
78
+ --------------------------------------
79
+ BootstrapGeneratorTest: test_the_truth
80
+ --------------------------------------
81
+  (0.1ms) rollback transaction
82
+  (0.2ms) begin transaction
83
+ -----------------------
84
+ T3RailsTest: test_truth
85
+ -----------------------
86
+  (0.1ms) rollback transaction
87
+  (0.1ms) begin transaction
88
+ --------------------------------------
89
+ BootstrapGeneratorTest: test_the_truth
90
+ --------------------------------------
91
+  (0.1ms) rollback transaction
92
+  (0.0ms) begin transaction
93
+ -----------------------
94
+ T3RailsTest: test_truth
95
+ -----------------------
96
+  (0.0ms) rollback transaction
97
+  (0.1ms) begin transaction
98
+ -----------------------
99
+ T3RailsTest: test_truth
100
+ -----------------------
101
+  (0.1ms) rollback transaction
102
+  (0.1ms) begin transaction
103
+ --------------------------------------
104
+ BootstrapGeneratorTest: test_the_truth
105
+ --------------------------------------
106
+  (0.1ms) rollback transaction
107
+  (0.2ms) begin transaction
108
+ -----------------------
109
+ T3RailsTest: test_truth
110
+ -----------------------
111
+  (0.1ms) rollback transaction
112
+  (0.0ms) begin transaction
113
+ --------------------------------------
114
+ BootstrapGeneratorTest: test_the_truth
115
+ --------------------------------------
116
+  (0.1ms) rollback transaction
117
+  (0.1ms) begin transaction
118
+ --------------------------------------
119
+ BootstrapGeneratorTest: test_the_truth
120
+ --------------------------------------
121
+  (0.1ms) rollback transaction
122
+  (0.1ms) begin transaction
123
+ -----------------------
124
+ T3RailsTest: test_truth
125
+ -----------------------
126
+  (0.0ms) rollback transaction
127
+  (0.1ms) begin transaction
128
+ -----------------------
129
+ T3RailsTest: test_truth
130
+ -----------------------
131
+  (0.1ms) rollback transaction
132
+  (0.1ms) begin transaction
133
+ --------------------------------------
134
+ BootstrapGeneratorTest: test_the_truth
135
+ --------------------------------------
136
+  (0.1ms) rollback transaction
137
+  (0.1ms) begin transaction
138
+ --------------------------------------
139
+ BootstrapGeneratorTest: test_the_truth
140
+ --------------------------------------
141
+  (0.1ms) rollback transaction
142
+  (0.1ms) begin transaction
143
+ -----------------------
144
+ T3RailsTest: test_truth
145
+ -----------------------
146
+  (0.1ms) rollback transaction
147
+  (0.2ms) begin transaction
148
+ --------------------------------------
149
+ BootstrapGeneratorTest: test_the_truth
150
+ --------------------------------------
151
+  (0.1ms) rollback transaction
152
+  (0.1ms) begin transaction
153
+ -----------------------
154
+ T3RailsTest: test_truth
155
+ -----------------------
156
+  (0.1ms) rollback transaction
157
+  (0.1ms) begin transaction
158
+ -----------------------
159
+ T3RailsTest: test_truth
160
+ -----------------------
161
+  (0.0ms) rollback transaction
162
+  (0.0ms) begin transaction
163
+ --------------------------------------
164
+ BootstrapGeneratorTest: test_the_truth
165
+ --------------------------------------
166
+  (0.1ms) rollback transaction
167
+  (0.1ms) begin transaction
168
+ -----------------------
169
+ T3RailsTest: test_truth
170
+ -----------------------
171
+  (0.1ms) rollback transaction
172
+  (0.1ms) begin transaction
173
+ --------------------------------------
174
+ BootstrapGeneratorTest: test_the_truth
175
+ --------------------------------------
176
+  (0.1ms) rollback transaction
177
+  (0.1ms) begin transaction
178
+ -----------------------
179
+ T3RailsTest: test_truth
180
+ -----------------------
181
+  (0.0ms) rollback transaction
182
+  (0.1ms) begin transaction
183
+ --------------------------------------
184
+ BootstrapGeneratorTest: test_the_truth
185
+ --------------------------------------
186
+  (0.1ms) rollback transaction
187
+  (0.1ms) begin transaction
188
+ -----------------------
189
+ T3RailsTest: test_truth
190
+ -----------------------
191
+  (0.0ms) rollback transaction
192
+  (0.0ms) begin transaction
193
+ --------------------------------------
194
+ BootstrapGeneratorTest: test_the_truth
195
+ --------------------------------------
196
+  (0.0ms) rollback transaction
197
+  (0.2ms) begin transaction
198
+ --------------------------------------
199
+ BootstrapGeneratorTest: test_the_truth
200
+ --------------------------------------
201
+  (0.1ms) rollback transaction
202
+  (0.1ms) begin transaction
203
+ -----------------------
204
+ T3RailsTest: test_truth
205
+ -----------------------
206
+  (0.1ms) rollback transaction
207
+  (0.1ms) begin transaction
208
+ ----------------------------------------------------
209
+ BootstrapGeneratorTest: test_directories_are_created
210
+ ----------------------------------------------------
211
+  (0.1ms) rollback transaction
212
+  (0.1ms) begin transaction
213
+ -----------------------
214
+ T3RailsTest: test_truth
215
+ -----------------------
216
+  (0.1ms) rollback transaction
217
+  (0.2ms) begin transaction
218
+ ----------------------------------------------------
219
+ BootstrapGeneratorTest: test_directories_are_created
220
+ ----------------------------------------------------
221
+  (0.1ms) rollback transaction
222
+  (0.1ms) begin transaction
223
+ -----------------------------------------------------------
224
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created
225
+ -----------------------------------------------------------
226
+  (0.1ms) rollback transaction
227
+  (0.1ms) begin transaction
228
+ -----------------------
229
+ T3RailsTest: test_truth
230
+ -----------------------
231
+  (0.1ms) rollback transaction
232
+  (0.1ms) begin transaction
233
+ -----------------------
234
+ T3RailsTest: test_truth
235
+ -----------------------
236
+  (0.1ms) rollback transaction
237
+  (0.1ms) begin transaction
238
+ ----------------------------------------------------------------------------------------
239
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
240
+ ----------------------------------------------------------------------------------------
241
+  (0.1ms) rollback transaction
242
+  (0.2ms) begin transaction
243
+ ----------------------------------------------------
244
+ BootstrapGeneratorTest: test_directories_are_created
245
+ ----------------------------------------------------
246
+  (0.1ms) rollback transaction
247
+  (0.1ms) begin transaction
248
+ -----------------------
249
+ T3RailsTest: test_truth
250
+ -----------------------
251
+  (0.0ms) rollback transaction
252
+  (0.0ms) begin transaction
253
+ ----------------------------------------------------------------------------------------
254
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
255
+ ----------------------------------------------------------------------------------------
256
+  (0.1ms) rollback transaction
257
+  (0.1ms) begin transaction
258
+ ----------------------------------------------------
259
+ BootstrapGeneratorTest: test_directories_are_created
260
+ ----------------------------------------------------
261
+  (0.1ms) rollback transaction
262
+  (0.1ms) begin transaction
263
+ -----------------------
264
+ T3RailsTest: test_truth
265
+ -----------------------
266
+  (0.0ms) rollback transaction
267
+  (0.0ms) begin transaction
268
+ ----------------------------------------------------
269
+ BootstrapGeneratorTest: test_directories_are_created
270
+ ----------------------------------------------------
271
+  (0.2ms) rollback transaction
272
+  (0.1ms) begin transaction
273
+ ----------------------------------------------------------------------------------------
274
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
275
+ ----------------------------------------------------------------------------------------
276
+  (0.1ms) rollback transaction
277
+  (0.1ms) begin transaction
278
+ ----------------------------------------------------------------------------------------
279
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
280
+ ----------------------------------------------------------------------------------------
281
+  (0.1ms) rollback transaction
282
+  (0.1ms) begin transaction
283
+ ----------------------------------------------------
284
+ BootstrapGeneratorTest: test_directories_are_created
285
+ ----------------------------------------------------
286
+  (0.1ms) rollback transaction
287
+  (0.1ms) begin transaction
288
+ -----------------------
289
+ T3RailsTest: test_truth
290
+ -----------------------
291
+  (0.1ms) rollback transaction
292
+  (0.1ms) begin transaction
293
+ ----------------------------------------------------------------------------------------
294
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
295
+ ----------------------------------------------------------------------------------------
296
+  (0.1ms) rollback transaction
297
+  (0.1ms) begin transaction
298
+ ----------------------------------------------------
299
+ BootstrapGeneratorTest: test_directories_are_created
300
+ ----------------------------------------------------
301
+  (0.1ms) rollback transaction
302
+  (0.1ms) begin transaction
303
+ -----------------------
304
+ T3RailsTest: test_truth
305
+ -----------------------
306
+  (0.0ms) rollback transaction
307
+  (0.1ms) begin transaction
308
+ -----------------------
309
+ T3RailsTest: test_truth
310
+ -----------------------
311
+  (0.0ms) rollback transaction
312
+  (0.0ms) begin transaction
313
+ ----------------------------------------------------------------------------------------
314
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
315
+ ----------------------------------------------------------------------------------------
316
+  (0.1ms) rollback transaction
317
+  (0.1ms) begin transaction
318
+ ----------------------------------------------------
319
+ BootstrapGeneratorTest: test_directories_are_created
320
+ ----------------------------------------------------
321
+  (0.1ms) rollback transaction
322
+  (0.2ms) begin transaction
323
+ -----------------------
324
+ T3RailsTest: test_truth
325
+ -----------------------
326
+  (0.1ms) rollback transaction
327
+  (0.0ms) begin transaction
328
+ -------------------------------------------------------
329
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
330
+ -------------------------------------------------------
331
+  (0.1ms) rollback transaction
332
+  (0.1ms) begin transaction
333
+ ----------------------------------------------------------------------------------------
334
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
335
+ ----------------------------------------------------------------------------------------
336
+  (0.1ms) rollback transaction
337
+  (0.1ms) begin transaction
338
+ ----------------------------------------------------
339
+ BootstrapGeneratorTest: test_directories_are_created
340
+ ----------------------------------------------------
341
+  (0.1ms) rollback transaction
342
+  (0.2ms) begin transaction
343
+ -----------------------
344
+ T3RailsTest: test_truth
345
+ -----------------------
346
+  (0.1ms) rollback transaction
347
+  (0.1ms) begin transaction
348
+ ----------------------------------------------------------------------------------------
349
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
350
+ ----------------------------------------------------------------------------------------
351
+  (0.1ms) rollback transaction
352
+  (0.2ms) begin transaction
353
+ -----------------------
354
+ T3RailsTest: test_truth
355
+ -----------------------
356
+  (0.1ms) rollback transaction
357
+  (0.1ms) begin transaction
358
+ ----------------------------------------------------
359
+ BootstrapGeneratorTest: test_directories_are_created
360
+ ----------------------------------------------------
361
+  (0.1ms) rollback transaction
362
+  (0.1ms) begin transaction
363
+ ----------------------------------------------------------------------------------------
364
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
365
+ ----------------------------------------------------------------------------------------
366
+  (0.1ms) rollback transaction
367
+  (0.1ms) begin transaction
368
+ -------------------------------------------------------
369
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
370
+ -------------------------------------------------------
371
+  (0.1ms) rollback transaction
372
+  (0.1ms) begin transaction
373
+ -----------------------------------------------------------------
374
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
375
+ -----------------------------------------------------------------
376
+  (0.1ms) rollback transaction
377
+  (0.1ms) begin transaction
378
+ -------------------------------------------------------
379
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
380
+ -------------------------------------------------------
381
+  (0.1ms) rollback transaction
382
+  (0.1ms) begin transaction
383
+ -----------------------------------------------------------------
384
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
385
+ -----------------------------------------------------------------
386
+  (0.1ms) rollback transaction
387
+  (0.1ms) begin transaction
388
+ ----------------------------------------------------------------------------------------
389
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
390
+ ----------------------------------------------------------------------------------------
391
+  (0.1ms) rollback transaction
392
+  (0.1ms) begin transaction
393
+ ----------------------------------------------------
394
+ BootstrapGeneratorTest: test_directories_are_created
395
+ ----------------------------------------------------
396
+  (0.1ms) rollback transaction
397
+  (0.1ms) begin transaction
398
+ -----------------------
399
+ T3RailsTest: test_truth
400
+ -----------------------
401
+  (0.0ms) rollback transaction
402
+  (0.2ms) begin transaction
403
+ -------------------------------------------------------
404
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
405
+ -------------------------------------------------------
406
+  (0.1ms) rollback transaction
407
+  (0.1ms) begin transaction
408
+ ----------------------------------------------------------------------------------------
409
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
410
+ ----------------------------------------------------------------------------------------
411
+  (0.1ms) rollback transaction
412
+  (0.1ms) begin transaction
413
+ ----------------------------------------------------
414
+ BootstrapGeneratorTest: test_directories_are_created
415
+ ----------------------------------------------------
416
+  (0.1ms) rollback transaction
417
+  (0.1ms) begin transaction
418
+ -----------------------------------------------------------------
419
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
420
+ -----------------------------------------------------------------
421
+  (0.1ms) rollback transaction
422
+  (0.1ms) begin transaction
423
+ -----------------------
424
+ T3RailsTest: test_truth
425
+ -----------------------
426
+  (0.0ms) rollback transaction
427
+  (0.1ms) begin transaction
428
+ ----------------------------------------------------------------------------------------
429
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
430
+ ----------------------------------------------------------------------------------------
431
+  (0.1ms) rollback transaction
432
+  (0.1ms) begin transaction
433
+ -----------------------------------------------------------------
434
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
435
+ -----------------------------------------------------------------
436
+  (0.1ms) rollback transaction
437
+  (0.1ms) begin transaction
438
+ ----------------------------------------------------
439
+ BootstrapGeneratorTest: test_directories_are_created
440
+ ----------------------------------------------------
441
+  (0.1ms) rollback transaction
442
+  (0.1ms) begin transaction
443
+ -------------------------------------------------------
444
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
445
+ -------------------------------------------------------
446
+  (0.1ms) rollback transaction
447
+  (0.2ms) begin transaction
448
+ -----------------------
449
+ T3RailsTest: test_truth
450
+ -----------------------
451
+  (0.1ms) rollback transaction
452
+  (0.2ms) begin transaction
453
+ -------------------------------------------------------
454
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
455
+ -------------------------------------------------------
456
+  (0.1ms) rollback transaction
457
+  (0.1ms) begin transaction
458
+ ----------------------------------------------------------------------------------------
459
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
460
+ ----------------------------------------------------------------------------------------
461
+  (0.1ms) rollback transaction
462
+  (0.1ms) begin transaction
463
+ -----------------------------------------------------------------
464
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
465
+ -----------------------------------------------------------------
466
+  (0.1ms) rollback transaction
467
+  (0.1ms) begin transaction
468
+ ----------------------------------------------------
469
+ BootstrapGeneratorTest: test_directories_are_created
470
+ ----------------------------------------------------
471
+  (0.1ms) rollback transaction
472
+  (0.1ms) begin transaction
473
+ -----------------------
474
+ T3RailsTest: test_truth
475
+ -----------------------
476
+  (0.0ms) rollback transaction
477
+  (0.1ms) begin transaction
478
+ -----------------------
479
+ T3RailsTest: test_truth
480
+ -----------------------
481
+  (0.0ms) rollback transaction
482
+  (0.0ms) begin transaction
483
+ ----------------------------------------------------
484
+ BootstrapGeneratorTest: test_directories_are_created
485
+ ----------------------------------------------------
486
+  (0.1ms) rollback transaction
487
+  (0.1ms) begin transaction
488
+ -----------------------
489
+ T3RailsTest: test_truth
490
+ -----------------------
491
+  (0.1ms) rollback transaction
492
+  (0.1ms) begin transaction
493
+ ----------------------------------------------------
494
+ BootstrapGeneratorTest: test_directories_are_created
495
+ ----------------------------------------------------
496
+  (0.1ms) rollback transaction
497
+  (0.2ms) begin transaction
498
+ -----------------------
499
+ T3RailsTest: test_truth
500
+ -----------------------
501
+  (0.1ms) rollback transaction
502
+  (0.1ms) begin transaction
503
+ ----------------------------------------------------
504
+ BootstrapGeneratorTest: test_directories_are_created
505
+ ----------------------------------------------------
506
+  (0.1ms) rollback transaction
507
+  (0.2ms) begin transaction
508
+ -----------------------
509
+ T3RailsTest: test_truth
510
+ -----------------------
511
+  (0.1ms) rollback transaction
512
+  (0.1ms) begin transaction
513
+ ----------------------------------------------------
514
+ BootstrapGeneratorTest: test_directories_are_created
515
+ ----------------------------------------------------
516
+  (0.1ms) rollback transaction
517
+  (0.2ms) begin transaction
518
+ -----------------------
519
+ T3RailsTest: test_truth
520
+ -----------------------
521
+  (0.1ms) rollback transaction
522
+  (0.1ms) begin transaction
523
+ ----------------------------------------------------
524
+ BootstrapGeneratorTest: test_directories_are_created
525
+ ----------------------------------------------------
526
+  (0.1ms) rollback transaction
527
+  (0.1ms) begin transaction
528
+ ----------------------------------------------------
529
+ BootstrapGeneratorTest: test_directories_are_created
530
+ ----------------------------------------------------
531
+  (0.1ms) rollback transaction
532
+  (0.1ms) begin transaction
533
+ -----------------------
534
+ T3RailsTest: test_truth
535
+ -----------------------
536
+  (0.1ms) rollback transaction
537
+  (0.2ms) begin transaction
538
+ -----------------------
539
+ T3RailsTest: test_truth
540
+ -----------------------
541
+  (0.0ms) rollback transaction
542
+  (0.1ms) begin transaction
543
+ ----------------------------------------------------
544
+ BootstrapGeneratorTest: test_directories_are_created
545
+ ----------------------------------------------------
546
+  (0.1ms) rollback transaction
547
+  (0.2ms) begin transaction
548
+ ----------------------------------------------------
549
+ BootstrapGeneratorTest: test_directories_are_created
550
+ ----------------------------------------------------
551
+  (0.1ms) rollback transaction
552
+  (0.1ms) begin transaction
553
+ -----------------------
554
+ T3RailsTest: test_truth
555
+ -----------------------
556
+  (0.0ms) rollback transaction
557
+  (0.1ms) begin transaction
558
+ ----------------------------------------------------
559
+ BootstrapGeneratorTest: test_directories_are_created
560
+ ----------------------------------------------------
561
+  (0.1ms) rollback transaction
562
+  (0.1ms) begin transaction
563
+ -----------------------
564
+ T3RailsTest: test_truth
565
+ -----------------------
566
+  (0.0ms) rollback transaction
567
+  (0.1ms) begin transaction
568
+ -----------------------
569
+ T3RailsTest: test_truth
570
+ -----------------------
571
+  (0.0ms) rollback transaction
572
+  (0.1ms) begin transaction
573
+ ----------------------------------------------------------------------------------------
574
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
575
+ ----------------------------------------------------------------------------------------
576
+  (0.2ms) rollback transaction
577
+  (0.1ms) begin transaction
578
+ ----------------------------------------------------
579
+ BootstrapGeneratorTest: test_directories_are_created
580
+ ----------------------------------------------------
581
+  (0.1ms) rollback transaction
582
+  (0.1ms) begin transaction
583
+ -------------------------------------------------------
584
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
585
+ -------------------------------------------------------
586
+  (0.1ms) rollback transaction
587
+  (0.1ms) begin transaction
588
+ -----------------------------------------------------------------
589
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
590
+ -----------------------------------------------------------------
591
+  (0.1ms) rollback transaction
592
+  (0.1ms) begin transaction
593
+ -----------------------
594
+ T3RailsTest: test_truth
595
+ -----------------------
596
+  (0.1ms) rollback transaction
597
+  (0.1ms) begin transaction
598
+ ----------------------------------------------------
599
+ BootstrapGeneratorTest: test_directories_are_created
600
+ ----------------------------------------------------
601
+  (0.1ms) rollback transaction
602
+  (0.1ms) begin transaction
603
+ -------------------------------------------------------
604
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
605
+ -------------------------------------------------------
606
+  (0.1ms) rollback transaction
607
+  (0.1ms) begin transaction
608
+ -----------------------------------------------------------------
609
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
610
+ -----------------------------------------------------------------
611
+  (0.2ms) rollback transaction
612
+  (0.1ms) begin transaction
613
+ ----------------------------------------------------------------------------------------
614
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
615
+ ----------------------------------------------------------------------------------------
616
+  (0.1ms) rollback transaction
617
+  (0.1ms) begin transaction
618
+ -----------------------
619
+ T3RailsTest: test_truth
620
+ -----------------------
621
+  (0.0ms) rollback transaction
622
+  (0.0ms) begin transaction
623
+ ----------------------------------------------------------------------------------------
624
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
625
+ ----------------------------------------------------------------------------------------
626
+  (0.1ms) rollback transaction
627
+  (0.1ms) begin transaction
628
+ -------------------------------------------------------
629
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
630
+ -------------------------------------------------------
631
+  (0.1ms) rollback transaction
632
+  (0.1ms) begin transaction
633
+ ----------------------------------------------------
634
+ BootstrapGeneratorTest: test_directories_are_created
635
+ ----------------------------------------------------
636
+  (0.1ms) rollback transaction
637
+  (0.1ms) begin transaction
638
+ -----------------------------------------------------------------
639
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
640
+ -----------------------------------------------------------------
641
+  (0.2ms) rollback transaction
642
+  (0.1ms) begin transaction
643
+ -----------------------------------------------------------------
644
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
645
+ -----------------------------------------------------------------
646
+  (0.2ms) rollback transaction
647
+  (0.1ms) begin transaction
648
+ ----------------------------------------------------
649
+ BootstrapGeneratorTest: test_directories_are_created
650
+ ----------------------------------------------------
651
+  (0.1ms) rollback transaction
652
+  (0.0ms) begin transaction
653
+ ----------------------------------------------------------------------------------------
654
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
655
+ ----------------------------------------------------------------------------------------
656
+  (0.1ms) rollback transaction
657
+  (0.1ms) begin transaction
658
+ -------------------------------------------------------
659
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
660
+ -------------------------------------------------------
661
+  (0.1ms) rollback transaction
662
+  (0.1ms) begin transaction
663
+ -----------------------
664
+ T3RailsTest: test_truth
665
+ -----------------------
666
+  (0.1ms) rollback transaction
667
+  (0.1ms) begin transaction
668
+ -----------------------
669
+ T3RailsTest: test_truth
670
+ -----------------------
671
+  (0.0ms) rollback transaction
672
+  (0.0ms) begin transaction
673
+ -------------------------------------------------------
674
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
675
+ -------------------------------------------------------
676
+  (0.1ms) rollback transaction
677
+  (0.1ms) begin transaction
678
+ ----------------------------------------------------
679
+ BootstrapGeneratorTest: test_directories_are_created
680
+ ----------------------------------------------------
681
+  (0.1ms) rollback transaction
682
+  (0.1ms) begin transaction
683
+ ----------------------------------------------------------------------------------------
684
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
685
+ ----------------------------------------------------------------------------------------
686
+  (0.1ms) rollback transaction
687
+  (0.1ms) begin transaction
688
+ -----------------------------------------------------------------
689
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
690
+ -----------------------------------------------------------------
691
+  (0.1ms) rollback transaction
692
+  (0.1ms) begin transaction
693
+ -----------------------
694
+ T3RailsTest: test_truth
695
+ -----------------------
696
+  (0.0ms) rollback transaction
697
+  (0.1ms) begin transaction
698
+ -------------------------------------------------------
699
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
700
+ -------------------------------------------------------
701
+  (0.1ms) rollback transaction
702
+  (0.1ms) begin transaction
703
+ ----------------------------------------------------
704
+ BootstrapGeneratorTest: test_directories_are_created
705
+ ----------------------------------------------------
706
+  (0.1ms) rollback transaction
707
+  (0.1ms) begin transaction
708
+ -----------------------------------------------------------------
709
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
710
+ -----------------------------------------------------------------
711
+  (0.1ms) rollback transaction
712
+  (0.1ms) begin transaction
713
+ ----------------------------------------------------------------------------------------
714
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
715
+ ----------------------------------------------------------------------------------------
716
+  (0.1ms) rollback transaction
717
+  (0.2ms) begin transaction
718
+ -----------------------
719
+ T3RailsTest: test_truth
720
+ -----------------------
721
+  (0.1ms) rollback transaction
722
+  (0.0ms) begin transaction
723
+ ----------------------------------------------------------------------------------------
724
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
725
+ ----------------------------------------------------------------------------------------
726
+  (0.1ms) rollback transaction
727
+  (0.1ms) begin transaction
728
+ -------------------------------------------------------
729
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
730
+ -------------------------------------------------------
731
+  (0.1ms) rollback transaction
732
+  (0.1ms) begin transaction
733
+ -----------------------------------------------------------------
734
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
735
+ -----------------------------------------------------------------
736
+  (0.1ms) rollback transaction
737
+  (0.1ms) begin transaction
738
+ ----------------------------------------------------
739
+ BootstrapGeneratorTest: test_directories_are_created
740
+ ----------------------------------------------------
741
+  (0.1ms) rollback transaction
742
+  (0.2ms) begin transaction
743
+ -------------------------------------------------------
744
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
745
+ -------------------------------------------------------
746
+  (0.1ms) rollback transaction
747
+  (0.1ms) begin transaction
748
+ ----------------------------------------------------------------------------------------
749
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
750
+ ----------------------------------------------------------------------------------------
751
+  (0.2ms) rollback transaction
752
+  (0.1ms) begin transaction
753
+ ----------------------------------------------------
754
+ BootstrapGeneratorTest: test_directories_are_created
755
+ ----------------------------------------------------
756
+  (0.1ms) rollback transaction
757
+  (0.1ms) begin transaction
758
+ -----------------------------------------------------------------
759
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
760
+ -----------------------------------------------------------------
761
+  (0.1ms) rollback transaction
762
+  (0.2ms) begin transaction
763
+ -----------------------
764
+ T3RailsTest: test_truth
765
+ -----------------------
766
+  (0.1ms) rollback transaction
767
+  (0.2ms) begin transaction
768
+ -----------------------
769
+ T3RailsTest: test_truth
770
+ -----------------------
771
+  (0.1ms) rollback transaction
772
+  (0.1ms) begin transaction
773
+ -----------------------------------------------------------------
774
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
775
+ -----------------------------------------------------------------
776
+  (0.1ms) rollback transaction
777
+  (0.1ms) begin transaction
778
+ ----------------------------------------------------
779
+ BootstrapGeneratorTest: test_directories_are_created
780
+ ----------------------------------------------------
781
+  (0.1ms) rollback transaction
782
+  (0.1ms) begin transaction
783
+ ----------------------------------------------------------------------------------------
784
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
785
+ ----------------------------------------------------------------------------------------
786
+  (0.1ms) rollback transaction
787
+  (0.1ms) begin transaction
788
+ -------------------------------------------------------
789
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
790
+ -------------------------------------------------------
791
+  (0.1ms) rollback transaction
792
+  (0.1ms) begin transaction
793
+ ----------------------------------------------------------------------------------------
794
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
795
+ ----------------------------------------------------------------------------------------
796
+  (0.1ms) rollback transaction
797
+  (0.1ms) begin transaction
798
+ -----------------------------------------------------------------
799
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
800
+ -----------------------------------------------------------------
801
+  (0.1ms) rollback transaction
802
+  (0.1ms) begin transaction
803
+ ----------------------------------------------------
804
+ BootstrapGeneratorTest: test_directories_are_created
805
+ ----------------------------------------------------
806
+  (0.1ms) rollback transaction
807
+  (0.1ms) begin transaction
808
+ -------------------------------------------------------
809
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
810
+ -------------------------------------------------------
811
+  (0.1ms) rollback transaction
812
+  (0.1ms) begin transaction
813
+ -----------------------
814
+ T3RailsTest: test_truth
815
+ -----------------------
816
+  (0.0ms) rollback transaction
817
+  (0.1ms) begin transaction
818
+ ----------------------------------------------------------------------------------------
819
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
820
+ ----------------------------------------------------------------------------------------
821
+  (0.2ms) rollback transaction
822
+  (0.1ms) begin transaction
823
+ -------------------------------------------------------
824
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
825
+ -------------------------------------------------------
826
+  (0.1ms) rollback transaction
827
+  (0.1ms) begin transaction
828
+ -----------------------------------------------------------------
829
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
830
+ -----------------------------------------------------------------
831
+  (0.1ms) rollback transaction
832
+  (0.1ms) begin transaction
833
+ ----------------------------------------------------
834
+ BootstrapGeneratorTest: test_directories_are_created
835
+ ----------------------------------------------------
836
+  (0.1ms) rollback transaction
837
+  (0.1ms) begin transaction
838
+ -----------------------
839
+ T3RailsTest: test_truth
840
+ -----------------------
841
+  (0.1ms) rollback transaction
842
+  (0.2ms) begin transaction
843
+ ----------------------------------------------------------------------------------------
844
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
845
+ ----------------------------------------------------------------------------------------
846
+  (0.1ms) rollback transaction
847
+  (0.5ms) begin transaction
848
+ ----------------------------------------------------
849
+ BootstrapGeneratorTest: test_directories_are_created
850
+ ----------------------------------------------------
851
+  (0.1ms) rollback transaction
852
+  (0.1ms) begin transaction
853
+ -------------------------------------------------------
854
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
855
+ -------------------------------------------------------
856
+  (0.1ms) rollback transaction
857
+  (0.1ms) begin transaction
858
+ -----------------------------------------------------------------
859
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
860
+ -----------------------------------------------------------------
861
+  (0.1ms) rollback transaction
862
+  (0.1ms) begin transaction
863
+ -----------------------
864
+ T3RailsTest: test_truth
865
+ -----------------------
866
+  (0.1ms) rollback transaction
867
+  (0.2ms) begin transaction
868
+ -------------------------------------------------------
869
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
870
+ -------------------------------------------------------
871
+  (0.1ms) rollback transaction
872
+  (0.1ms) begin transaction
873
+ ----------------------------------------------------
874
+ BootstrapGeneratorTest: test_directories_are_created
875
+ ----------------------------------------------------
876
+  (0.1ms) rollback transaction
877
+  (0.1ms) begin transaction
878
+ ----------------------------------------------------------------------------------------
879
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
880
+ ----------------------------------------------------------------------------------------
881
+  (0.1ms) rollback transaction
882
+  (0.0ms) begin transaction
883
+ -----------------------------------------------------------------
884
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
885
+ -----------------------------------------------------------------
886
+  (0.1ms) rollback transaction
887
+  (0.1ms) begin transaction
888
+ -----------------------
889
+ T3RailsTest: test_truth
890
+ -----------------------
891
+  (0.0ms) rollback transaction
892
+  (0.2ms) begin transaction
893
+ -------------------------------------------------------
894
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
895
+ -------------------------------------------------------
896
+  (0.1ms) rollback transaction
897
+  (0.1ms) begin transaction
898
+ ----------------------------------------------------
899
+ BootstrapGeneratorTest: test_directories_are_created
900
+ ----------------------------------------------------
901
+  (0.2ms) rollback transaction
902
+  (0.1ms) begin transaction
903
+ ----------------------------------------------------------------------------------------
904
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
905
+ ----------------------------------------------------------------------------------------
906
+  (0.1ms) rollback transaction
907
+  (0.1ms) begin transaction
908
+ -----------------------------------------------------------------
909
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
910
+ -----------------------------------------------------------------
911
+  (0.1ms) rollback transaction
912
+  (0.1ms) begin transaction
913
+ -----------------------
914
+ T3RailsTest: test_truth
915
+ -----------------------
916
+  (0.1ms) rollback transaction
917
+  (0.2ms) begin transaction
918
+ -------------------------------------------------------
919
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
920
+ -------------------------------------------------------
921
+  (0.1ms) rollback transaction
922
+  (0.1ms) begin transaction
923
+ -----------------------------------------------------------------
924
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
925
+ -----------------------------------------------------------------
926
+  (0.1ms) rollback transaction
927
+  (0.1ms) begin transaction
928
+ ----------------------------------------------------------------------------------------
929
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
930
+ ----------------------------------------------------------------------------------------
931
+  (0.1ms) rollback transaction
932
+  (0.1ms) begin transaction
933
+ ----------------------------------------------------
934
+ BootstrapGeneratorTest: test_directories_are_created
935
+ ----------------------------------------------------
936
+  (0.4ms) rollback transaction
937
+  (0.1ms) begin transaction
938
+ -----------------------
939
+ T3RailsTest: test_truth
940
+ -----------------------
941
+  (0.1ms) rollback transaction
942
+  (0.1ms) begin transaction
943
+ -----------------------------------------------------------------
944
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
945
+ -----------------------------------------------------------------
946
+  (0.1ms) rollback transaction
947
+  (0.1ms) begin transaction
948
+ ----------------------------------------------------
949
+ BootstrapGeneratorTest: test_directories_are_created
950
+ ----------------------------------------------------
951
+  (0.1ms) rollback transaction
952
+  (0.1ms) begin transaction
953
+ -------------------------------------------------------
954
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
955
+ -------------------------------------------------------
956
+  (0.1ms) rollback transaction
957
+  (0.1ms) begin transaction
958
+ ----------------------------------------------------------------------------------------
959
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
960
+ ----------------------------------------------------------------------------------------
961
+  (0.1ms) rollback transaction
962
+  (0.1ms) begin transaction
963
+ -----------------------
964
+ T3RailsTest: test_truth
965
+ -----------------------
966
+  (0.1ms) rollback transaction
967
+  (0.2ms) begin transaction
968
+ -----------------------
969
+ T3RailsTest: test_truth
970
+ -----------------------
971
+  (0.1ms) rollback transaction
972
+  (0.1ms) begin transaction
973
+ -------------------------------------------------------
974
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
975
+ -------------------------------------------------------
976
+  (0.1ms) rollback transaction
977
+  (0.1ms) begin transaction
978
+ ----------------------------------------------------
979
+ BootstrapGeneratorTest: test_directories_are_created
980
+ ----------------------------------------------------
981
+  (0.1ms) rollback transaction
982
+  (0.1ms) begin transaction
983
+ ----------------------------------------------------------------------------------------
984
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
985
+ ----------------------------------------------------------------------------------------
986
+  (0.1ms) rollback transaction
987
+  (0.1ms) begin transaction
988
+ -----------------------------------------------------------------
989
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
990
+ -----------------------------------------------------------------
991
+  (0.2ms) rollback transaction
992
+  (0.1ms) begin transaction
993
+ ------------------------------------------------
994
+ ModuleGeneratorTest: test_module_file_is_created
995
+ ------------------------------------------------
996
+  (0.1ms) rollback transaction
997
+  (0.1ms) begin transaction
998
+ -----------------------
999
+ T3RailsTest: test_truth
1000
+ -----------------------
1001
+  (0.0ms) rollback transaction
1002
+  (0.0ms) begin transaction
1003
+ ------------------------------------------------
1004
+ ModuleGeneratorTest: test_module_file_is_created
1005
+ ------------------------------------------------
1006
+  (0.1ms) rollback transaction
1007
+  (0.1ms) begin transaction
1008
+ ----------------------------------------------------
1009
+ BootstrapGeneratorTest: test_directories_are_created
1010
+ ----------------------------------------------------
1011
+  (0.1ms) rollback transaction
1012
+  (0.1ms) begin transaction
1013
+ ----------------------------------------------------------------------------------------
1014
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1015
+ ----------------------------------------------------------------------------------------
1016
+  (0.1ms) rollback transaction
1017
+  (0.0ms) begin transaction
1018
+ -------------------------------------------------------
1019
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1020
+ -------------------------------------------------------
1021
+  (0.1ms) rollback transaction
1022
+  (0.1ms) begin transaction
1023
+ -----------------------------------------------------------------
1024
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1025
+ -----------------------------------------------------------------
1026
+  (0.1ms) rollback transaction
1027
+  (0.1ms) begin transaction
1028
+ -----------------------------------------------------------------
1029
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1030
+ -----------------------------------------------------------------
1031
+  (0.1ms) rollback transaction
1032
+  (0.1ms) begin transaction
1033
+ ----------------------------------------------------------------------------------------
1034
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1035
+ ----------------------------------------------------------------------------------------
1036
+  (0.1ms) rollback transaction
1037
+  (0.1ms) begin transaction
1038
+ ----------------------------------------------------
1039
+ BootstrapGeneratorTest: test_directories_are_created
1040
+ ----------------------------------------------------
1041
+  (0.1ms) rollback transaction
1042
+  (0.1ms) begin transaction
1043
+ -------------------------------------------------------
1044
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1045
+ -------------------------------------------------------
1046
+  (0.1ms) rollback transaction
1047
+  (0.1ms) begin transaction
1048
+ -----------------------
1049
+ T3RailsTest: test_truth
1050
+ -----------------------
1051
+  (0.1ms) rollback transaction
1052
+  (0.1ms) begin transaction
1053
+ ------------------------------------------------
1054
+ ModuleGeneratorTest: test_module_file_is_created
1055
+ ------------------------------------------------
1056
+  (0.1ms) rollback transaction
1057
+  (0.1ms) begin transaction
1058
+ ------------------------------------------------
1059
+ ModuleGeneratorTest: test_module_file_is_created
1060
+ ------------------------------------------------
1061
+  (0.1ms) rollback transaction
1062
+  (0.0ms) begin transaction
1063
+ -----------------------
1064
+ T3RailsTest: test_truth
1065
+ -----------------------
1066
+  (0.0ms) rollback transaction
1067
+  (0.1ms) begin transaction
1068
+ -------------------------------------------------------
1069
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1070
+ -------------------------------------------------------
1071
+  (0.1ms) rollback transaction
1072
+  (0.1ms) begin transaction
1073
+ ----------------------------------------------------------------------------------------
1074
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1075
+ ----------------------------------------------------------------------------------------
1076
+  (0.1ms) rollback transaction
1077
+  (0.1ms) begin transaction
1078
+ ----------------------------------------------------
1079
+ BootstrapGeneratorTest: test_directories_are_created
1080
+ ----------------------------------------------------
1081
+  (0.1ms) rollback transaction
1082
+  (0.1ms) begin transaction
1083
+ -----------------------------------------------------------------
1084
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1085
+ -----------------------------------------------------------------
1086
+  (0.1ms) rollback transaction
1087
+  (0.2ms) begin transaction
1088
+ -------------------------------------------------------
1089
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1090
+ -------------------------------------------------------
1091
+  (0.1ms) rollback transaction
1092
+  (0.0ms) begin transaction
1093
+ ----------------------------------------------------------------------------------------
1094
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1095
+ ----------------------------------------------------------------------------------------
1096
+  (0.1ms) rollback transaction
1097
+  (0.0ms) begin transaction
1098
+ ----------------------------------------------------
1099
+ BootstrapGeneratorTest: test_directories_are_created
1100
+ ----------------------------------------------------
1101
+  (0.1ms) rollback transaction
1102
+  (0.1ms) begin transaction
1103
+ -----------------------------------------------------------------
1104
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1105
+ -----------------------------------------------------------------
1106
+  (0.1ms) rollback transaction
1107
+  (0.1ms) begin transaction
1108
+ ------------------------------------------------
1109
+ ModuleGeneratorTest: test_module_file_is_created
1110
+ ------------------------------------------------
1111
+  (0.1ms) rollback transaction
1112
+  (0.1ms) begin transaction
1113
+ -----------------------
1114
+ T3RailsTest: test_truth
1115
+ -----------------------
1116
+  (0.0ms) rollback transaction
1117
+  (0.1ms) begin transaction
1118
+ -----------------------
1119
+ T3RailsTest: test_truth
1120
+ -----------------------
1121
+  (0.0ms) rollback transaction
1122
+  (0.1ms) begin transaction
1123
+ ------------------------------------------------
1124
+ ModuleGeneratorTest: test_module_file_is_created
1125
+ ------------------------------------------------
1126
+  (0.1ms) rollback transaction
1127
+  (0.1ms) begin transaction
1128
+ ----------------------------------------------------
1129
+ BootstrapGeneratorTest: test_directories_are_created
1130
+ ----------------------------------------------------
1131
+  (0.1ms) rollback transaction
1132
+  (0.1ms) begin transaction
1133
+ -------------------------------------------------------
1134
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1135
+ -------------------------------------------------------
1136
+  (0.1ms) rollback transaction
1137
+  (0.1ms) begin transaction
1138
+ ----------------------------------------------------------------------------------------
1139
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1140
+ ----------------------------------------------------------------------------------------
1141
+  (0.1ms) rollback transaction
1142
+  (0.1ms) begin transaction
1143
+ -----------------------------------------------------------------
1144
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1145
+ -----------------------------------------------------------------
1146
+  (0.1ms) rollback transaction
1147
+  (0.2ms) begin transaction
1148
+ -----------------------
1149
+ T3RailsTest: test_truth
1150
+ -----------------------
1151
+  (0.1ms) rollback transaction
1152
+  (0.1ms) begin transaction
1153
+ -----------------------------------------------------------------
1154
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1155
+ -----------------------------------------------------------------
1156
+  (0.1ms) rollback transaction
1157
+  (0.1ms) begin transaction
1158
+ ----------------------------------------------------------------------------------------
1159
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1160
+ ----------------------------------------------------------------------------------------
1161
+  (0.1ms) rollback transaction
1162
+  (0.0ms) begin transaction
1163
+ ----------------------------------------------------
1164
+ BootstrapGeneratorTest: test_directories_are_created
1165
+ ----------------------------------------------------
1166
+  (0.1ms) rollback transaction
1167
+  (0.1ms) begin transaction
1168
+ -------------------------------------------------------
1169
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1170
+ -------------------------------------------------------
1171
+  (0.1ms) rollback transaction
1172
+  (0.1ms) begin transaction
1173
+ ------------------------------------------------
1174
+ ModuleGeneratorTest: test_module_file_is_created
1175
+ ------------------------------------------------
1176
+  (0.1ms) rollback transaction
1177
+  (0.1ms) begin transaction
1178
+ -----------------------
1179
+ T3RailsTest: test_truth
1180
+ -----------------------
1181
+  (0.0ms) rollback transaction
1182
+  (0.0ms) begin transaction
1183
+ ------------------------------------------------
1184
+ ModuleGeneratorTest: test_module_file_is_created
1185
+ ------------------------------------------------
1186
+  (0.1ms) rollback transaction
1187
+  (0.0ms) begin transaction
1188
+ ----------------------------------------------------------------------------------------
1189
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1190
+ ----------------------------------------------------------------------------------------
1191
+  (0.1ms) rollback transaction
1192
+  (0.1ms) begin transaction
1193
+ -------------------------------------------------------
1194
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1195
+ -------------------------------------------------------
1196
+  (0.1ms) rollback transaction
1197
+  (0.1ms) begin transaction
1198
+ -----------------------------------------------------------------
1199
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1200
+ -----------------------------------------------------------------
1201
+  (0.1ms) rollback transaction
1202
+  (0.1ms) begin transaction
1203
+ ----------------------------------------------------
1204
+ BootstrapGeneratorTest: test_directories_are_created
1205
+ ----------------------------------------------------
1206
+  (0.1ms) rollback transaction
1207
+  (0.1ms) begin transaction
1208
+ ------------------------------------------------
1209
+ ModuleGeneratorTest: test_module_file_is_created
1210
+ ------------------------------------------------
1211
+  (0.1ms) rollback transaction
1212
+  (0.1ms) begin transaction
1213
+ -----------------------------------------------------------------
1214
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1215
+ -----------------------------------------------------------------
1216
+  (0.1ms) rollback transaction
1217
+  (0.1ms) begin transaction
1218
+ ----------------------------------------------------------------------------------------
1219
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1220
+ ----------------------------------------------------------------------------------------
1221
+  (0.1ms) rollback transaction
1222
+  (0.1ms) begin transaction
1223
+ ----------------------------------------------------
1224
+ BootstrapGeneratorTest: test_directories_are_created
1225
+ ----------------------------------------------------
1226
+  (0.1ms) rollback transaction
1227
+  (0.1ms) begin transaction
1228
+ -------------------------------------------------------
1229
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1230
+ -------------------------------------------------------
1231
+  (0.1ms) rollback transaction
1232
+  (0.1ms) begin transaction
1233
+ -----------------------
1234
+ T3RailsTest: test_truth
1235
+ -----------------------
1236
+  (0.1ms) rollback transaction
1237
+  (0.2ms) begin transaction
1238
+ -------------------------------------------------------
1239
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1240
+ -------------------------------------------------------
1241
+  (0.1ms) rollback transaction
1242
+  (0.1ms) begin transaction
1243
+ ----------------------------------------------------------------------------------------
1244
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1245
+ ----------------------------------------------------------------------------------------
1246
+  (0.1ms) rollback transaction
1247
+  (0.1ms) begin transaction
1248
+ -----------------------------------------------------------------
1249
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1250
+ -----------------------------------------------------------------
1251
+  (0.1ms) rollback transaction
1252
+  (0.0ms) begin transaction
1253
+ ----------------------------------------------------
1254
+ BootstrapGeneratorTest: test_directories_are_created
1255
+ ----------------------------------------------------
1256
+  (0.1ms) rollback transaction
1257
+  (0.1ms) begin transaction
1258
+ -----------------------
1259
+ T3RailsTest: test_truth
1260
+ -----------------------
1261
+  (0.0ms) rollback transaction
1262
+  (0.1ms) begin transaction
1263
+ ------------------------------------------------
1264
+ ModuleGeneratorTest: test_module_file_is_created
1265
+ ------------------------------------------------
1266
+  (0.1ms) rollback transaction
1267
+  (0.1ms) begin transaction
1268
+ -------------------------------------------------------
1269
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1270
+ -------------------------------------------------------
1271
+  (0.1ms) rollback transaction
1272
+  (0.1ms) begin transaction
1273
+ ----------------------------------------------------
1274
+ BootstrapGeneratorTest: test_directories_are_created
1275
+ ----------------------------------------------------
1276
+  (0.2ms) rollback transaction
1277
+  (0.1ms) begin transaction
1278
+ ----------------------------------------------------------------------------------------
1279
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1280
+ ----------------------------------------------------------------------------------------
1281
+  (0.1ms) rollback transaction
1282
+  (0.1ms) begin transaction
1283
+ -----------------------------------------------------------------
1284
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1285
+ -----------------------------------------------------------------
1286
+  (0.1ms) rollback transaction
1287
+  (0.1ms) begin transaction
1288
+ ------------------------------------------------
1289
+ ModuleGeneratorTest: test_module_file_is_created
1290
+ ------------------------------------------------
1291
+  (0.1ms) rollback transaction
1292
+  (0.1ms) begin transaction
1293
+ -----------------------
1294
+ T3RailsTest: test_truth
1295
+ -----------------------
1296
+  (0.1ms) rollback transaction
1297
+  (0.2ms) begin transaction
1298
+ -----------------------------------------------------------------
1299
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1300
+ -----------------------------------------------------------------
1301
+  (0.1ms) rollback transaction
1302
+  (0.2ms) begin transaction
1303
+ ----------------------------------------------------------------------------------------
1304
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1305
+ ----------------------------------------------------------------------------------------
1306
+  (0.1ms) rollback transaction
1307
+  (0.1ms) begin transaction
1308
+ ----------------------------------------------------
1309
+ BootstrapGeneratorTest: test_directories_are_created
1310
+ ----------------------------------------------------
1311
+  (0.1ms) rollback transaction
1312
+  (0.1ms) begin transaction
1313
+ -------------------------------------------------------
1314
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1315
+ -------------------------------------------------------
1316
+  (0.1ms) rollback transaction
1317
+  (0.1ms) begin transaction
1318
+ ------------------------------------------------
1319
+ ModuleGeneratorTest: test_module_file_is_created
1320
+ ------------------------------------------------
1321
+  (0.1ms) rollback transaction
1322
+  (0.1ms) begin transaction
1323
+ -----------------------
1324
+ T3RailsTest: test_truth
1325
+ -----------------------
1326
+  (0.1ms) rollback transaction
1327
+  (0.2ms) begin transaction
1328
+ ------------------------------------------------
1329
+ ModuleGeneratorTest: test_module_file_is_created
1330
+ ------------------------------------------------
1331
+  (0.1ms) rollback transaction
1332
+  (0.2ms) begin transaction
1333
+ ------------------------------------------------
1334
+ ModuleGeneratorTest: test_module_file_is_created
1335
+ ------------------------------------------------
1336
+  (0.1ms) rollback transaction
1337
+  (0.1ms) begin transaction
1338
+ ------------------------------------------------
1339
+ ModuleGeneratorTest: test_module_file_is_created
1340
+ ------------------------------------------------
1341
+  (0.1ms) rollback transaction
1342
+  (0.1ms) begin transaction
1343
+ ------------------------------------------------
1344
+ ModuleGeneratorTest: test_module_file_is_created
1345
+ ------------------------------------------------
1346
+  (0.1ms) rollback transaction
1347
+  (0.2ms) begin transaction
1348
+ ------------------------------------------------
1349
+ ModuleGeneratorTest: test_module_file_is_created
1350
+ ------------------------------------------------
1351
+  (0.1ms) rollback transaction
1352
+  (0.1ms) begin transaction
1353
+ ------------------------------------------------
1354
+ ModuleGeneratorTest: test_module_file_is_created
1355
+ ------------------------------------------------
1356
+  (0.1ms) rollback transaction
1357
+  (0.2ms) begin transaction
1358
+ ------------------------------------------------
1359
+ ModuleGeneratorTest: test_module_file_is_created
1360
+ ------------------------------------------------
1361
+  (0.1ms) rollback transaction
1362
+  (0.1ms) begin transaction
1363
+ ------------------------------------------------
1364
+ ModuleGeneratorTest: test_module_file_is_created
1365
+ ------------------------------------------------
1366
+  (0.1ms) rollback transaction
1367
+  (0.1ms) begin transaction
1368
+ ------------------------------------------------
1369
+ ModuleGeneratorTest: test_module_file_is_created
1370
+ ------------------------------------------------
1371
+  (0.1ms) rollback transaction
1372
+  (0.2ms) begin transaction
1373
+ -----------------------
1374
+ T3RailsTest: test_truth
1375
+ -----------------------
1376
+  (0.1ms) rollback transaction
1377
+  (0.1ms) begin transaction
1378
+ ------------------------------------------------
1379
+ ModuleGeneratorTest: test_module_file_is_created
1380
+ ------------------------------------------------
1381
+  (0.1ms) rollback transaction
1382
+  (0.1ms) begin transaction
1383
+ -----------------------------------------------------------------
1384
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1385
+ -----------------------------------------------------------------
1386
+  (0.1ms) rollback transaction
1387
+  (0.1ms) begin transaction
1388
+ ----------------------------------------------------
1389
+ BootstrapGeneratorTest: test_directories_are_created
1390
+ ----------------------------------------------------
1391
+  (0.1ms) rollback transaction
1392
+  (0.1ms) begin transaction
1393
+ ----------------------------------------------------------------------------------------
1394
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1395
+ ----------------------------------------------------------------------------------------
1396
+  (0.1ms) rollback transaction
1397
+  (0.1ms) begin transaction
1398
+ -------------------------------------------------------
1399
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1400
+ -------------------------------------------------------
1401
+  (0.1ms) rollback transaction
1402
+  (0.2ms) begin transaction
1403
+ ------------------------------------------------
1404
+ ModuleGeneratorTest: test_module_file_is_created
1405
+ ------------------------------------------------
1406
+  (0.1ms) rollback transaction
1407
+  (0.1ms) begin transaction
1408
+ -----------------------
1409
+ T3RailsTest: test_truth
1410
+ -----------------------
1411
+  (0.1ms) rollback transaction
1412
+  (0.1ms) begin transaction
1413
+ -----------------------------------------------------------------
1414
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1415
+ -----------------------------------------------------------------
1416
+  (0.1ms) rollback transaction
1417
+  (0.1ms) begin transaction
1418
+ ----------------------------------------------------
1419
+ BootstrapGeneratorTest: test_directories_are_created
1420
+ ----------------------------------------------------
1421
+  (0.1ms) rollback transaction
1422
+  (0.1ms) begin transaction
1423
+ ----------------------------------------------------------------------------------------
1424
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1425
+ ----------------------------------------------------------------------------------------
1426
+  (0.1ms) rollback transaction
1427
+  (0.1ms) begin transaction
1428
+ -------------------------------------------------------
1429
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1430
+ -------------------------------------------------------
1431
+  (0.1ms) rollback transaction
1432
+  (0.1ms) begin transaction
1433
+ ------------------------------------------------
1434
+ ModuleGeneratorTest: test_module_file_is_created
1435
+ ------------------------------------------------
1436
+  (0.2ms) rollback transaction
1437
+  (0.1ms) begin transaction
1438
+ -----------------------------------------------------------------
1439
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1440
+ -----------------------------------------------------------------
1441
+  (0.1ms) rollback transaction
1442
+  (0.1ms) begin transaction
1443
+ ----------------------------------------------------------------------------------------
1444
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1445
+ ----------------------------------------------------------------------------------------
1446
+  (0.1ms) rollback transaction
1447
+  (0.1ms) begin transaction
1448
+ ----------------------------------------------------
1449
+ BootstrapGeneratorTest: test_directories_are_created
1450
+ ----------------------------------------------------
1451
+  (0.1ms) rollback transaction
1452
+  (0.1ms) begin transaction
1453
+ -------------------------------------------------------
1454
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1455
+ -------------------------------------------------------
1456
+  (0.1ms) rollback transaction
1457
+  (0.1ms) begin transaction
1458
+ -----------------------
1459
+ T3RailsTest: test_truth
1460
+ -----------------------
1461
+  (0.1ms) rollback transaction
1462
+  (0.2ms) begin transaction
1463
+ -------------------------------------------------------
1464
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1465
+ -------------------------------------------------------
1466
+  (0.1ms) rollback transaction
1467
+  (0.1ms) begin transaction
1468
+ ----------------------------------------------------
1469
+ BootstrapGeneratorTest: test_directories_are_created
1470
+ ----------------------------------------------------
1471
+  (0.1ms) rollback transaction
1472
+  (0.0ms) begin transaction
1473
+ ----------------------------------------------------------------------------------------
1474
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1475
+ ----------------------------------------------------------------------------------------
1476
+  (0.1ms) rollback transaction
1477
+  (0.0ms) begin transaction
1478
+ -----------------------------------------------------------------
1479
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1480
+ -----------------------------------------------------------------
1481
+  (0.1ms) rollback transaction
1482
+  (0.1ms) begin transaction
1483
+ ------------------------------------------------
1484
+ ModuleGeneratorTest: test_module_file_is_created
1485
+ ------------------------------------------------
1486
+  (0.1ms) rollback transaction
1487
+  (0.1ms) begin transaction
1488
+ -----------------------
1489
+ T3RailsTest: test_truth
1490
+ -----------------------
1491
+  (0.1ms) rollback transaction
1492
+  (0.1ms) begin transaction
1493
+ ------------------------------------------------
1494
+ ModuleGeneratorTest: test_module_file_is_created
1495
+ ------------------------------------------------
1496
+  (0.2ms) rollback transaction
1497
+  (0.1ms) begin transaction
1498
+ -----------------------
1499
+ T3RailsTest: test_truth
1500
+ -----------------------
1501
+  (0.0ms) rollback transaction
1502
+  (0.0ms) begin transaction
1503
+ -----------------------------------------------------------------
1504
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1505
+ -----------------------------------------------------------------
1506
+  (0.1ms) rollback transaction
1507
+  (0.1ms) begin transaction
1508
+ ----------------------------------------------------------------------------------------
1509
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1510
+ ----------------------------------------------------------------------------------------
1511
+  (0.1ms) rollback transaction
1512
+  (0.1ms) begin transaction
1513
+ ----------------------------------------------------
1514
+ BootstrapGeneratorTest: test_directories_are_created
1515
+ ----------------------------------------------------
1516
+  (0.1ms) rollback transaction
1517
+  (0.1ms) begin transaction
1518
+ -------------------------------------------------------
1519
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1520
+ -------------------------------------------------------
1521
+  (0.1ms) rollback transaction
1522
+  (0.1ms) begin transaction
1523
+ -----------------------------------------------------------------
1524
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1525
+ -----------------------------------------------------------------
1526
+  (0.1ms) rollback transaction
1527
+  (0.1ms) begin transaction
1528
+ ----------------------------------------------------------------------------------------
1529
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1530
+ ----------------------------------------------------------------------------------------
1531
+  (0.1ms) rollback transaction
1532
+  (0.1ms) begin transaction
1533
+ ----------------------------------------------------
1534
+ BootstrapGeneratorTest: test_directories_are_created
1535
+ ----------------------------------------------------
1536
+  (0.1ms) rollback transaction
1537
+  (0.2ms) begin transaction
1538
+ -------------------------------------------------------
1539
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1540
+ -------------------------------------------------------
1541
+  (0.1ms) rollback transaction
1542
+  (0.1ms) begin transaction
1543
+ ------------------------------------------------
1544
+ ModuleGeneratorTest: test_module_file_is_created
1545
+ ------------------------------------------------
1546
+  (0.1ms) rollback transaction
1547
+  (0.1ms) begin transaction
1548
+ -----------------------
1549
+ T3RailsTest: test_truth
1550
+ -----------------------
1551
+  (0.1ms) rollback transaction
1552
+  (0.1ms) begin transaction
1553
+ -------------------------------------------------------
1554
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1555
+ -------------------------------------------------------
1556
+  (0.1ms) rollback transaction
1557
+  (0.1ms) begin transaction
1558
+ ----------------------------------------------------
1559
+ BootstrapGeneratorTest: test_directories_are_created
1560
+ ----------------------------------------------------
1561
+  (0.1ms) rollback transaction
1562
+  (0.1ms) begin transaction
1563
+ ----------------------------------------------------------------------------------------
1564
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1565
+ ----------------------------------------------------------------------------------------
1566
+  (0.1ms) rollback transaction
1567
+  (0.1ms) begin transaction
1568
+ -----------------------------------------------------------------
1569
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1570
+ -----------------------------------------------------------------
1571
+  (0.1ms) rollback transaction
1572
+  (0.1ms) begin transaction
1573
+ ------------------------------------------------
1574
+ ModuleGeneratorTest: test_module_file_is_created
1575
+ ------------------------------------------------
1576
+  (0.1ms) rollback transaction
1577
+  (0.1ms) begin transaction
1578
+ -----------------------
1579
+ T3RailsTest: test_truth
1580
+ -----------------------
1581
+  (0.1ms) rollback transaction
1582
+  (0.1ms) begin transaction
1583
+ -------------------------------------------------------
1584
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1585
+ -------------------------------------------------------
1586
+  (0.1ms) rollback transaction
1587
+  (0.1ms) begin transaction
1588
+ ----------------------------------------------------------------------------------------
1589
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1590
+ ----------------------------------------------------------------------------------------
1591
+  (0.1ms) rollback transaction
1592
+  (0.0ms) begin transaction
1593
+ -----------------------------------------------------------------
1594
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1595
+ -----------------------------------------------------------------
1596
+  (0.1ms) rollback transaction
1597
+  (0.0ms) begin transaction
1598
+ ----------------------------------------------------
1599
+ BootstrapGeneratorTest: test_directories_are_created
1600
+ ----------------------------------------------------
1601
+  (0.1ms) rollback transaction
1602
+  (0.1ms) begin transaction
1603
+ ------------------------------------------------
1604
+ ModuleGeneratorTest: test_module_file_is_created
1605
+ ------------------------------------------------
1606
+  (0.1ms) rollback transaction
1607
+  (0.1ms) begin transaction
1608
+ -----------------------
1609
+ T3RailsTest: test_truth
1610
+ -----------------------
1611
+  (0.1ms) rollback transaction
1612
+  (0.1ms) begin transaction
1613
+ -----------------------
1614
+ T3RailsTest: test_truth
1615
+ -----------------------
1616
+  (0.1ms) rollback transaction
1617
+  (0.1ms) begin transaction
1618
+ ----------------------------------------------------------------------------------------
1619
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1620
+ ----------------------------------------------------------------------------------------
1621
+  (0.1ms) rollback transaction
1622
+  (0.1ms) begin transaction
1623
+ -------------------------------------------------------
1624
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1625
+ -------------------------------------------------------
1626
+  (0.1ms) rollback transaction
1627
+  (0.1ms) begin transaction
1628
+ ----------------------------------------------------
1629
+ BootstrapGeneratorTest: test_directories_are_created
1630
+ ----------------------------------------------------
1631
+  (0.1ms) rollback transaction
1632
+  (0.1ms) begin transaction
1633
+ -----------------------------------------------------------------
1634
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1635
+ -----------------------------------------------------------------
1636
+  (0.2ms) rollback transaction
1637
+  (0.1ms) begin transaction
1638
+ ------------------------------------------------
1639
+ ModuleGeneratorTest: test_module_file_is_created
1640
+ ------------------------------------------------
1641
+  (0.1ms) rollback transaction
1642
+  (0.2ms) begin transaction
1643
+ -----------------------
1644
+ T3RailsTest: test_truth
1645
+ -----------------------
1646
+  (0.1ms) rollback transaction
1647
+  (0.0ms) begin transaction
1648
+ ----------------------------------------------------------------------------------------
1649
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1650
+ ----------------------------------------------------------------------------------------
1651
+  (0.1ms) rollback transaction
1652
+  (0.1ms) begin transaction
1653
+ -------------------------------------------------------
1654
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1655
+ -------------------------------------------------------
1656
+  (0.1ms) rollback transaction
1657
+  (0.1ms) begin transaction
1658
+ ----------------------------------------------------
1659
+ BootstrapGeneratorTest: test_directories_are_created
1660
+ ----------------------------------------------------
1661
+  (0.1ms) rollback transaction
1662
+  (0.1ms) begin transaction
1663
+ -----------------------------------------------------------------
1664
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1665
+ -----------------------------------------------------------------
1666
+  (0.1ms) rollback transaction
1667
+  (0.1ms) begin transaction
1668
+ ------------------------------------------------
1669
+ ModuleGeneratorTest: test_module_file_is_created
1670
+ ------------------------------------------------
1671
+  (0.1ms) rollback transaction
1672
+  (0.1ms) begin transaction
1673
+ ------------------------------------------------
1674
+ ModuleGeneratorTest: test_module_file_is_created
1675
+ ------------------------------------------------
1676
+  (0.1ms) rollback transaction
1677
+  (0.1ms) begin transaction
1678
+ -----------------------------------------------------------------
1679
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1680
+ -----------------------------------------------------------------
1681
+  (0.1ms) rollback transaction
1682
+  (0.1ms) begin transaction
1683
+ ----------------------------------------------------
1684
+ BootstrapGeneratorTest: test_directories_are_created
1685
+ ----------------------------------------------------
1686
+  (0.1ms) rollback transaction
1687
+  (0.2ms) begin transaction
1688
+ -------------------------------------------------------
1689
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1690
+ -------------------------------------------------------
1691
+  (0.1ms) rollback transaction
1692
+  (0.0ms) begin transaction
1693
+ ----------------------------------------------------------------------------------------
1694
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1695
+ ----------------------------------------------------------------------------------------
1696
+  (0.2ms) rollback transaction
1697
+  (0.1ms) begin transaction
1698
+ -----------------------
1699
+ T3RailsTest: test_truth
1700
+ -----------------------
1701
+  (0.0ms) rollback transaction
1702
+  (0.1ms) begin transaction
1703
+ -----------------------
1704
+ T3RailsTest: test_truth
1705
+ -----------------------
1706
+  (0.0ms) rollback transaction
1707
+  (0.0ms) begin transaction
1708
+ -------------------------------------------------------
1709
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1710
+ -------------------------------------------------------
1711
+  (0.1ms) rollback transaction
1712
+  (0.1ms) begin transaction
1713
+ ----------------------------------------------------------------------------------------
1714
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1715
+ ----------------------------------------------------------------------------------------
1716
+  (0.1ms) rollback transaction
1717
+  (0.1ms) begin transaction
1718
+ ----------------------------------------------------
1719
+ BootstrapGeneratorTest: test_directories_are_created
1720
+ ----------------------------------------------------
1721
+  (0.1ms) rollback transaction
1722
+  (0.1ms) begin transaction
1723
+ -----------------------------------------------------------------
1724
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1725
+ -----------------------------------------------------------------
1726
+  (0.1ms) rollback transaction
1727
+  (0.1ms) begin transaction
1728
+ ------------------------------------------------
1729
+ ModuleGeneratorTest: test_module_file_is_created
1730
+ ------------------------------------------------
1731
+  (0.1ms) rollback transaction
1732
+  (0.1ms) begin transaction
1733
+ ------------------------------------------------
1734
+ ModuleGeneratorTest: test_module_file_is_created
1735
+ ------------------------------------------------
1736
+  (0.1ms) rollback transaction
1737
+  (0.0ms) begin transaction
1738
+ -----------------------
1739
+ T3RailsTest: test_truth
1740
+ -----------------------
1741
+  (0.0ms) rollback transaction
1742
+  (0.1ms) begin transaction
1743
+ -------------------------------------------------------
1744
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1745
+ -------------------------------------------------------
1746
+  (0.1ms) rollback transaction
1747
+  (0.1ms) begin transaction
1748
+ ----------------------------------------------------------------------------------------
1749
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1750
+ ----------------------------------------------------------------------------------------
1751
+  (0.1ms) rollback transaction
1752
+  (0.1ms) begin transaction
1753
+ -----------------------------------------------------------------
1754
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1755
+ -----------------------------------------------------------------
1756
+  (0.1ms) rollback transaction
1757
+  (0.1ms) begin transaction
1758
+ ----------------------------------------------------
1759
+ BootstrapGeneratorTest: test_directories_are_created
1760
+ ----------------------------------------------------
1761
+  (0.1ms) rollback transaction
1762
+  (0.2ms) begin transaction
1763
+ ------------------------------------------------
1764
+ ModuleGeneratorTest: test_module_file_is_created
1765
+ ------------------------------------------------
1766
+  (0.1ms) rollback transaction
1767
+  (0.1ms) begin transaction
1768
+ -----------------------------------------------------------------
1769
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1770
+ -----------------------------------------------------------------
1771
+  (0.1ms) rollback transaction
1772
+  (0.1ms) begin transaction
1773
+ ----------------------------------------------------
1774
+ BootstrapGeneratorTest: test_directories_are_created
1775
+ ----------------------------------------------------
1776
+  (0.1ms) rollback transaction
1777
+  (0.1ms) begin transaction
1778
+ ----------------------------------------------------------------------------------------
1779
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1780
+ ----------------------------------------------------------------------------------------
1781
+  (0.1ms) rollback transaction
1782
+  (0.1ms) begin transaction
1783
+ -------------------------------------------------------
1784
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1785
+ -------------------------------------------------------
1786
+  (0.1ms) rollback transaction
1787
+  (0.1ms) begin transaction
1788
+ -----------------------
1789
+ T3RailsTest: test_truth
1790
+ -----------------------
1791
+  (0.1ms) rollback transaction
1792
+  (0.1ms) begin transaction
1793
+ ----------------------------------------------------------------------------------------
1794
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1795
+ ----------------------------------------------------------------------------------------
1796
+  (0.1ms) rollback transaction
1797
+  (0.1ms) begin transaction
1798
+ -----------------------------------------------------------------
1799
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1800
+ -----------------------------------------------------------------
1801
+  (0.1ms) rollback transaction
1802
+  (0.1ms) begin transaction
1803
+ -------------------------------------------------------
1804
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1805
+ -------------------------------------------------------
1806
+  (0.1ms) rollback transaction
1807
+  (0.1ms) begin transaction
1808
+ ----------------------------------------------------
1809
+ BootstrapGeneratorTest: test_directories_are_created
1810
+ ----------------------------------------------------
1811
+  (0.1ms) rollback transaction
1812
+  (0.1ms) begin transaction
1813
+ -----------------------
1814
+ T3RailsTest: test_truth
1815
+ -----------------------
1816
+  (0.0ms) rollback transaction
1817
+  (0.1ms) begin transaction
1818
+ ------------------------------------------------
1819
+ ModuleGeneratorTest: test_module_file_is_created
1820
+ ------------------------------------------------
1821
+  (0.1ms) rollback transaction
1822
+  (0.2ms) begin transaction
1823
+ -----------------------------------------------------------------
1824
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1825
+ -----------------------------------------------------------------
1826
+  (0.1ms) rollback transaction
1827
+  (0.1ms) begin transaction
1828
+ ----------------------------------------------------------------------------------------
1829
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1830
+ ----------------------------------------------------------------------------------------
1831
+  (0.1ms) rollback transaction
1832
+  (0.1ms) begin transaction
1833
+ -------------------------------------------------------
1834
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1835
+ -------------------------------------------------------
1836
+  (0.1ms) rollback transaction
1837
+  (0.1ms) begin transaction
1838
+ ----------------------------------------------------
1839
+ BootstrapGeneratorTest: test_directories_are_created
1840
+ ----------------------------------------------------
1841
+  (0.1ms) rollback transaction
1842
+  (0.1ms) begin transaction
1843
+ -----------------------
1844
+ T3RailsTest: test_truth
1845
+ -----------------------
1846
+  (0.1ms) rollback transaction
1847
+  (0.1ms) begin transaction
1848
+ ------------------------------------------------
1849
+ ModuleGeneratorTest: test_module_file_is_created
1850
+ ------------------------------------------------
1851
+  (0.1ms) rollback transaction
1852
+  (0.1ms) begin transaction
1853
+ ------------------------------------------------
1854
+ ModuleGeneratorTest: test_module_file_is_created
1855
+ ------------------------------------------------
1856
+  (0.1ms) rollback transaction
1857
+  (0.0ms) begin transaction
1858
+ -----------------------
1859
+ T3RailsTest: test_truth
1860
+ -----------------------
1861
+  (0.0ms) rollback transaction
1862
+  (0.0ms) begin transaction
1863
+ ----------------------------------------------------
1864
+ BootstrapGeneratorTest: test_directories_are_created
1865
+ ----------------------------------------------------
1866
+  (0.1ms) rollback transaction
1867
+  (0.1ms) begin transaction
1868
+ ----------------------------------------------------------------------------------------
1869
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1870
+ ----------------------------------------------------------------------------------------
1871
+  (0.1ms) rollback transaction
1872
+  (0.1ms) begin transaction
1873
+ -----------------------------------------------------------------
1874
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1875
+ -----------------------------------------------------------------
1876
+  (0.1ms) rollback transaction
1877
+  (0.1ms) begin transaction
1878
+ -------------------------------------------------------
1879
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1880
+ -------------------------------------------------------
1881
+  (0.1ms) rollback transaction
1882
+  (0.1ms) begin transaction
1883
+ ------------------------------------------------
1884
+ ModuleGeneratorTest: test_module_file_is_created
1885
+ ------------------------------------------------
1886
+  (0.1ms) rollback transaction
1887
+  (0.0ms) begin transaction
1888
+ -----------------------------------------------------------------
1889
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1890
+ -----------------------------------------------------------------
1891
+  (0.1ms) rollback transaction
1892
+  (0.1ms) begin transaction
1893
+ ----------------------------------------------------
1894
+ BootstrapGeneratorTest: test_directories_are_created
1895
+ ----------------------------------------------------
1896
+  (0.1ms) rollback transaction
1897
+  (0.1ms) begin transaction
1898
+ ----------------------------------------------------------------------------------------
1899
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1900
+ ----------------------------------------------------------------------------------------
1901
+  (0.1ms) rollback transaction
1902
+  (0.1ms) begin transaction
1903
+ -------------------------------------------------------
1904
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1905
+ -------------------------------------------------------
1906
+  (0.1ms) rollback transaction
1907
+  (0.1ms) begin transaction
1908
+ -----------------------
1909
+ T3RailsTest: test_truth
1910
+ -----------------------
1911
+  (0.1ms) rollback transaction
1912
+  (0.2ms) begin transaction
1913
+ -------------------------------------------------------
1914
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1915
+ -------------------------------------------------------
1916
+  (0.1ms) rollback transaction
1917
+  (0.1ms) begin transaction
1918
+ -----------------------------------------------------------------
1919
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1920
+ -----------------------------------------------------------------
1921
+  (0.1ms) rollback transaction
1922
+  (0.1ms) begin transaction
1923
+ ----------------------------------------------------
1924
+ BootstrapGeneratorTest: test_directories_are_created
1925
+ ----------------------------------------------------
1926
+  (0.1ms) rollback transaction
1927
+  (0.1ms) begin transaction
1928
+ ----------------------------------------------------------------------------------------
1929
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1930
+ ----------------------------------------------------------------------------------------
1931
+  (0.1ms) rollback transaction
1932
+  (0.1ms) begin transaction
1933
+ -----------------------
1934
+ T3RailsTest: test_truth
1935
+ -----------------------
1936
+  (0.1ms) rollback transaction
1937
+  (0.1ms) begin transaction
1938
+ ------------------------------------------------
1939
+ ModuleGeneratorTest: test_module_file_is_created
1940
+ ------------------------------------------------
1941
+  (0.1ms) rollback transaction
1942
+  (0.2ms) begin transaction
1943
+ ----------------------------------------------------
1944
+ BootstrapGeneratorTest: test_directories_are_created
1945
+ ----------------------------------------------------
1946
+  (0.1ms) rollback transaction
1947
+  (0.1ms) begin transaction
1948
+ -------------------------------------------------------
1949
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1950
+ -------------------------------------------------------
1951
+  (0.1ms) rollback transaction
1952
+  (0.1ms) begin transaction
1953
+ ----------------------------------------------------------------------------------------
1954
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1955
+ ----------------------------------------------------------------------------------------
1956
+  (0.1ms) rollback transaction
1957
+  (0.2ms) begin transaction
1958
+ -----------------------------------------------------------------
1959
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1960
+ -----------------------------------------------------------------
1961
+  (0.1ms) rollback transaction
1962
+  (0.1ms) begin transaction
1963
+ ------------------------------------------------
1964
+ ModuleGeneratorTest: test_module_file_is_created
1965
+ ------------------------------------------------
1966
+  (0.1ms) rollback transaction
1967
+  (0.1ms) begin transaction
1968
+ -----------------------
1969
+ T3RailsTest: test_truth
1970
+ -----------------------
1971
+  (0.1ms) rollback transaction
1972
+  (0.2ms) begin transaction
1973
+ -----------------------------------------------------------------
1974
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
1975
+ -----------------------------------------------------------------
1976
+  (0.1ms) rollback transaction
1977
+  (0.1ms) begin transaction
1978
+ ----------------------------------------------------
1979
+ BootstrapGeneratorTest: test_directories_are_created
1980
+ ----------------------------------------------------
1981
+  (0.1ms) rollback transaction
1982
+  (0.1ms) begin transaction
1983
+ ----------------------------------------------------------------------------------------
1984
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
1985
+ ----------------------------------------------------------------------------------------
1986
+  (0.1ms) rollback transaction
1987
+  (0.1ms) begin transaction
1988
+ -------------------------------------------------------
1989
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
1990
+ -------------------------------------------------------
1991
+  (0.1ms) rollback transaction
1992
+  (0.1ms) begin transaction
1993
+ ------------------------------------------------
1994
+ ModuleGeneratorTest: test_module_file_is_created
1995
+ ------------------------------------------------
1996
+  (0.1ms) rollback transaction
1997
+  (0.1ms) begin transaction
1998
+ -----------------------
1999
+ T3RailsTest: test_truth
2000
+ -----------------------
2001
+  (0.1ms) rollback transaction
2002
+  (0.2ms) begin transaction
2003
+ ----------------------------------------------------------------------------------------
2004
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2005
+ ----------------------------------------------------------------------------------------
2006
+  (0.2ms) rollback transaction
2007
+  (0.1ms) begin transaction
2008
+ -----------------------------------------------------------------
2009
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2010
+ -----------------------------------------------------------------
2011
+  (0.1ms) rollback transaction
2012
+  (0.1ms) begin transaction
2013
+ ----------------------------------------------------
2014
+ BootstrapGeneratorTest: test_directories_are_created
2015
+ ----------------------------------------------------
2016
+  (0.1ms) rollback transaction
2017
+  (0.1ms) begin transaction
2018
+ -------------------------------------------------------
2019
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2020
+ -------------------------------------------------------
2021
+  (0.1ms) rollback transaction
2022
+  (0.1ms) begin transaction
2023
+ -----------------------
2024
+ T3RailsTest: test_truth
2025
+ -----------------------
2026
+  (0.1ms) rollback transaction
2027
+  (0.1ms) begin transaction
2028
+ ------------------------------------------------
2029
+ ModuleGeneratorTest: test_module_file_is_created
2030
+ ------------------------------------------------
2031
+  (0.1ms) rollback transaction
2032
+  (0.1ms) begin transaction
2033
+ -----------------------
2034
+ T3RailsTest: test_truth
2035
+ -----------------------
2036
+  (0.1ms) rollback transaction
2037
+  (0.1ms) begin transaction
2038
+ ------------------------------------------------
2039
+ ModuleGeneratorTest: test_module_file_is_created
2040
+ ------------------------------------------------
2041
+  (0.1ms) rollback transaction
2042
+  (0.1ms) begin transaction
2043
+ -----------------------------------------------------------------
2044
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2045
+ -----------------------------------------------------------------
2046
+  (0.1ms) rollback transaction
2047
+  (0.1ms) begin transaction
2048
+ -------------------------------------------------------
2049
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2050
+ -------------------------------------------------------
2051
+  (0.1ms) rollback transaction
2052
+  (0.1ms) begin transaction
2053
+ ----------------------------------------------------
2054
+ BootstrapGeneratorTest: test_directories_are_created
2055
+ ----------------------------------------------------
2056
+  (0.1ms) rollback transaction
2057
+  (0.1ms) begin transaction
2058
+ ----------------------------------------------------------------------------------------
2059
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2060
+ ----------------------------------------------------------------------------------------
2061
+  (0.1ms) rollback transaction
2062
+  (0.1ms) begin transaction
2063
+ ------------------------------------------------
2064
+ ModuleGeneratorTest: test_module_file_is_created
2065
+ ------------------------------------------------
2066
+  (0.1ms) rollback transaction
2067
+  (0.1ms) begin transaction
2068
+ ----------------------------------------------------------------------------------------
2069
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2070
+ ----------------------------------------------------------------------------------------
2071
+  (0.1ms) rollback transaction
2072
+  (0.1ms) begin transaction
2073
+ -----------------------------------------------------------------
2074
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2075
+ -----------------------------------------------------------------
2076
+  (0.2ms) rollback transaction
2077
+  (0.1ms) begin transaction
2078
+ ----------------------------------------------------
2079
+ BootstrapGeneratorTest: test_directories_are_created
2080
+ ----------------------------------------------------
2081
+  (0.1ms) rollback transaction
2082
+  (0.1ms) begin transaction
2083
+ -------------------------------------------------------
2084
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2085
+ -------------------------------------------------------
2086
+  (0.1ms) rollback transaction
2087
+  (0.1ms) begin transaction
2088
+ -----------------------
2089
+ T3RailsTest: test_truth
2090
+ -----------------------
2091
+  (0.1ms) rollback transaction
2092
+  (0.1ms) begin transaction
2093
+ ---------------------------------------------------
2094
+ BehaviorGeneratorTest: test_service_file_is_created
2095
+ ---------------------------------------------------
2096
+  (0.1ms) rollback transaction
2097
+  (0.1ms) begin transaction
2098
+ ---------------------------------------------------
2099
+ BehaviorGeneratorTest: test_service_file_is_created
2100
+ ---------------------------------------------------
2101
+  (0.1ms) rollback transaction
2102
+  (0.1ms) begin transaction
2103
+ ------------------------------------------------
2104
+ ModuleGeneratorTest: test_module_file_is_created
2105
+ ------------------------------------------------
2106
+  (0.3ms) rollback transaction
2107
+  (0.1ms) begin transaction
2108
+ -------------------------------------------------------
2109
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2110
+ -------------------------------------------------------
2111
+  (0.1ms) rollback transaction
2112
+  (0.1ms) begin transaction
2113
+ ----------------------------------------------------------------------------------------
2114
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2115
+ ----------------------------------------------------------------------------------------
2116
+  (0.1ms) rollback transaction
2117
+  (0.4ms) begin transaction
2118
+ ----------------------------------------------------
2119
+ BootstrapGeneratorTest: test_directories_are_created
2120
+ ----------------------------------------------------
2121
+  (0.1ms) rollback transaction
2122
+  (0.2ms) begin transaction
2123
+ -----------------------------------------------------------------
2124
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2125
+ -----------------------------------------------------------------
2126
+  (0.1ms) rollback transaction
2127
+  (0.1ms) begin transaction
2128
+ -----------------------
2129
+ T3RailsTest: test_truth
2130
+ -----------------------
2131
+  (0.1ms) rollback transaction
2132
+  (0.1ms) begin transaction
2133
+ ---------------------------------------------------
2134
+ BehaviorGeneratorTest: test_service_file_is_created
2135
+ ---------------------------------------------------
2136
+  (0.1ms) rollback transaction
2137
+  (0.1ms) begin transaction
2138
+ -----------------------------------------------------------------
2139
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2140
+ -----------------------------------------------------------------
2141
+  (0.1ms) rollback transaction
2142
+  (0.1ms) begin transaction
2143
+ ----------------------------------------------------------------------------------------
2144
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2145
+ ----------------------------------------------------------------------------------------
2146
+  (0.1ms) rollback transaction
2147
+  (0.1ms) begin transaction
2148
+ -------------------------------------------------------
2149
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2150
+ -------------------------------------------------------
2151
+  (0.1ms) rollback transaction
2152
+  (0.1ms) begin transaction
2153
+ ----------------------------------------------------
2154
+ BootstrapGeneratorTest: test_directories_are_created
2155
+ ----------------------------------------------------
2156
+  (0.1ms) rollback transaction
2157
+  (0.1ms) begin transaction
2158
+ ------------------------------------------------
2159
+ ModuleGeneratorTest: test_module_file_is_created
2160
+ ------------------------------------------------
2161
+  (0.2ms) rollback transaction
2162
+  (0.1ms) begin transaction
2163
+ -----------------------
2164
+ T3RailsTest: test_truth
2165
+ -----------------------
2166
+  (0.1ms) rollback transaction
2167
+  (0.1ms) begin transaction
2168
+ --------------------------------------------------
2169
+ ServiceGeneratorTest: test_service_file_is_created
2170
+ --------------------------------------------------
2171
+  (0.2ms) rollback transaction
2172
+  (0.1ms) begin transaction
2173
+ -----------------------
2174
+ T3RailsTest: test_truth
2175
+ -----------------------
2176
+  (0.1ms) rollback transaction
2177
+  (0.1ms) begin transaction
2178
+ -----------------------------------------------------------------
2179
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2180
+ -----------------------------------------------------------------
2181
+  (0.1ms) rollback transaction
2182
+  (0.1ms) begin transaction
2183
+ ----------------------------------------------------
2184
+ BootstrapGeneratorTest: test_directories_are_created
2185
+ ----------------------------------------------------
2186
+  (0.1ms) rollback transaction
2187
+  (0.1ms) begin transaction
2188
+ ----------------------------------------------------------------------------------------
2189
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2190
+ ----------------------------------------------------------------------------------------
2191
+  (0.1ms) rollback transaction
2192
+  (0.1ms) begin transaction
2193
+ -------------------------------------------------------
2194
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2195
+ -------------------------------------------------------
2196
+  (0.2ms) rollback transaction
2197
+  (0.1ms) begin transaction
2198
+ ------------------------------------------------
2199
+ ModuleGeneratorTest: test_module_file_is_created
2200
+ ------------------------------------------------
2201
+  (0.1ms) rollback transaction
2202
+  (0.2ms) begin transaction
2203
+ ---------------------------------------------------
2204
+ BehaviorGeneratorTest: test_service_file_is_created
2205
+ ---------------------------------------------------
2206
+  (0.1ms) rollback transaction
2207
+  (0.1ms) begin transaction
2208
+ -----------------------------------------------------------------
2209
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2210
+ -----------------------------------------------------------------
2211
+  (0.1ms) rollback transaction
2212
+  (0.1ms) begin transaction
2213
+ ----------------------------------------------------
2214
+ BootstrapGeneratorTest: test_directories_are_created
2215
+ ----------------------------------------------------
2216
+  (0.1ms) rollback transaction
2217
+  (0.1ms) begin transaction
2218
+ ----------------------------------------------------------------------------------------
2219
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2220
+ ----------------------------------------------------------------------------------------
2221
+  (0.1ms) rollback transaction
2222
+  (0.1ms) begin transaction
2223
+ -------------------------------------------------------
2224
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2225
+ -------------------------------------------------------
2226
+  (0.1ms) rollback transaction
2227
+  (0.1ms) begin transaction
2228
+ ---------------------------------------------------
2229
+ BehaviorGeneratorTest: test_service_file_is_created
2230
+ ---------------------------------------------------
2231
+  (0.1ms) rollback transaction
2232
+  (0.1ms) begin transaction
2233
+ -----------------------
2234
+ T3RailsTest: test_truth
2235
+ -----------------------
2236
+  (0.1ms) rollback transaction
2237
+  (0.1ms) begin transaction
2238
+ ------------------------------------------------
2239
+ ModuleGeneratorTest: test_module_file_is_created
2240
+ ------------------------------------------------
2241
+  (0.2ms) rollback transaction
2242
+  (0.1ms) begin transaction
2243
+ --------------------------------------------------
2244
+ ServiceGeneratorTest: test_service_file_is_created
2245
+ --------------------------------------------------
2246
+  (0.1ms) rollback transaction
2247
+  (0.1ms) begin transaction
2248
+ ------------------------------------------------
2249
+ ModuleGeneratorTest: test_module_file_is_created
2250
+ ------------------------------------------------
2251
+  (0.1ms) rollback transaction
2252
+  (0.1ms) begin transaction
2253
+ -----------------------
2254
+ T3RailsTest: test_truth
2255
+ -----------------------
2256
+  (0.1ms) rollback transaction
2257
+  (0.1ms) begin transaction
2258
+ ---------------------------------------------------
2259
+ BehaviorGeneratorTest: test_service_file_is_created
2260
+ ---------------------------------------------------
2261
+  (0.1ms) rollback transaction
2262
+  (0.1ms) begin transaction
2263
+ -------------------------------------------------------
2264
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2265
+ -------------------------------------------------------
2266
+  (0.1ms) rollback transaction
2267
+  (0.2ms) begin transaction
2268
+ ----------------------------------------------------------------------------------------
2269
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2270
+ ----------------------------------------------------------------------------------------
2271
+  (0.2ms) rollback transaction
2272
+  (0.1ms) begin transaction
2273
+ -----------------------------------------------------------------
2274
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2275
+ -----------------------------------------------------------------
2276
+  (0.1ms) rollback transaction
2277
+  (0.1ms) begin transaction
2278
+ ----------------------------------------------------
2279
+ BootstrapGeneratorTest: test_directories_are_created
2280
+ ----------------------------------------------------
2281
+  (0.2ms) rollback transaction
2282
+  (0.1ms) begin transaction
2283
+ --------------------------------------------------
2284
+ ServiceGeneratorTest: test_service_file_is_created
2285
+ --------------------------------------------------
2286
+  (0.1ms) rollback transaction
2287
+  (0.2ms) begin transaction
2288
+ --------------------------------------------------
2289
+ ServiceGeneratorTest: test_service_file_is_created
2290
+ --------------------------------------------------
2291
+  (0.1ms) rollback transaction
2292
+  (0.1ms) begin transaction
2293
+ -------------------------------------------------------
2294
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2295
+ -------------------------------------------------------
2296
+  (0.1ms) rollback transaction
2297
+  (0.1ms) begin transaction
2298
+ ----------------------------------------------------
2299
+ BootstrapGeneratorTest: test_directories_are_created
2300
+ ----------------------------------------------------
2301
+  (0.1ms) rollback transaction
2302
+  (0.1ms) begin transaction
2303
+ ----------------------------------------------------------------------------------------
2304
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2305
+ ----------------------------------------------------------------------------------------
2306
+  (0.1ms) rollback transaction
2307
+  (0.1ms) begin transaction
2308
+ -----------------------------------------------------------------
2309
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2310
+ -----------------------------------------------------------------
2311
+  (0.1ms) rollback transaction
2312
+  (0.1ms) begin transaction
2313
+ ------------------------------------------------
2314
+ ModuleGeneratorTest: test_module_file_is_created
2315
+ ------------------------------------------------
2316
+  (0.1ms) rollback transaction
2317
+  (0.2ms) begin transaction
2318
+ -----------------------
2319
+ T3RailsTest: test_truth
2320
+ -----------------------
2321
+  (0.1ms) rollback transaction
2322
+  (0.1ms) begin transaction
2323
+ ---------------------------------------------------
2324
+ BehaviorGeneratorTest: test_service_file_is_created
2325
+ ---------------------------------------------------
2326
+  (0.1ms) rollback transaction
2327
+  (0.2ms) begin transaction
2328
+ --------------------------------------------
2329
+ T3RailsTest: test_t3.js_is_found_as_an_asset
2330
+ --------------------------------------------
2331
+  (0.1ms) rollback transaction
2332
+  (0.1ms) begin transaction
2333
+ ------------------------------------------------
2334
+ ModuleGeneratorTest: test_module_file_is_created
2335
+ ------------------------------------------------
2336
+  (0.1ms) rollback transaction
2337
+  (0.1ms) begin transaction
2338
+ -----------------------------------------------------------------
2339
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2340
+ -----------------------------------------------------------------
2341
+  (0.1ms) rollback transaction
2342
+  (0.0ms) begin transaction
2343
+ ----------------------------------------------------------------------------------------
2344
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2345
+ ----------------------------------------------------------------------------------------
2346
+  (0.1ms) rollback transaction
2347
+  (0.1ms) begin transaction
2348
+ ----------------------------------------------------
2349
+ BootstrapGeneratorTest: test_directories_are_created
2350
+ ----------------------------------------------------
2351
+  (0.1ms) rollback transaction
2352
+  (0.1ms) begin transaction
2353
+ -------------------------------------------------------
2354
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2355
+ -------------------------------------------------------
2356
+  (0.1ms) rollback transaction
2357
+  (0.1ms) begin transaction
2358
+ --------------------------------------------------
2359
+ ServiceGeneratorTest: test_service_file_is_created
2360
+ --------------------------------------------------
2361
+  (0.1ms) rollback transaction
2362
+  (0.1ms) begin transaction
2363
+ ---------------------------------------------------
2364
+ BehaviorGeneratorTest: test_service_file_is_created
2365
+ ---------------------------------------------------
2366
+  (0.1ms) rollback transaction
2367
+  (0.2ms) begin transaction
2368
+ ------------------------------------------------
2369
+ ModuleGeneratorTest: test_module_file_is_created
2370
+ ------------------------------------------------
2371
+  (0.1ms) rollback transaction
2372
+  (0.1ms) begin transaction
2373
+ ---------------------------------------------------
2374
+ BehaviorGeneratorTest: test_service_file_is_created
2375
+ ---------------------------------------------------
2376
+  (0.1ms) rollback transaction
2377
+  (0.1ms) begin transaction
2378
+ -------------------------------------------------------
2379
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2380
+ -------------------------------------------------------
2381
+  (0.2ms) rollback transaction
2382
+  (0.1ms) begin transaction
2383
+ -----------------------------------------------------------------
2384
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2385
+ -----------------------------------------------------------------
2386
+  (0.1ms) rollback transaction
2387
+  (0.1ms) begin transaction
2388
+ ----------------------------------------------------------------------------------------
2389
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2390
+ ----------------------------------------------------------------------------------------
2391
+  (0.1ms) rollback transaction
2392
+  (0.1ms) begin transaction
2393
+ ----------------------------------------------------
2394
+ BootstrapGeneratorTest: test_directories_are_created
2395
+ ----------------------------------------------------
2396
+  (0.1ms) rollback transaction
2397
+  (0.1ms) begin transaction
2398
+ --------------------------------------------------
2399
+ ServiceGeneratorTest: test_service_file_is_created
2400
+ --------------------------------------------------
2401
+  (0.1ms) rollback transaction
2402
+  (0.1ms) begin transaction
2403
+ -----------------------------------------
2404
+ T3RailsTest: test_t3_is_found_as_an_asset
2405
+ -----------------------------------------
2406
+  (0.1ms) rollback transaction
2407
+  (0.2ms) begin transaction
2408
+ ---------------------------------------------------
2409
+ BehaviorGeneratorTest: test_service_file_is_created
2410
+ ---------------------------------------------------
2411
+  (0.1ms) rollback transaction
2412
+  (0.1ms) begin transaction
2413
+ --------------------------------------------------
2414
+ ServiceGeneratorTest: test_service_file_is_created
2415
+ --------------------------------------------------
2416
+  (0.1ms) rollback transaction
2417
+  (0.1ms) begin transaction
2418
+ ------------------------------------------------
2419
+ ModuleGeneratorTest: test_module_file_is_created
2420
+ ------------------------------------------------
2421
+  (0.1ms) rollback transaction
2422
+  (0.1ms) begin transaction
2423
+ -----------------------------------------
2424
+ T3RailsTest: test_t3_is_found_as_an_asset
2425
+ -----------------------------------------
2426
+  (0.1ms) rollback transaction
2427
+  (0.1ms) begin transaction
2428
+ ----------------------------------------------------------------------------------------
2429
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2430
+ ----------------------------------------------------------------------------------------
2431
+  (0.1ms) rollback transaction
2432
+  (0.2ms) begin transaction
2433
+ ----------------------------------------------------
2434
+ BootstrapGeneratorTest: test_directories_are_created
2435
+ ----------------------------------------------------
2436
+  (0.1ms) rollback transaction
2437
+  (0.1ms) begin transaction
2438
+ -------------------------------------------------------
2439
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2440
+ -------------------------------------------------------
2441
+  (0.1ms) rollback transaction
2442
+  (0.1ms) begin transaction
2443
+ -----------------------------------------------------------------
2444
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2445
+ -----------------------------------------------------------------
2446
+  (0.1ms) rollback transaction
2447
+  (0.1ms) begin transaction
2448
+ ---------------------------------------------------
2449
+ BehaviorGeneratorTest: test_service_file_is_created
2450
+ ---------------------------------------------------
2451
+  (0.1ms) rollback transaction
2452
+  (0.1ms) begin transaction
2453
+ ------------------------------------------------
2454
+ ModuleGeneratorTest: test_module_file_is_created
2455
+ ------------------------------------------------
2456
+  (0.1ms) rollback transaction
2457
+  (0.1ms) begin transaction
2458
+ -----------------------------------------
2459
+ T3RailsTest: test_t3_is_found_as_an_asset
2460
+ -----------------------------------------
2461
+  (0.1ms) rollback transaction
2462
+  (0.1ms) begin transaction
2463
+ ----------------------------------------------------------------------------------------
2464
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2465
+ ----------------------------------------------------------------------------------------
2466
+  (0.1ms) rollback transaction
2467
+  (0.1ms) begin transaction
2468
+ -------------------------------------------------------
2469
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2470
+ -------------------------------------------------------
2471
+  (0.1ms) rollback transaction
2472
+  (0.1ms) begin transaction
2473
+ -----------------------------------------------------------------
2474
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2475
+ -----------------------------------------------------------------
2476
+  (0.1ms) rollback transaction
2477
+  (0.1ms) begin transaction
2478
+ ----------------------------------------------------
2479
+ BootstrapGeneratorTest: test_directories_are_created
2480
+ ----------------------------------------------------
2481
+  (0.1ms) rollback transaction
2482
+  (0.1ms) begin transaction
2483
+ --------------------------------------------------
2484
+ ServiceGeneratorTest: test_service_file_is_created
2485
+ --------------------------------------------------
2486
+  (0.2ms) rollback transaction
2487
+  (0.1ms) begin transaction
2488
+ -------------------------------------------------------
2489
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2490
+ -------------------------------------------------------
2491
+  (0.1ms) rollback transaction
2492
+  (0.1ms) begin transaction
2493
+ ----------------------------------------------------------------------------------------
2494
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2495
+ ----------------------------------------------------------------------------------------
2496
+  (0.1ms) rollback transaction
2497
+  (0.1ms) begin transaction
2498
+ ----------------------------------------------------
2499
+ BootstrapGeneratorTest: test_directories_are_created
2500
+ ----------------------------------------------------
2501
+  (0.1ms) rollback transaction
2502
+  (0.1ms) begin transaction
2503
+ -----------------------------------------------------------------
2504
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2505
+ -----------------------------------------------------------------
2506
+  (0.1ms) rollback transaction
2507
+  (0.1ms) begin transaction
2508
+ -----------------------------------------------------------------
2509
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2510
+ -----------------------------------------------------------------
2511
+  (0.2ms) rollback transaction
2512
+  (0.1ms) begin transaction
2513
+ ----------------------------------------------------------------------------------------
2514
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2515
+ ----------------------------------------------------------------------------------------
2516
+  (0.2ms) rollback transaction
2517
+  (0.1ms) begin transaction
2518
+ ----------------------------------------------------
2519
+ BootstrapGeneratorTest: test_directories_are_created
2520
+ ----------------------------------------------------
2521
+  (0.1ms) rollback transaction
2522
+  (0.1ms) begin transaction
2523
+ -------------------------------------------------------
2524
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2525
+ -------------------------------------------------------
2526
+  (0.1ms) rollback transaction
2527
+  (0.1ms) begin transaction
2528
+ -------------------------------------------------------
2529
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2530
+ -------------------------------------------------------
2531
+  (0.1ms) rollback transaction
2532
+  (0.1ms) begin transaction
2533
+ ----------------------------------------------------
2534
+ BootstrapGeneratorTest: test_directories_are_created
2535
+ ----------------------------------------------------
2536
+  (0.1ms) rollback transaction
2537
+  (0.1ms) begin transaction
2538
+ ----------------------------------------------------------------------------------------
2539
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2540
+ ----------------------------------------------------------------------------------------
2541
+  (0.1ms) rollback transaction
2542
+  (0.1ms) begin transaction
2543
+ -----------------------------------------------------------------
2544
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2545
+ -----------------------------------------------------------------
2546
+  (0.1ms) rollback transaction
2547
+  (0.2ms) begin transaction
2548
+ -------------------------------------------------------
2549
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2550
+ -------------------------------------------------------
2551
+  (0.3ms) rollback transaction
2552
+  (0.1ms) begin transaction
2553
+ ----------------------------------------------------------------------------------------
2554
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2555
+ ----------------------------------------------------------------------------------------
2556
+  (0.1ms) rollback transaction
2557
+  (0.1ms) begin transaction
2558
+ ----------------------------------------------------
2559
+ BootstrapGeneratorTest: test_directories_are_created
2560
+ ----------------------------------------------------
2561
+  (0.1ms) rollback transaction
2562
+  (0.1ms) begin transaction
2563
+ -----------------------------------------------------------------
2564
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2565
+ -----------------------------------------------------------------
2566
+  (0.1ms) rollback transaction
2567
+  (0.1ms) begin transaction
2568
+ -----------------------------------------------------------------
2569
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2570
+ -----------------------------------------------------------------
2571
+  (0.1ms) rollback transaction
2572
+  (0.1ms) begin transaction
2573
+ -------------------------------------------------------
2574
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2575
+ -------------------------------------------------------
2576
+  (0.1ms) rollback transaction
2577
+  (0.1ms) begin transaction
2578
+ ----------------------------------------------------
2579
+ BootstrapGeneratorTest: test_directories_are_created
2580
+ ----------------------------------------------------
2581
+  (0.1ms) rollback transaction
2582
+  (0.1ms) begin transaction
2583
+ ----------------------------------------------------------------------------------------
2584
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2585
+ ----------------------------------------------------------------------------------------
2586
+  (0.1ms) rollback transaction
2587
+  (0.1ms) begin transaction
2588
+ ----------------------------------------------------
2589
+ BootstrapGeneratorTest: test_directories_are_created
2590
+ ----------------------------------------------------
2591
+  (0.1ms) rollback transaction
2592
+  (0.1ms) begin transaction
2593
+ -----------------------------------------------------------------
2594
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2595
+ -----------------------------------------------------------------
2596
+  (0.1ms) rollback transaction
2597
+  (0.1ms) begin transaction
2598
+ ----------------------------------------------------------------------------------------
2599
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2600
+ ----------------------------------------------------------------------------------------
2601
+  (0.1ms) rollback transaction
2602
+  (0.1ms) begin transaction
2603
+ -------------------------------------------------------
2604
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2605
+ -------------------------------------------------------
2606
+  (0.1ms) rollback transaction
2607
+  (0.1ms) begin transaction
2608
+ ----------------------------------------------------------------------------------------
2609
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2610
+ ----------------------------------------------------------------------------------------
2611
+  (0.1ms) rollback transaction
2612
+  (0.2ms) begin transaction
2613
+ -------------------------------------------------------
2614
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2615
+ -------------------------------------------------------
2616
+  (0.1ms) rollback transaction
2617
+  (0.1ms) begin transaction
2618
+ -----------------------------------------------------------------
2619
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2620
+ -----------------------------------------------------------------
2621
+  (0.1ms) rollback transaction
2622
+  (0.1ms) begin transaction
2623
+ ----------------------------------------------------
2624
+ BootstrapGeneratorTest: test_directories_are_created
2625
+ ----------------------------------------------------
2626
+  (0.1ms) rollback transaction
2627
+  (0.1ms) begin transaction
2628
+ -----------------------------------------------------------------
2629
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2630
+ -----------------------------------------------------------------
2631
+  (0.1ms) rollback transaction
2632
+  (0.1ms) begin transaction
2633
+ ----------------------------------------------------------------------------------------
2634
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2635
+ ----------------------------------------------------------------------------------------
2636
+  (0.1ms) rollback transaction
2637
+  (0.1ms) begin transaction
2638
+ ----------------------------------------------------
2639
+ BootstrapGeneratorTest: test_directories_are_created
2640
+ ----------------------------------------------------
2641
+  (0.1ms) rollback transaction
2642
+  (0.1ms) begin transaction
2643
+ -------------------------------------------------------
2644
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2645
+ -------------------------------------------------------
2646
+  (0.1ms) rollback transaction
2647
+  (0.1ms) begin transaction
2648
+ -----------------------------------------------------------------
2649
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2650
+ -----------------------------------------------------------------
2651
+  (0.1ms) rollback transaction
2652
+  (0.1ms) begin transaction
2653
+ ----------------------------------------------------------------------------------------
2654
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2655
+ ----------------------------------------------------------------------------------------
2656
+  (0.1ms) rollback transaction
2657
+  (0.1ms) begin transaction
2658
+ ----------------------------------------------------
2659
+ BootstrapGeneratorTest: test_directories_are_created
2660
+ ----------------------------------------------------
2661
+  (0.1ms) rollback transaction
2662
+  (0.1ms) begin transaction
2663
+ -------------------------------------------------------
2664
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2665
+ -------------------------------------------------------
2666
+  (0.1ms) rollback transaction
2667
+  (0.2ms) begin transaction
2668
+ -------------------------------------------------------
2669
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2670
+ -------------------------------------------------------
2671
+  (0.1ms) rollback transaction
2672
+  (0.1ms) begin transaction
2673
+ ----------------------------------------------------------------------------------------
2674
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2675
+ ----------------------------------------------------------------------------------------
2676
+  (0.1ms) rollback transaction
2677
+  (0.1ms) begin transaction
2678
+ -----------------------------------------------------------------
2679
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2680
+ -----------------------------------------------------------------
2681
+  (1.1ms) rollback transaction
2682
+  (0.2ms) begin transaction
2683
+ ----------------------------------------------------
2684
+ BootstrapGeneratorTest: test_directories_are_created
2685
+ ----------------------------------------------------
2686
+  (0.1ms) rollback transaction
2687
+  (0.1ms) begin transaction
2688
+ -----------------------------------------------------------------
2689
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2690
+ -----------------------------------------------------------------
2691
+  (0.1ms) rollback transaction
2692
+  (0.1ms) begin transaction
2693
+ ----------------------------------------------------------------------------------------
2694
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2695
+ ----------------------------------------------------------------------------------------
2696
+  (0.1ms) rollback transaction
2697
+  (0.1ms) begin transaction
2698
+ ----------------------------------------------------
2699
+ BootstrapGeneratorTest: test_directories_are_created
2700
+ ----------------------------------------------------
2701
+  (0.1ms) rollback transaction
2702
+  (0.1ms) begin transaction
2703
+ -------------------------------------------------------
2704
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2705
+ -------------------------------------------------------
2706
+  (0.1ms) rollback transaction
2707
+  (0.2ms) begin transaction
2708
+ -------------------------------------------------------
2709
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2710
+ -------------------------------------------------------
2711
+  (0.1ms) rollback transaction
2712
+  (0.2ms) begin transaction
2713
+ ----------------------------------------------------------------------------------------
2714
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2715
+ ----------------------------------------------------------------------------------------
2716
+  (0.1ms) rollback transaction
2717
+  (0.1ms) begin transaction
2718
+ ----------------------------------------------------
2719
+ BootstrapGeneratorTest: test_directories_are_created
2720
+ ----------------------------------------------------
2721
+  (0.1ms) rollback transaction
2722
+  (0.1ms) begin transaction
2723
+ -----------------------------------------------------------------
2724
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2725
+ -----------------------------------------------------------------
2726
+  (0.1ms) rollback transaction
2727
+  (0.2ms) begin transaction
2728
+ ----------------------------------------------------
2729
+ BootstrapGeneratorTest: test_directories_are_created
2730
+ ----------------------------------------------------
2731
+  (0.1ms) rollback transaction
2732
+  (0.1ms) begin transaction
2733
+ ----------------------------------------------------------------------------------------
2734
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2735
+ ----------------------------------------------------------------------------------------
2736
+  (0.1ms) rollback transaction
2737
+  (0.1ms) begin transaction
2738
+ -----------------------------------------------------------------
2739
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2740
+ -----------------------------------------------------------------
2741
+  (0.4ms) rollback transaction
2742
+  (0.1ms) begin transaction
2743
+ -------------------------------------------------------
2744
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2745
+ -------------------------------------------------------
2746
+  (0.1ms) rollback transaction
2747
+  (0.2ms) begin transaction
2748
+ ----------------------------------------------------------------------------------------
2749
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2750
+ ----------------------------------------------------------------------------------------
2751
+  (0.1ms) rollback transaction
2752
+  (0.1ms) begin transaction
2753
+ -------------------------------------------------------
2754
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2755
+ -------------------------------------------------------
2756
+  (0.1ms) rollback transaction
2757
+  (0.1ms) begin transaction
2758
+ ----------------------------------------------------
2759
+ BootstrapGeneratorTest: test_directories_are_created
2760
+ ----------------------------------------------------
2761
+  (0.1ms) rollback transaction
2762
+  (0.1ms) begin transaction
2763
+ -----------------------------------------------------------------
2764
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2765
+ -----------------------------------------------------------------
2766
+  (0.1ms) rollback transaction
2767
+  (0.2ms) begin transaction
2768
+ -------------------------------------------------------
2769
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2770
+ -------------------------------------------------------
2771
+  (0.1ms) rollback transaction
2772
+  (0.1ms) begin transaction
2773
+ ----------------------------------------------------
2774
+ BootstrapGeneratorTest: test_directories_are_created
2775
+ ----------------------------------------------------
2776
+  (0.1ms) rollback transaction
2777
+  (0.1ms) begin transaction
2778
+ ----------------------------------------------------------------------------------------
2779
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2780
+ ----------------------------------------------------------------------------------------
2781
+  (0.1ms) rollback transaction
2782
+  (0.2ms) begin transaction
2783
+ -----------------------------------------------------------------
2784
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2785
+ -----------------------------------------------------------------
2786
+  (0.1ms) rollback transaction
2787
+  (0.2ms) begin transaction
2788
+ -----------------------------------------------------------------
2789
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2790
+ -----------------------------------------------------------------
2791
+  (0.1ms) rollback transaction
2792
+  (0.1ms) begin transaction
2793
+ ----------------------------------------------------
2794
+ BootstrapGeneratorTest: test_directories_are_created
2795
+ ----------------------------------------------------
2796
+  (0.1ms) rollback transaction
2797
+  (0.1ms) begin transaction
2798
+ ----------------------------------------------------------------------------------------
2799
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2800
+ ----------------------------------------------------------------------------------------
2801
+  (0.1ms) rollback transaction
2802
+  (0.1ms) begin transaction
2803
+ -------------------------------------------------------
2804
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2805
+ -------------------------------------------------------
2806
+  (0.1ms) rollback transaction
2807
+  (0.1ms) begin transaction
2808
+ ----------------------------------------------------
2809
+ BootstrapGeneratorTest: test_directories_are_created
2810
+ ----------------------------------------------------
2811
+  (0.1ms) rollback transaction
2812
+  (0.1ms) begin transaction
2813
+ -----------------------------------------------------------------
2814
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2815
+ -----------------------------------------------------------------
2816
+  (0.2ms) rollback transaction
2817
+  (0.1ms) begin transaction
2818
+ ----------------------------------------------------------------------------------------
2819
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2820
+ ----------------------------------------------------------------------------------------
2821
+  (0.1ms) rollback transaction
2822
+  (0.1ms) begin transaction
2823
+ -------------------------------------------------------
2824
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2825
+ -------------------------------------------------------
2826
+  (0.2ms) rollback transaction
2827
+  (0.2ms) begin transaction
2828
+ ----------------------------------------------------
2829
+ BootstrapGeneratorTest: test_directories_are_created
2830
+ ----------------------------------------------------
2831
+  (0.1ms) rollback transaction
2832
+  (0.2ms) begin transaction
2833
+ -------------------------------------------------------
2834
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2835
+ -------------------------------------------------------
2836
+  (0.1ms) rollback transaction
2837
+  (0.1ms) begin transaction
2838
+ -----------------------------------------------------------------
2839
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2840
+ -----------------------------------------------------------------
2841
+  (0.1ms) rollback transaction
2842
+  (0.1ms) begin transaction
2843
+ ----------------------------------------------------------------------------------------
2844
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2845
+ ----------------------------------------------------------------------------------------
2846
+  (0.1ms) rollback transaction
2847
+  (0.2ms) begin transaction
2848
+ -----------------------------------------------------------------
2849
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2850
+ -----------------------------------------------------------------
2851
+  (0.1ms) rollback transaction
2852
+  (0.1ms) begin transaction
2853
+ ----------------------------------------------------------------------------------------
2854
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2855
+ ----------------------------------------------------------------------------------------
2856
+  (0.2ms) rollback transaction
2857
+  (0.1ms) begin transaction
2858
+ ----------------------------------------------------
2859
+ BootstrapGeneratorTest: test_directories_are_created
2860
+ ----------------------------------------------------
2861
+  (0.1ms) rollback transaction
2862
+  (0.1ms) begin transaction
2863
+ -------------------------------------------------------
2864
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2865
+ -------------------------------------------------------
2866
+  (0.1ms) rollback transaction
2867
+  (0.2ms) begin transaction
2868
+ -------------------------------------------------------
2869
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2870
+ -------------------------------------------------------
2871
+  (0.1ms) rollback transaction
2872
+  (0.1ms) begin transaction
2873
+ ----------------------------------------------------------------------------------------
2874
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2875
+ ----------------------------------------------------------------------------------------
2876
+  (0.1ms) rollback transaction
2877
+  (0.1ms) begin transaction
2878
+ ----------------------------------------------------
2879
+ BootstrapGeneratorTest: test_directories_are_created
2880
+ ----------------------------------------------------
2881
+  (0.1ms) rollback transaction
2882
+  (0.1ms) begin transaction
2883
+ -----------------------------------------------------------------
2884
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2885
+ -----------------------------------------------------------------
2886
+  (0.1ms) rollback transaction
2887
+  (0.1ms) begin transaction
2888
+ -------------------------------------------------------
2889
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2890
+ -------------------------------------------------------
2891
+  (0.1ms) rollback transaction
2892
+  (0.1ms) begin transaction
2893
+ ----------------------------------------------------------------------------------------
2894
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2895
+ ----------------------------------------------------------------------------------------
2896
+  (0.1ms) rollback transaction
2897
+  (0.1ms) begin transaction
2898
+ ----------------------------------------------------
2899
+ BootstrapGeneratorTest: test_directories_are_created
2900
+ ----------------------------------------------------
2901
+  (0.1ms) rollback transaction
2902
+  (0.1ms) begin transaction
2903
+ -----------------------------------------------------------------
2904
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2905
+ -----------------------------------------------------------------
2906
+  (0.1ms) rollback transaction
2907
+  (0.1ms) begin transaction
2908
+ ----------------------------------------------------------------------------------------
2909
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2910
+ ----------------------------------------------------------------------------------------
2911
+  (0.1ms) rollback transaction
2912
+  (0.2ms) begin transaction
2913
+ -----------------------------------------------------------------
2914
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2915
+ -----------------------------------------------------------------
2916
+  (0.1ms) rollback transaction
2917
+  (0.1ms) begin transaction
2918
+ ----------------------------------------------------
2919
+ BootstrapGeneratorTest: test_directories_are_created
2920
+ ----------------------------------------------------
2921
+  (0.1ms) rollback transaction
2922
+  (0.1ms) begin transaction
2923
+ -------------------------------------------------------
2924
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2925
+ -------------------------------------------------------
2926
+  (0.1ms) rollback transaction
2927
+  (0.1ms) begin transaction
2928
+ ----------------------------------------------------
2929
+ BootstrapGeneratorTest: test_directories_are_created
2930
+ ----------------------------------------------------
2931
+  (0.1ms) rollback transaction
2932
+  (0.1ms) begin transaction
2933
+ -------------------------------------------------------
2934
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2935
+ -------------------------------------------------------
2936
+  (0.1ms) rollback transaction
2937
+  (0.1ms) begin transaction
2938
+ ----------------------------------------------------------------------------------------
2939
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2940
+ ----------------------------------------------------------------------------------------
2941
+  (0.1ms) rollback transaction
2942
+  (0.1ms) begin transaction
2943
+ -----------------------------------------------------------------
2944
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2945
+ -----------------------------------------------------------------
2946
+  (0.2ms) rollback transaction
2947
+  (0.2ms) begin transaction
2948
+ ---------------------------------------------------
2949
+ BehaviorGeneratorTest: test_service_file_is_created
2950
+ ---------------------------------------------------
2951
+  (0.1ms) rollback transaction
2952
+  (0.1ms) begin transaction
2953
+ --------------------------------------------------
2954
+ ServiceGeneratorTest: test_service_file_is_created
2955
+ --------------------------------------------------
2956
+  (0.1ms) rollback transaction
2957
+  (0.1ms) begin transaction
2958
+ -----------------------------------------------------------------
2959
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
2960
+ -----------------------------------------------------------------
2961
+  (0.1ms) rollback transaction
2962
+  (0.1ms) begin transaction
2963
+ ----------------------------------------------------
2964
+ BootstrapGeneratorTest: test_directories_are_created
2965
+ ----------------------------------------------------
2966
+  (0.1ms) rollback transaction
2967
+  (0.1ms) begin transaction
2968
+ ----------------------------------------------------------------------------------------
2969
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
2970
+ ----------------------------------------------------------------------------------------
2971
+  (0.1ms) rollback transaction
2972
+  (0.1ms) begin transaction
2973
+ -------------------------------------------------------
2974
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
2975
+ -------------------------------------------------------
2976
+  (0.2ms) rollback transaction
2977
+  (0.1ms) begin transaction
2978
+ ------------------------------------------------
2979
+ ModuleGeneratorTest: test_module_file_is_created
2980
+ ------------------------------------------------
2981
+  (0.1ms) rollback transaction
2982
+  (0.1ms) begin transaction
2983
+ -----------------------------------------
2984
+ T3RailsTest: test_t3_is_found_as_an_asset
2985
+ -----------------------------------------
2986
+  (0.1ms) rollback transaction
2987
+  (0.1ms) begin transaction
2988
+ --------------------------------------------------
2989
+ ServiceGeneratorTest: test_service_file_is_created
2990
+ --------------------------------------------------
2991
+  (0.1ms) rollback transaction
2992
+  (0.1ms) begin transaction
2993
+ -----------------------------------------
2994
+ T3RailsTest: test_t3_is_found_as_an_asset
2995
+ -----------------------------------------
2996
+  (0.1ms) rollback transaction
2997
+  (0.1ms) begin transaction
2998
+ ----------------------------------------------------
2999
+ BootstrapGeneratorTest: test_directories_are_created
3000
+ ----------------------------------------------------
3001
+  (0.1ms) rollback transaction
3002
+  (0.1ms) begin transaction
3003
+ -------------------------------------------------------
3004
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3005
+ -------------------------------------------------------
3006
+  (0.1ms) rollback transaction
3007
+  (0.1ms) begin transaction
3008
+ ----------------------------------------------------------------------------------------
3009
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3010
+ ----------------------------------------------------------------------------------------
3011
+  (0.1ms) rollback transaction
3012
+  (0.1ms) begin transaction
3013
+ -----------------------------------------------------------------
3014
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3015
+ -----------------------------------------------------------------
3016
+  (0.1ms) rollback transaction
3017
+  (0.1ms) begin transaction
3018
+ ---------------------------------------------------
3019
+ BehaviorGeneratorTest: test_service_file_is_created
3020
+ ---------------------------------------------------
3021
+  (0.1ms) rollback transaction
3022
+  (0.1ms) begin transaction
3023
+ ------------------------------------------------
3024
+ ModuleGeneratorTest: test_module_file_is_created
3025
+ ------------------------------------------------
3026
+  (0.1ms) rollback transaction
3027
+  (0.1ms) begin transaction
3028
+ ----------------------------------------------------------------------------------------
3029
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3030
+ ----------------------------------------------------------------------------------------
3031
+  (0.1ms) rollback transaction
3032
+  (0.1ms) begin transaction
3033
+ -------------------------------------------------------
3034
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3035
+ -------------------------------------------------------
3036
+  (0.1ms) rollback transaction
3037
+  (0.1ms) begin transaction
3038
+ -----------------------------------------------------------------
3039
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3040
+ -----------------------------------------------------------------
3041
+  (0.1ms) rollback transaction
3042
+  (0.1ms) begin transaction
3043
+ ----------------------------------------------------
3044
+ BootstrapGeneratorTest: test_directories_are_created
3045
+ ----------------------------------------------------
3046
+  (0.1ms) rollback transaction
3047
+  (0.2ms) begin transaction
3048
+ -----------------------------------------------------------------
3049
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3050
+ -----------------------------------------------------------------
3051
+  (0.1ms) rollback transaction
3052
+  (0.1ms) begin transaction
3053
+ ----------------------------------------------------------------------------------------
3054
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3055
+ ----------------------------------------------------------------------------------------
3056
+  (0.1ms) rollback transaction
3057
+  (0.1ms) begin transaction
3058
+ ----------------------------------------------------
3059
+ BootstrapGeneratorTest: test_directories_are_created
3060
+ ----------------------------------------------------
3061
+  (0.1ms) rollback transaction
3062
+  (0.2ms) begin transaction
3063
+ -------------------------------------------------------
3064
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3065
+ -------------------------------------------------------
3066
+  (0.1ms) rollback transaction
3067
+  (0.3ms) begin transaction
3068
+ ----------------------------------------------------
3069
+ BootstrapGeneratorTest: test_directories_are_created
3070
+ ----------------------------------------------------
3071
+  (0.1ms) rollback transaction
3072
+  (0.1ms) begin transaction
3073
+ ----------------------------------------------------------------------------------------
3074
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3075
+ ----------------------------------------------------------------------------------------
3076
+  (0.1ms) rollback transaction
3077
+  (0.1ms) begin transaction
3078
+ -------------------------------------------------------
3079
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3080
+ -------------------------------------------------------
3081
+  (0.1ms) rollback transaction
3082
+  (0.1ms) begin transaction
3083
+ -----------------------------------------------------------------
3084
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3085
+ -----------------------------------------------------------------
3086
+  (0.5ms) rollback transaction
3087
+  (0.1ms) begin transaction
3088
+ -------------------------------------------------------
3089
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3090
+ -------------------------------------------------------
3091
+  (0.1ms) rollback transaction
3092
+  (0.1ms) begin transaction
3093
+ ----------------------------------------------------
3094
+ BootstrapGeneratorTest: test_directories_are_created
3095
+ ----------------------------------------------------
3096
+  (0.2ms) rollback transaction
3097
+  (0.1ms) begin transaction
3098
+ -----------------------------------------------------------------
3099
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3100
+ -----------------------------------------------------------------
3101
+  (0.1ms) rollback transaction
3102
+  (0.1ms) begin transaction
3103
+ ----------------------------------------------------------------------------------------
3104
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3105
+ ----------------------------------------------------------------------------------------
3106
+  (0.2ms) rollback transaction
3107
+  (0.1ms) begin transaction
3108
+ -------------------------------------------------------
3109
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3110
+ -------------------------------------------------------
3111
+  (0.1ms) rollback transaction
3112
+  (0.1ms) begin transaction
3113
+ ----------------------------------------------------------------------------------------
3114
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3115
+ ----------------------------------------------------------------------------------------
3116
+  (0.1ms) rollback transaction
3117
+  (0.1ms) begin transaction
3118
+ ----------------------------------------------------
3119
+ BootstrapGeneratorTest: test_directories_are_created
3120
+ ----------------------------------------------------
3121
+  (0.1ms) rollback transaction
3122
+  (0.1ms) begin transaction
3123
+ -----------------------------------------------------------------
3124
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3125
+ -----------------------------------------------------------------
3126
+  (0.1ms) rollback transaction
3127
+  (0.2ms) begin transaction
3128
+ -------------------------------------------------------
3129
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3130
+ -------------------------------------------------------
3131
+  (0.1ms) rollback transaction
3132
+  (0.0ms) begin transaction
3133
+ ----------------------------------------------------------------------------------------
3134
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3135
+ ----------------------------------------------------------------------------------------
3136
+  (0.1ms) rollback transaction
3137
+  (0.1ms) begin transaction
3138
+ ----------------------------------------------------
3139
+ BootstrapGeneratorTest: test_directories_are_created
3140
+ ----------------------------------------------------
3141
+  (0.1ms) rollback transaction
3142
+  (0.1ms) begin transaction
3143
+ -----------------------------------------------------------------
3144
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3145
+ -----------------------------------------------------------------
3146
+  (0.1ms) rollback transaction
3147
+  (0.1ms) begin transaction
3148
+ ----------------------------------------------------
3149
+ BootstrapGeneratorTest: test_directories_are_created
3150
+ ----------------------------------------------------
3151
+  (0.1ms) rollback transaction
3152
+  (0.1ms) begin transaction
3153
+ ----------------------------------------------------------------------------------------
3154
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3155
+ ----------------------------------------------------------------------------------------
3156
+  (0.1ms) rollback transaction
3157
+  (0.1ms) begin transaction
3158
+ -------------------------------------------------------
3159
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3160
+ -------------------------------------------------------
3161
+  (0.2ms) rollback transaction
3162
+  (0.1ms) begin transaction
3163
+ -----------------------------------------------------------------
3164
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3165
+ -----------------------------------------------------------------
3166
+  (0.1ms) rollback transaction
3167
+  (0.2ms) begin transaction
3168
+ ----------------------------------------------------
3169
+ BootstrapGeneratorTest: test_directories_are_created
3170
+ ----------------------------------------------------
3171
+  (0.1ms) rollback transaction
3172
+  (0.1ms) begin transaction
3173
+ -------------------------------------------------------
3174
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3175
+ -------------------------------------------------------
3176
+  (0.1ms) rollback transaction
3177
+  (0.1ms) begin transaction
3178
+ -----------------------------------------------------------------
3179
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3180
+ -----------------------------------------------------------------
3181
+  (0.1ms) rollback transaction
3182
+  (0.1ms) begin transaction
3183
+ ----------------------------------------------------------------------------------------
3184
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3185
+ ----------------------------------------------------------------------------------------
3186
+  (0.1ms) rollback transaction
3187
+  (0.1ms) begin transaction
3188
+ -------------------------------------------------------
3189
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3190
+ -------------------------------------------------------
3191
+  (0.1ms) rollback transaction
3192
+  (0.1ms) begin transaction
3193
+ ----------------------------------------------------------------------------------------
3194
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3195
+ ----------------------------------------------------------------------------------------
3196
+  (0.1ms) rollback transaction
3197
+  (0.1ms) begin transaction
3198
+ ----------------------------------------------------
3199
+ BootstrapGeneratorTest: test_directories_are_created
3200
+ ----------------------------------------------------
3201
+  (0.1ms) rollback transaction
3202
+  (0.1ms) begin transaction
3203
+ -----------------------------------------------------------------
3204
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3205
+ -----------------------------------------------------------------
3206
+  (0.1ms) rollback transaction
3207
+  (0.1ms) begin transaction
3208
+ -------------------------------------------------------
3209
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3210
+ -------------------------------------------------------
3211
+  (0.1ms) rollback transaction
3212
+  (0.1ms) begin transaction
3213
+ ----------------------------------------------------
3214
+ BootstrapGeneratorTest: test_directories_are_created
3215
+ ----------------------------------------------------
3216
+  (0.1ms) rollback transaction
3217
+  (0.1ms) begin transaction
3218
+ ----------------------------------------------------------------------------------------
3219
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3220
+ ----------------------------------------------------------------------------------------
3221
+  (0.1ms) rollback transaction
3222
+  (0.1ms) begin transaction
3223
+ -----------------------------------------------------------------
3224
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3225
+ -----------------------------------------------------------------
3226
+  (0.2ms) rollback transaction
3227
+  (0.1ms) begin transaction
3228
+ -------------------------------------------------------
3229
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3230
+ -------------------------------------------------------
3231
+  (0.1ms) rollback transaction
3232
+  (0.1ms) begin transaction
3233
+ -----------------------------------------------------------------
3234
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3235
+ -----------------------------------------------------------------
3236
+  (0.1ms) rollback transaction
3237
+  (0.1ms) begin transaction
3238
+ ----------------------------------------------------------------------------------------
3239
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3240
+ ----------------------------------------------------------------------------------------
3241
+  (0.1ms) rollback transaction
3242
+  (0.1ms) begin transaction
3243
+ ----------------------------------------------------
3244
+ BootstrapGeneratorTest: test_directories_are_created
3245
+ ----------------------------------------------------
3246
+  (0.1ms) rollback transaction
3247
+  (0.1ms) begin transaction
3248
+ -------------------------------------------------------
3249
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3250
+ -------------------------------------------------------
3251
+  (0.1ms) rollback transaction
3252
+  (0.0ms) begin transaction
3253
+ ----------------------------------------------------------------------------------------
3254
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3255
+ ----------------------------------------------------------------------------------------
3256
+  (0.1ms) rollback transaction
3257
+  (0.1ms) begin transaction
3258
+ -----------------------------------------------------------------
3259
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3260
+ -----------------------------------------------------------------
3261
+  (0.1ms) rollback transaction
3262
+  (0.1ms) begin transaction
3263
+ ----------------------------------------------------
3264
+ BootstrapGeneratorTest: test_directories_are_created
3265
+ ----------------------------------------------------
3266
+  (0.1ms) rollback transaction
3267
+  (0.2ms) begin transaction
3268
+ ----------------------------------------------------------------------------------------
3269
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3270
+ ----------------------------------------------------------------------------------------
3271
+  (0.9ms) rollback transaction
3272
+  (0.1ms) begin transaction
3273
+ ----------------------------------------------------
3274
+ BootstrapGeneratorTest: test_directories_are_created
3275
+ ----------------------------------------------------
3276
+  (0.1ms) rollback transaction
3277
+  (0.1ms) begin transaction
3278
+ -------------------------------------------------------
3279
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3280
+ -------------------------------------------------------
3281
+  (0.2ms) rollback transaction
3282
+  (0.1ms) begin transaction
3283
+ -----------------------------------------------------------------
3284
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3285
+ -----------------------------------------------------------------
3286
+  (0.1ms) rollback transaction
3287
+  (0.1ms) begin transaction
3288
+ -----------------------------------------------------------------
3289
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3290
+ -----------------------------------------------------------------
3291
+  (0.1ms) rollback transaction
3292
+  (0.1ms) begin transaction
3293
+ ----------------------------------------------------
3294
+ BootstrapGeneratorTest: test_directories_are_created
3295
+ ----------------------------------------------------
3296
+  (0.1ms) rollback transaction
3297
+  (0.1ms) begin transaction
3298
+ ----------------------------------------------------------------------------------------
3299
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3300
+ ----------------------------------------------------------------------------------------
3301
+  (0.1ms) rollback transaction
3302
+  (0.1ms) begin transaction
3303
+ -------------------------------------------------------
3304
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3305
+ -------------------------------------------------------
3306
+  (0.1ms) rollback transaction
3307
+  (0.1ms) begin transaction
3308
+ -----------------------------------------------------------------
3309
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3310
+ -----------------------------------------------------------------
3311
+  (0.1ms) rollback transaction
3312
+  (0.1ms) begin transaction
3313
+ ----------------------------------------------------------------------------------------
3314
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3315
+ ----------------------------------------------------------------------------------------
3316
+  (0.1ms) rollback transaction
3317
+  (0.1ms) begin transaction
3318
+ ----------------------------------------------------
3319
+ BootstrapGeneratorTest: test_directories_are_created
3320
+ ----------------------------------------------------
3321
+  (0.1ms) rollback transaction
3322
+  (0.1ms) begin transaction
3323
+ -------------------------------------------------------
3324
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3325
+ -------------------------------------------------------
3326
+  (0.1ms) rollback transaction
3327
+  (0.1ms) begin transaction
3328
+ -----------------------------------------------------------------
3329
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3330
+ -----------------------------------------------------------------
3331
+  (0.1ms) rollback transaction
3332
+  (0.2ms) begin transaction
3333
+ ----------------------------------------------------
3334
+ BootstrapGeneratorTest: test_directories_are_created
3335
+ ----------------------------------------------------
3336
+  (0.1ms) rollback transaction
3337
+  (0.1ms) begin transaction
3338
+ ----------------------------------------------------------------------------------------
3339
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3340
+ ----------------------------------------------------------------------------------------
3341
+  (0.1ms) rollback transaction
3342
+  (0.1ms) begin transaction
3343
+ -------------------------------------------------------
3344
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3345
+ -------------------------------------------------------
3346
+  (0.1ms) rollback transaction
3347
+  (0.1ms) begin transaction
3348
+ -------------------------------------------------------
3349
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3350
+ -------------------------------------------------------
3351
+  (0.1ms) rollback transaction
3352
+  (0.1ms) begin transaction
3353
+ ----------------------------------------------------
3354
+ BootstrapGeneratorTest: test_directories_are_created
3355
+ ----------------------------------------------------
3356
+  (0.1ms) rollback transaction
3357
+  (0.1ms) begin transaction
3358
+ ----------------------------------------------------------------------------------------
3359
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3360
+ ----------------------------------------------------------------------------------------
3361
+  (0.1ms) rollback transaction
3362
+  (0.1ms) begin transaction
3363
+ -----------------------------------------------------------------
3364
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3365
+ -----------------------------------------------------------------
3366
+  (0.1ms) rollback transaction
3367
+  (0.1ms) begin transaction
3368
+ -----------------------------------------------------------------
3369
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3370
+ -----------------------------------------------------------------
3371
+  (0.1ms) rollback transaction
3372
+  (0.1ms) begin transaction
3373
+ ----------------------------------------------------------------------------------------
3374
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3375
+ ----------------------------------------------------------------------------------------
3376
+  (0.1ms) rollback transaction
3377
+  (0.1ms) begin transaction
3378
+ ----------------------------------------------------
3379
+ BootstrapGeneratorTest: test_directories_are_created
3380
+ ----------------------------------------------------
3381
+  (0.1ms) rollback transaction
3382
+  (0.1ms) begin transaction
3383
+ -------------------------------------------------------
3384
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3385
+ -------------------------------------------------------
3386
+  (0.1ms) rollback transaction
3387
+  (0.2ms) begin transaction
3388
+ -----------------------------------------------------------------
3389
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3390
+ -----------------------------------------------------------------
3391
+  (0.2ms) rollback transaction
3392
+  (0.1ms) begin transaction
3393
+ ----------------------------------------------------
3394
+ BootstrapGeneratorTest: test_directories_are_created
3395
+ ----------------------------------------------------
3396
+  (0.1ms) rollback transaction
3397
+  (0.1ms) begin transaction
3398
+ -------------------------------------------------------
3399
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3400
+ -------------------------------------------------------
3401
+  (0.1ms) rollback transaction
3402
+  (0.1ms) begin transaction
3403
+ ----------------------------------------------------------------------------------------
3404
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3405
+ ----------------------------------------------------------------------------------------
3406
+  (0.1ms) rollback transaction
3407
+  (0.1ms) begin transaction
3408
+ -------------------------------------------------------
3409
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3410
+ -------------------------------------------------------
3411
+  (0.1ms) rollback transaction
3412
+  (0.1ms) begin transaction
3413
+ -----------------------------------------------------------------
3414
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3415
+ -----------------------------------------------------------------
3416
+  (0.1ms) rollback transaction
3417
+  (0.2ms) begin transaction
3418
+ ----------------------------------------------------------------------------------------
3419
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3420
+ ----------------------------------------------------------------------------------------
3421
+  (0.1ms) rollback transaction
3422
+  (0.1ms) begin transaction
3423
+ ----------------------------------------------------
3424
+ BootstrapGeneratorTest: test_directories_are_created
3425
+ ----------------------------------------------------
3426
+  (0.1ms) rollback transaction
3427
+  (0.1ms) begin transaction
3428
+ ----------------------------------------------------
3429
+ BootstrapGeneratorTest: test_directories_are_created
3430
+ ----------------------------------------------------
3431
+  (0.1ms) rollback transaction
3432
+  (0.2ms) begin transaction
3433
+ -------------------------------------------------------
3434
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3435
+ -------------------------------------------------------
3436
+  (0.1ms) rollback transaction
3437
+  (0.1ms) begin transaction
3438
+ ----------------------------------------------------------------------------------------
3439
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3440
+ ----------------------------------------------------------------------------------------
3441
+  (0.1ms) rollback transaction
3442
+  (0.1ms) begin transaction
3443
+ -----------------------------------------------------------------
3444
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3445
+ -----------------------------------------------------------------
3446
+  (0.1ms) rollback transaction
3447
+  (0.2ms) begin transaction
3448
+ ----------------------------------------------------------------------------------------
3449
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3450
+ ----------------------------------------------------------------------------------------
3451
+  (0.1ms) rollback transaction
3452
+  (0.1ms) begin transaction
3453
+ -------------------------------------------------------
3454
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3455
+ -------------------------------------------------------
3456
+  (0.1ms) rollback transaction
3457
+  (0.1ms) begin transaction
3458
+ ----------------------------------------------------
3459
+ BootstrapGeneratorTest: test_directories_are_created
3460
+ ----------------------------------------------------
3461
+  (0.1ms) rollback transaction
3462
+  (0.1ms) begin transaction
3463
+ -----------------------------------------------------------------
3464
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3465
+ -----------------------------------------------------------------
3466
+  (0.1ms) rollback transaction
3467
+  (0.1ms) begin transaction
3468
+ ----------------------------------------------------------------------------------------
3469
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3470
+ ----------------------------------------------------------------------------------------
3471
+  (0.2ms) rollback transaction
3472
+  (0.1ms) begin transaction
3473
+ -------------------------------------------------------
3474
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3475
+ -------------------------------------------------------
3476
+  (0.1ms) rollback transaction
3477
+  (0.1ms) begin transaction
3478
+ -----------------------------------------------------------------
3479
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3480
+ -----------------------------------------------------------------
3481
+  (0.1ms) rollback transaction
3482
+  (0.1ms) begin transaction
3483
+ ----------------------------------------------------
3484
+ BootstrapGeneratorTest: test_directories_are_created
3485
+ ----------------------------------------------------
3486
+  (0.1ms) rollback transaction
3487
+  (0.1ms) begin transaction
3488
+ -------------------------------------------------------
3489
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3490
+ -------------------------------------------------------
3491
+  (0.1ms) rollback transaction
3492
+  (0.1ms) begin transaction
3493
+ ----------------------------------------------------
3494
+ BootstrapGeneratorTest: test_directories_are_created
3495
+ ----------------------------------------------------
3496
+  (0.1ms) rollback transaction
3497
+  (0.1ms) begin transaction
3498
+ ----------------------------------------------------------------------------------------
3499
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3500
+ ----------------------------------------------------------------------------------------
3501
+  (0.1ms) rollback transaction
3502
+  (0.1ms) begin transaction
3503
+ -----------------------------------------------------------------
3504
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3505
+ -----------------------------------------------------------------
3506
+  (0.2ms) rollback transaction
3507
+  (0.2ms) begin transaction
3508
+ -----------------------------------------------------------------
3509
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3510
+ -----------------------------------------------------------------
3511
+  (0.1ms) rollback transaction
3512
+  (0.1ms) begin transaction
3513
+ ----------------------------------------------------------------------------------------
3514
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3515
+ ----------------------------------------------------------------------------------------
3516
+  (0.2ms) rollback transaction
3517
+  (0.1ms) begin transaction
3518
+ ----------------------------------------------------
3519
+ BootstrapGeneratorTest: test_directories_are_created
3520
+ ----------------------------------------------------
3521
+  (0.1ms) rollback transaction
3522
+  (0.0ms) begin transaction
3523
+ -------------------------------------------------------
3524
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3525
+ -------------------------------------------------------
3526
+  (0.1ms) rollback transaction
3527
+  (0.1ms) begin transaction
3528
+ ----------------------------------------------------
3529
+ BootstrapGeneratorTest: test_directories_are_created
3530
+ ----------------------------------------------------
3531
+  (0.1ms) rollback transaction
3532
+  (0.1ms) begin transaction
3533
+ ----------------------------------------------------------------------------------------
3534
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3535
+ ----------------------------------------------------------------------------------------
3536
+  (0.1ms) rollback transaction
3537
+  (0.4ms) begin transaction
3538
+ -------------------------------------------------------
3539
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3540
+ -------------------------------------------------------
3541
+  (0.2ms) rollback transaction
3542
+  (0.1ms) begin transaction
3543
+ -----------------------------------------------------------------
3544
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3545
+ -----------------------------------------------------------------
3546
+  (0.1ms) rollback transaction
3547
+  (0.1ms) begin transaction
3548
+ -------------------------------------------------------
3549
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3550
+ -------------------------------------------------------
3551
+  (0.2ms) rollback transaction
3552
+  (0.1ms) begin transaction
3553
+ ----------------------------------------------------
3554
+ BootstrapGeneratorTest: test_directories_are_created
3555
+ ----------------------------------------------------
3556
+  (0.1ms) rollback transaction
3557
+  (0.1ms) begin transaction
3558
+ -----------------------------------------------------------------
3559
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3560
+ -----------------------------------------------------------------
3561
+  (0.1ms) rollback transaction
3562
+  (0.2ms) begin transaction
3563
+ ----------------------------------------------------------------------------------------
3564
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3565
+ ----------------------------------------------------------------------------------------
3566
+  (0.1ms) rollback transaction
3567
+  (0.1ms) begin transaction
3568
+ -----------------------------------------
3569
+ T3RailsTest: test_t3_is_found_as_an_asset
3570
+ -----------------------------------------
3571
+  (0.1ms) rollback transaction
3572
+  (0.1ms) begin transaction
3573
+ ------------------------------------------------
3574
+ ModuleGeneratorTest: test_module_file_is_created
3575
+ ------------------------------------------------
3576
+  (0.1ms) rollback transaction
3577
+  (0.1ms) begin transaction
3578
+ --------------------------------------------------
3579
+ ServiceGeneratorTest: test_service_file_is_created
3580
+ --------------------------------------------------
3581
+  (0.1ms) rollback transaction
3582
+  (0.1ms) begin transaction
3583
+ ---------------------------------------------------
3584
+ BehaviorGeneratorTest: test_service_file_is_created
3585
+ ---------------------------------------------------
3586
+  (0.1ms) rollback transaction
3587
+  (0.1ms) begin transaction
3588
+ ------------------------------------------------
3589
+ ModuleGeneratorTest: test_module_file_is_created
3590
+ ------------------------------------------------
3591
+  (0.1ms) rollback transaction
3592
+  (0.1ms) begin transaction
3593
+ ----------------------------------------------------
3594
+ BootstrapGeneratorTest: test_directories_are_created
3595
+ ----------------------------------------------------
3596
+  (0.1ms) rollback transaction
3597
+  (0.1ms) begin transaction
3598
+ ----------------------------------------------------------------------------------------
3599
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3600
+ ----------------------------------------------------------------------------------------
3601
+  (0.1ms) rollback transaction
3602
+  (0.1ms) begin transaction
3603
+ -------------------------------------------------------
3604
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3605
+ -------------------------------------------------------
3606
+  (0.1ms) rollback transaction
3607
+  (0.1ms) begin transaction
3608
+ -----------------------------------------------------------------
3609
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3610
+ -----------------------------------------------------------------
3611
+  (0.1ms) rollback transaction
3612
+  (0.1ms) begin transaction
3613
+ -----------------------------------------
3614
+ T3RailsTest: test_t3_is_found_as_an_asset
3615
+ -----------------------------------------
3616
+  (0.1ms) rollback transaction
3617
+  (0.1ms) begin transaction
3618
+ ---------------------------------------------------
3619
+ BehaviorGeneratorTest: test_service_file_is_created
3620
+ ---------------------------------------------------
3621
+  (0.1ms) rollback transaction
3622
+  (0.1ms) begin transaction
3623
+ --------------------------------------------------
3624
+ ServiceGeneratorTest: test_service_file_is_created
3625
+ --------------------------------------------------
3626
+  (0.1ms) rollback transaction
3627
+  (0.2ms) begin transaction
3628
+ -----------------------------------------
3629
+ T3RailsTest: test_t3_is_found_as_an_asset
3630
+ -----------------------------------------
3631
+  (0.1ms) rollback transaction
3632
+  (0.1ms) begin transaction
3633
+ ------------------------------------------------
3634
+ ModuleGeneratorTest: test_module_file_is_created
3635
+ ------------------------------------------------
3636
+  (0.1ms) rollback transaction
3637
+  (0.1ms) begin transaction
3638
+ --------------------------------------------------
3639
+ ServiceGeneratorTest: test_service_file_is_created
3640
+ --------------------------------------------------
3641
+  (0.1ms) rollback transaction
3642
+  (0.1ms) begin transaction
3643
+ ---------------------------------------------------
3644
+ BehaviorGeneratorTest: test_service_file_is_created
3645
+ ---------------------------------------------------
3646
+  (0.2ms) rollback transaction
3647
+  (0.1ms) begin transaction
3648
+ ----------------------------------------------------------------------------------------
3649
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3650
+ ----------------------------------------------------------------------------------------
3651
+  (0.1ms) rollback transaction
3652
+  (0.1ms) begin transaction
3653
+ ----------------------------------------------------
3654
+ BootstrapGeneratorTest: test_directories_are_created
3655
+ ----------------------------------------------------
3656
+  (0.1ms) rollback transaction
3657
+  (0.1ms) begin transaction
3658
+ -------------------------------------------------------
3659
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3660
+ -------------------------------------------------------
3661
+  (0.3ms) rollback transaction
3662
+  (0.1ms) begin transaction
3663
+ -----------------------------------------------------------------
3664
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3665
+ -----------------------------------------------------------------
3666
+  (0.1ms) rollback transaction
3667
+  (0.2ms) begin transaction
3668
+ ---------------------------------------------------
3669
+ BehaviorGeneratorTest: test_service_file_is_created
3670
+ ---------------------------------------------------
3671
+  (0.1ms) rollback transaction
3672
+  (0.1ms) begin transaction
3673
+ -----------------------------------------
3674
+ T3RailsTest: test_t3_is_found_as_an_asset
3675
+ -----------------------------------------
3676
+  (0.1ms) rollback transaction
3677
+  (0.1ms) begin transaction
3678
+ -------------------------------------------------------
3679
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3680
+ -------------------------------------------------------
3681
+  (0.1ms) rollback transaction
3682
+  (0.1ms) begin transaction
3683
+ ----------------------------------------------------------------------------------------
3684
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3685
+ ----------------------------------------------------------------------------------------
3686
+  (0.1ms) rollback transaction
3687
+  (0.1ms) begin transaction
3688
+ ----------------------------------------------------
3689
+ BootstrapGeneratorTest: test_directories_are_created
3690
+ ----------------------------------------------------
3691
+  (0.1ms) rollback transaction
3692
+  (0.1ms) begin transaction
3693
+ -----------------------------------------------------------------
3694
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3695
+ -----------------------------------------------------------------
3696
+  (0.1ms) rollback transaction
3697
+  (0.2ms) begin transaction
3698
+ ------------------------------------------------
3699
+ ModuleGeneratorTest: test_module_file_is_created
3700
+ ------------------------------------------------
3701
+  (0.1ms) rollback transaction
3702
+  (0.1ms) begin transaction
3703
+ --------------------------------------------------
3704
+ ServiceGeneratorTest: test_service_file_is_created
3705
+ --------------------------------------------------
3706
+  (0.2ms) rollback transaction
3707
+  (0.2ms) begin transaction
3708
+ ---------------------------------------------------
3709
+ BehaviorGeneratorTest: test_service_file_is_created
3710
+ ---------------------------------------------------
3711
+  (0.1ms) rollback transaction
3712
+  (0.1ms) begin transaction
3713
+ -----------------------------------------
3714
+ T3RailsTest: test_t3_is_found_as_an_asset
3715
+ -----------------------------------------
3716
+  (0.1ms) rollback transaction
3717
+  (0.1ms) begin transaction
3718
+ ------------------------------------------------
3719
+ ModuleGeneratorTest: test_module_file_is_created
3720
+ ------------------------------------------------
3721
+  (0.1ms) rollback transaction
3722
+  (0.1ms) begin transaction
3723
+ --------------------------------------------------
3724
+ ServiceGeneratorTest: test_service_file_is_created
3725
+ --------------------------------------------------
3726
+  (0.1ms) rollback transaction
3727
+  (0.1ms) begin transaction
3728
+ ----------------------------------------------------------------------------------------
3729
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3730
+ ----------------------------------------------------------------------------------------
3731
+  (0.1ms) rollback transaction
3732
+  (0.0ms) begin transaction
3733
+ -------------------------------------------------------
3734
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3735
+ -------------------------------------------------------
3736
+  (0.1ms) rollback transaction
3737
+  (0.1ms) begin transaction
3738
+ ----------------------------------------------------
3739
+ BootstrapGeneratorTest: test_directories_are_created
3740
+ ----------------------------------------------------
3741
+  (0.1ms) rollback transaction
3742
+  (0.1ms) begin transaction
3743
+ -----------------------------------------------------------------
3744
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3745
+ -----------------------------------------------------------------
3746
+  (0.1ms) rollback transaction
3747
+ -------------------------------------------------------
3748
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3749
+ -------------------------------------------------------
3750
+ ----------------------------------------------------------------------------------------
3751
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3752
+ ----------------------------------------------------------------------------------------
3753
+ -----------------------------------------------------------------
3754
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3755
+ -----------------------------------------------------------------
3756
+ ----------------------------------------------------
3757
+ BootstrapGeneratorTest: test_directories_are_created
3758
+ ----------------------------------------------------
3759
+ ---------------------------------------------------
3760
+ BehaviorGeneratorTest: test_service_file_is_created
3761
+ ---------------------------------------------------
3762
+ --------------------------------------------------
3763
+ ServiceGeneratorTest: test_service_file_is_created
3764
+ --------------------------------------------------
3765
+ ------------------------------------------------
3766
+ ModuleGeneratorTest: test_module_file_is_created
3767
+ ------------------------------------------------
3768
+ -----------------------------------------
3769
+ T3RailsTest: test_t3_is_found_as_an_asset
3770
+ -----------------------------------------
3771
+ --------------------------------------------------
3772
+ ServiceGeneratorTest: test_service_file_is_created
3773
+ --------------------------------------------------
3774
+ ---------------------------------------------------
3775
+ BehaviorGeneratorTest: test_service_file_is_created
3776
+ ---------------------------------------------------
3777
+ -----------------------------------------
3778
+ T3RailsTest: test_t3_is_found_as_an_asset
3779
+ -----------------------------------------
3780
+ ------------------------------------------------
3781
+ ModuleGeneratorTest: test_module_file_is_created
3782
+ ------------------------------------------------
3783
+ -------------------------------------------------------
3784
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3785
+ -------------------------------------------------------
3786
+ ----------------------------------------------------------------------------------------
3787
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3788
+ ----------------------------------------------------------------------------------------
3789
+ ----------------------------------------------------
3790
+ BootstrapGeneratorTest: test_directories_are_created
3791
+ ----------------------------------------------------
3792
+ -----------------------------------------------------------------
3793
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3794
+ -----------------------------------------------------------------
3795
+ ------------------------------------------------
3796
+ ModuleGeneratorTest: test_module_file_is_created
3797
+ ------------------------------------------------
3798
+ -----------------------------------------
3799
+ T3RailsTest: test_t3_is_found_as_an_asset
3800
+ -----------------------------------------
3801
+ ----------------------------------------------------------------------------------------
3802
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3803
+ ----------------------------------------------------------------------------------------
3804
+ -------------------------------------------------------
3805
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3806
+ -------------------------------------------------------
3807
+ ----------------------------------------------------
3808
+ BootstrapGeneratorTest: test_directories_are_created
3809
+ ----------------------------------------------------
3810
+ -----------------------------------------------------------------
3811
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3812
+ -----------------------------------------------------------------
3813
+ --------------------------------------------------
3814
+ ServiceGeneratorTest: test_service_file_is_created
3815
+ --------------------------------------------------
3816
+ ---------------------------------------------------
3817
+ BehaviorGeneratorTest: test_service_file_is_created
3818
+ ---------------------------------------------------
3819
+ -----------------------------------------
3820
+ T3RailsTest: test_t3_is_found_as_an_asset
3821
+ -----------------------------------------
3822
+ -----------------------------------------------------------------
3823
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3824
+ -----------------------------------------------------------------
3825
+ -------------------------------------------------------
3826
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3827
+ -------------------------------------------------------
3828
+ ----------------------------------------------------------------------------------------
3829
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3830
+ ----------------------------------------------------------------------------------------
3831
+ ----------------------------------------------------
3832
+ BootstrapGeneratorTest: test_directories_are_created
3833
+ ----------------------------------------------------
3834
+ --------------------------------------------------
3835
+ ServiceGeneratorTest: test_service_file_is_created
3836
+ --------------------------------------------------
3837
+ ---------------------------------------------------
3838
+ BehaviorGeneratorTest: test_service_file_is_created
3839
+ ---------------------------------------------------
3840
+ ------------------------------------------------
3841
+ ModuleGeneratorTest: test_module_file_is_created
3842
+ ------------------------------------------------
3843
+ ------------------------------------------------
3844
+ ModuleGeneratorTest: test_module_file_is_created
3845
+ ------------------------------------------------
3846
+ -----------------------------------------
3847
+ T3RailsTest: test_t3_is_found_as_an_asset
3848
+ -----------------------------------------
3849
+ --------------------------------------------------
3850
+ ServiceGeneratorTest: test_service_file_is_created
3851
+ --------------------------------------------------
3852
+ ----------------------------------------------------
3853
+ BootstrapGeneratorTest: test_directories_are_created
3854
+ ----------------------------------------------------
3855
+ -------------------------------------------------------
3856
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3857
+ -------------------------------------------------------
3858
+ ----------------------------------------------------------------------------------------
3859
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3860
+ ----------------------------------------------------------------------------------------
3861
+ -----------------------------------------------------------------
3862
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3863
+ -----------------------------------------------------------------
3864
+ ---------------------------------------------------
3865
+ BehaviorGeneratorTest: test_service_file_is_created
3866
+ ---------------------------------------------------
3867
+ ----------------------------------------------------------------------------------------
3868
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3869
+ ----------------------------------------------------------------------------------------
3870
+ ----------------------------------------------------
3871
+ BootstrapGeneratorTest: test_directories_are_created
3872
+ ----------------------------------------------------
3873
+ -------------------------------------------------------
3874
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3875
+ -------------------------------------------------------
3876
+ -----------------------------------------------------------------
3877
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3878
+ -----------------------------------------------------------------
3879
+ ------------------------------------------------
3880
+ ModuleGeneratorTest: test_module_file_is_created
3881
+ ------------------------------------------------
3882
+ ---------------------------------------------------
3883
+ BehaviorGeneratorTest: test_service_file_is_created
3884
+ ---------------------------------------------------
3885
+ --------------------------------------------------
3886
+ ServiceGeneratorTest: test_service_file_is_created
3887
+ --------------------------------------------------
3888
+ -----------------------------------------
3889
+ T3RailsTest: test_t3_is_found_as_an_asset
3890
+ -----------------------------------------
3891
+ --------------------------------------------------
3892
+ ServiceGeneratorTest: test_service_file_is_created
3893
+ --------------------------------------------------
3894
+ -----------------------------------------
3895
+ T3RailsTest: test_t3_is_found_as_an_asset
3896
+ -----------------------------------------
3897
+ ---------------------------------------------------
3898
+ BehaviorGeneratorTest: test_service_file_is_created
3899
+ ---------------------------------------------------
3900
+ -----------------------------------------------------------------
3901
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3902
+ -----------------------------------------------------------------
3903
+ -------------------------------------------------------
3904
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3905
+ -------------------------------------------------------
3906
+ ----------------------------------------------------------------------------------------
3907
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3908
+ ----------------------------------------------------------------------------------------
3909
+ ----------------------------------------------------
3910
+ BootstrapGeneratorTest: test_directories_are_created
3911
+ ----------------------------------------------------
3912
+ ------------------------------------------------
3913
+ ModuleGeneratorTest: test_module_file_is_created
3914
+ ------------------------------------------------
3915
+ ---------------------------------------------------
3916
+ BehaviorGeneratorTest: test_service_file_is_created
3917
+ ---------------------------------------------------
3918
+ ----------------------------------------------------
3919
+ BootstrapGeneratorTest: test_directories_are_created
3920
+ ----------------------------------------------------
3921
+ -----------------------------------------------------------------
3922
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3923
+ -----------------------------------------------------------------
3924
+ ----------------------------------------------------------------------------------------
3925
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3926
+ ----------------------------------------------------------------------------------------
3927
+ -------------------------------------------------------
3928
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3929
+ -------------------------------------------------------
3930
+ --------------------------------------------------
3931
+ ServiceGeneratorTest: test_service_file_is_created
3932
+ --------------------------------------------------
3933
+ ------------------------------------------------
3934
+ ModuleGeneratorTest: test_module_file_is_created
3935
+ ------------------------------------------------
3936
+ -----------------------------------------
3937
+ T3RailsTest: test_t3_is_found_as_an_asset
3938
+ -----------------------------------------
3939
+ -----------------------------------------
3940
+ T3RailsTest: test_t3_is_found_as_an_asset
3941
+ -----------------------------------------
3942
+ --------------------------------------------------
3943
+ ServiceGeneratorTest: test_service_file_is_created
3944
+ --------------------------------------------------
3945
+ ----------------------------------------------------------------------------------------
3946
+ BootstrapGeneratorTest: test_.gitkeep_files_are_not_created_when_skip_git_option_is_true
3947
+ ----------------------------------------------------------------------------------------
3948
+ ----------------------------------------------------
3949
+ BootstrapGeneratorTest: test_directories_are_created
3950
+ ----------------------------------------------------
3951
+ -------------------------------------------------------
3952
+ BootstrapGeneratorTest: test_.gitkeep_files_are_created
3953
+ -------------------------------------------------------
3954
+ -----------------------------------------------------------------
3955
+ BootstrapGeneratorTest: test_files_are_required_in_application.js
3956
+ -----------------------------------------------------------------
3957
+ ------------------------------------------------
3958
+ ModuleGeneratorTest: test_module_file_is_created
3959
+ ------------------------------------------------
3960
+ ---------------------------------------------------
3961
+ BehaviorGeneratorTest: test_service_file_is_created
3962
+ ---------------------------------------------------