pattern_generator 0.0.4 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/generators/base_generator.rb +59 -0
- data/lib/generators/form/form_generator.rb +9 -0
- data/lib/generators/form/templates/form.rb +5 -0
- data/lib/generators/form/templates/form_spec.rb +5 -0
- data/lib/generators/form/templates/form_test.rb +7 -0
- data/lib/generators/policy/policy_generator.rb +3 -18
- data/lib/generators/policy/templates/policy.rb +1 -5
- data/lib/generators/policy/templates/policy_spec.rb +2 -6
- data/lib/generators/policy/templates/policy_test.rb +1 -1
- data/lib/generators/poro/poro_generator.rb +9 -16
- data/lib/generators/service/service_generator.rb +3 -18
- data/lib/generators/service/templates/service.rb +1 -5
- data/lib/generators/service/templates/service_spec.rb +2 -6
- data/lib/generators/service/templates/service_test.rb +1 -1
- data/lib/pattern_generator.rb +6 -0
- data/lib/pattern_generator/version.rb +1 -1
- data/test/dummy/config/application.rb +0 -1
- data/test/generators/form_generator_test.rb +53 -0
- data/test/generators/policy_generator_test.rb +15 -2
- data/test/generators/poro_generator_test.rb +1 -2
- data/test/generators/service_generator_test.rb +17 -4
- data/test/test_helper.rb +6 -2
- metadata +10 -29
- data/test/dummy/README.rdoc +0 -28
- data/test/dummy/app/assets/javascripts/application.js +0 -13
- data/test/dummy/app/assets/stylesheets/application.css +0 -15
- data/test/dummy/app/controllers/application_controller.rb +0 -5
- data/test/dummy/app/helpers/application_helper.rb +0 -2
- data/test/dummy/app/views/layouts/application.html.erb +0 -14
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +0 -0
- data/test/dummy/log/test.log +0 -2107
- data/test/dummy/public/404.html +0 -67
- data/test/dummy/public/422.html +0 -67
- data/test/dummy/public/500.html +0 -66
- data/test/dummy/public/favicon.ico +0 -0
data/test/test_helper.rb
CHANGED
@@ -1,10 +1,13 @@
|
|
1
1
|
# Configure Rails Environment
|
2
2
|
ENV["RAILS_ENV"] = "test"
|
3
3
|
|
4
|
+
require "byebug"
|
5
|
+
|
4
6
|
require File.expand_path("../../test/dummy/config/environment.rb", __FILE__)
|
5
|
-
|
7
|
+
|
6
8
|
require "rails/test_help"
|
7
|
-
|
9
|
+
|
10
|
+
ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../test/dummy/db/migrate", __FILE__)]
|
8
11
|
|
9
12
|
# Filter out Minitest backtrace while allowing backtrace from other libraries
|
10
13
|
# to be shown.
|
@@ -18,3 +21,4 @@ if ActiveSupport::TestCase.respond_to?(:fixture_path=)
|
|
18
21
|
ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
|
19
22
|
ActiveSupport::TestCase.fixtures :all
|
20
23
|
end
|
24
|
+
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pattern_generator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sung Won Cho
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-08-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -76,6 +76,11 @@ extra_rdoc_files: []
|
|
76
76
|
files:
|
77
77
|
- MIT-LICENSE
|
78
78
|
- Rakefile
|
79
|
+
- lib/generators/base_generator.rb
|
80
|
+
- lib/generators/form/form_generator.rb
|
81
|
+
- lib/generators/form/templates/form.rb
|
82
|
+
- lib/generators/form/templates/form_spec.rb
|
83
|
+
- lib/generators/form/templates/form_test.rb
|
79
84
|
- lib/generators/policy/policy_generator.rb
|
80
85
|
- lib/generators/policy/templates/policy.rb
|
81
86
|
- lib/generators/policy/templates/policy_spec.rb
|
@@ -91,13 +96,7 @@ files:
|
|
91
96
|
- lib/pattern_generator.rb
|
92
97
|
- lib/pattern_generator/version.rb
|
93
98
|
- lib/tasks/pattern_generator_tasks.rake
|
94
|
-
- test/dummy/README.rdoc
|
95
99
|
- test/dummy/Rakefile
|
96
|
-
- test/dummy/app/assets/javascripts/application.js
|
97
|
-
- test/dummy/app/assets/stylesheets/application.css
|
98
|
-
- test/dummy/app/controllers/application_controller.rb
|
99
|
-
- test/dummy/app/helpers/application_helper.rb
|
100
|
-
- test/dummy/app/views/layouts/application.html.erb
|
101
100
|
- test/dummy/bin/bundle
|
102
101
|
- test/dummy/bin/rails
|
103
102
|
- test/dummy/bin/rake
|
@@ -122,13 +121,7 @@ files:
|
|
122
121
|
- test/dummy/config/routes.rb
|
123
122
|
- test/dummy/config/secrets.yml
|
124
123
|
- test/dummy/db/schema.rb
|
125
|
-
- test/
|
126
|
-
- test/dummy/log/development.log
|
127
|
-
- test/dummy/log/test.log
|
128
|
-
- test/dummy/public/404.html
|
129
|
-
- test/dummy/public/422.html
|
130
|
-
- test/dummy/public/500.html
|
131
|
-
- test/dummy/public/favicon.ico
|
124
|
+
- test/generators/form_generator_test.rb
|
132
125
|
- test/generators/policy_generator_test.rb
|
133
126
|
- test/generators/poro_generator_test.rb
|
134
127
|
- test/generators/service_generator_test.rb
|
@@ -153,16 +146,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
153
146
|
version: '0'
|
154
147
|
requirements: []
|
155
148
|
rubyforge_project:
|
156
|
-
rubygems_version: 2.
|
149
|
+
rubygems_version: 2.5.1
|
157
150
|
signing_key:
|
158
151
|
specification_version: 4
|
159
152
|
summary: The missing generators for Rails design patterns.
|
160
153
|
test_files:
|
161
|
-
- test/dummy/app/assets/javascripts/application.js
|
162
|
-
- test/dummy/app/assets/stylesheets/application.css
|
163
|
-
- test/dummy/app/controllers/application_controller.rb
|
164
|
-
- test/dummy/app/helpers/application_helper.rb
|
165
|
-
- test/dummy/app/views/layouts/application.html.erb
|
166
154
|
- test/dummy/bin/bundle
|
167
155
|
- test/dummy/bin/rails
|
168
156
|
- test/dummy/bin/rake
|
@@ -187,15 +175,8 @@ test_files:
|
|
187
175
|
- test/dummy/config/secrets.yml
|
188
176
|
- test/dummy/config.ru
|
189
177
|
- test/dummy/db/schema.rb
|
190
|
-
- test/dummy/db/test.sqlite3
|
191
|
-
- test/dummy/log/development.log
|
192
|
-
- test/dummy/log/test.log
|
193
|
-
- test/dummy/public/404.html
|
194
|
-
- test/dummy/public/422.html
|
195
|
-
- test/dummy/public/500.html
|
196
|
-
- test/dummy/public/favicon.ico
|
197
178
|
- test/dummy/Rakefile
|
198
|
-
- test/
|
179
|
+
- test/generators/form_generator_test.rb
|
199
180
|
- test/generators/policy_generator_test.rb
|
200
181
|
- test/generators/poro_generator_test.rb
|
201
182
|
- test/generators/service_generator_test.rb
|
data/test/dummy/README.rdoc
DELETED
@@ -1,28 +0,0 @@
|
|
1
|
-
== README
|
2
|
-
|
3
|
-
This README would normally document whatever steps are necessary to get the
|
4
|
-
application up and running.
|
5
|
-
|
6
|
-
Things you may want to cover:
|
7
|
-
|
8
|
-
* Ruby version
|
9
|
-
|
10
|
-
* System dependencies
|
11
|
-
|
12
|
-
* Configuration
|
13
|
-
|
14
|
-
* Database creation
|
15
|
-
|
16
|
-
* Database initialization
|
17
|
-
|
18
|
-
* How to run the test suite
|
19
|
-
|
20
|
-
* Services (job queues, cache servers, search engines, etc.)
|
21
|
-
|
22
|
-
* Deployment instructions
|
23
|
-
|
24
|
-
* ...
|
25
|
-
|
26
|
-
|
27
|
-
Please feel free to use a different markup language if you do not plan to run
|
28
|
-
<tt>rake doc:app</tt>.
|
@@ -1,13 +0,0 @@
|
|
1
|
-
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
2
|
-
// listed below.
|
3
|
-
//
|
4
|
-
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
5
|
-
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
|
6
|
-
//
|
7
|
-
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
8
|
-
// compiled file.
|
9
|
-
//
|
10
|
-
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
|
11
|
-
// about supported directives.
|
12
|
-
//
|
13
|
-
//= require_tree .
|
@@ -1,15 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
-
* listed below.
|
4
|
-
*
|
5
|
-
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
|
-
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
|
7
|
-
*
|
8
|
-
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
9
|
-
* compiled file so the styles you add here take precedence over styles defined in any styles
|
10
|
-
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
|
11
|
-
* file per style scope.
|
12
|
-
*
|
13
|
-
*= require_tree .
|
14
|
-
*= require_self
|
15
|
-
*/
|
@@ -1,14 +0,0 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<html>
|
3
|
-
<head>
|
4
|
-
<title>Dummy</title>
|
5
|
-
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
|
6
|
-
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
|
7
|
-
<%= csrf_meta_tags %>
|
8
|
-
</head>
|
9
|
-
<body>
|
10
|
-
|
11
|
-
<%= yield %>
|
12
|
-
|
13
|
-
</body>
|
14
|
-
</html>
|
data/test/dummy/db/test.sqlite3
DELETED
Binary file
|
File without changes
|
data/test/dummy/log/test.log
DELETED
@@ -1,2107 +0,0 @@
|
|
1
|
-
[1m[36m (3.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
3
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
5
|
-
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
6
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
7
|
-
[1m[35m (0.1ms)[0m begin transaction
|
8
|
-
----------------------------------------------------
|
9
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
10
|
-
----------------------------------------------------
|
11
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12
|
-
[1m[35m (0.1ms)[0m begin transaction
|
13
|
-
---------------------------------------------------------
|
14
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
15
|
-
---------------------------------------------------------
|
16
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
17
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
18
|
-
[1m[36m (3.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
19
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
20
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
21
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
22
|
-
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
23
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
24
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25
|
-
---------------------------------------------------------
|
26
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
27
|
-
---------------------------------------------------------
|
28
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
29
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30
|
-
----------------------------------------------------
|
31
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
32
|
-
----------------------------------------------------
|
33
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
34
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
35
|
-
[1m[36m (3.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
36
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
37
|
-
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
38
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
39
|
-
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
40
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
41
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
42
|
-
----------------------------------------------------
|
43
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
44
|
-
----------------------------------------------------
|
45
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
46
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
47
|
-
[1m[36m (3.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
48
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
49
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
50
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
51
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
52
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
53
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
54
|
-
----------------------------------------------------
|
55
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
56
|
-
----------------------------------------------------
|
57
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
58
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
59
|
-
[1m[36m (3.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
60
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
61
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
62
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
63
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
64
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
65
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
66
|
-
----------------------------------------------------
|
67
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
68
|
-
----------------------------------------------------
|
69
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
70
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
71
|
-
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
72
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
73
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
74
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
75
|
-
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
76
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
77
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
78
|
-
----------------------------------------------------
|
79
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
80
|
-
----------------------------------------------------
|
81
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
82
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
83
|
-
[1m[36m (3.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
84
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
85
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
86
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
87
|
-
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
88
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
89
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
90
|
-
----------------------------------------------------
|
91
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
92
|
-
----------------------------------------------------
|
93
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
94
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
95
|
-
[1m[36m (3.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
96
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
97
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
98
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
99
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
100
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
101
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
102
|
-
----------------------------------------------------
|
103
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
104
|
-
----------------------------------------------------
|
105
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
106
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
107
|
-
---------------------------------------------------------
|
108
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
109
|
-
---------------------------------------------------------
|
110
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
111
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
112
|
-
[1m[36m (3.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
113
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
114
|
-
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
115
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
116
|
-
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
117
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
118
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
119
|
-
----------------------------------------------------
|
120
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
121
|
-
----------------------------------------------------
|
122
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
123
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
124
|
-
---------------------------------------------------------
|
125
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
126
|
-
---------------------------------------------------------
|
127
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
128
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
129
|
-
[1m[36m (1.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
130
|
-
[1m[35m (0.5ms)[0m select sqlite_version(*)
|
131
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
132
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
133
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
134
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
135
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
136
|
-
----------------------------------------------------
|
137
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
138
|
-
----------------------------------------------------
|
139
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
140
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
141
|
-
---------------------------------------------------------
|
142
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
143
|
-
---------------------------------------------------------
|
144
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
145
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
146
|
-
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
147
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
148
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
149
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
150
|
-
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
151
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
152
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
153
|
-
----------------------------------------------------
|
154
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
155
|
-
----------------------------------------------------
|
156
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
157
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
158
|
-
---------------------------------------------------------
|
159
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
160
|
-
---------------------------------------------------------
|
161
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
162
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
163
|
-
[1m[36m (3.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
164
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
165
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
166
|
-
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
167
|
-
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
168
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
169
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
170
|
-
---------------------------------------------------------
|
171
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
172
|
-
---------------------------------------------------------
|
173
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
174
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
175
|
-
----------------------------------------------------
|
176
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
177
|
-
----------------------------------------------------
|
178
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
179
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
180
|
-
[1m[36m (1.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
181
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
182
|
-
[1m[36m (1.3ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
183
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
184
|
-
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
185
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
186
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
187
|
-
---------------------------------------------------------
|
188
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
189
|
-
---------------------------------------------------------
|
190
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
191
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
192
|
-
----------------------------------------------------
|
193
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
194
|
-
----------------------------------------------------
|
195
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
196
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
197
|
-
[1m[36m (2.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
198
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
199
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
200
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
201
|
-
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
202
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
203
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
204
|
-
----------------------------------------------------
|
205
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
206
|
-
----------------------------------------------------
|
207
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
208
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
209
|
-
---------------------------------------------------------
|
210
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
211
|
-
---------------------------------------------------------
|
212
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
213
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
214
|
-
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
215
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
216
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
217
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
218
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
219
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
220
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
221
|
-
----------------------------------------------------
|
222
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
223
|
-
----------------------------------------------------
|
224
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
225
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
226
|
-
---------------------------------------------------------
|
227
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
228
|
-
---------------------------------------------------------
|
229
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
230
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
231
|
-
[1m[36m (3.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
232
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
233
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
234
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
235
|
-
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
236
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
237
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
238
|
-
---------------------------------------------------------
|
239
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
240
|
-
---------------------------------------------------------
|
241
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
242
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
243
|
-
----------------------------------------------------
|
244
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
245
|
-
----------------------------------------------------
|
246
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
247
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
248
|
-
[1m[36m (3.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
249
|
-
[1m[35m (0.5ms)[0m select sqlite_version(*)
|
250
|
-
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
251
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
252
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
253
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
254
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
255
|
-
---------------------------------------------------------
|
256
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
257
|
-
---------------------------------------------------------
|
258
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
259
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
260
|
-
----------------------------------------------------
|
261
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
262
|
-
----------------------------------------------------
|
263
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
264
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
265
|
-
[1m[36m (3.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
266
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
267
|
-
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
268
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
269
|
-
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
270
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
271
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
272
|
-
---------------------------------------------------------
|
273
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
274
|
-
---------------------------------------------------------
|
275
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
276
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
277
|
-
----------------------------------------------------
|
278
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
279
|
-
----------------------------------------------------
|
280
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
281
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
282
|
-
[1m[36m (3.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
283
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
284
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
285
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
286
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
287
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
288
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
289
|
-
----------------------------------------------------
|
290
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
291
|
-
----------------------------------------------------
|
292
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
293
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
294
|
-
---------------------------------------------------------
|
295
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
296
|
-
---------------------------------------------------------
|
297
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
298
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
299
|
-
[1m[36m (2.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
300
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
301
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
302
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
303
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
304
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
305
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
306
|
-
---------------------------------------------------------
|
307
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
308
|
-
---------------------------------------------------------
|
309
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
310
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
311
|
-
----------------------------------------------------
|
312
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
313
|
-
----------------------------------------------------
|
314
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
315
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
316
|
-
[1m[36m (2.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
317
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
318
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
319
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
320
|
-
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
321
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
322
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
323
|
-
----------------------------------------------------
|
324
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
325
|
-
----------------------------------------------------
|
326
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
327
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
328
|
-
---------------------------------------------------------
|
329
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
330
|
-
---------------------------------------------------------
|
331
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
332
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
333
|
-
[1m[36m (2.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
334
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
335
|
-
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
336
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
337
|
-
[1m[36m (1.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
338
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
339
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
340
|
-
----------------------------------------------------
|
341
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
342
|
-
----------------------------------------------------
|
343
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
344
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
345
|
-
---------------------------------------------------------
|
346
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
347
|
-
---------------------------------------------------------
|
348
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
349
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
350
|
-
[1m[36m (3.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
351
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
352
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
353
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
354
|
-
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
355
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
356
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
357
|
-
----------------------------------------------------
|
358
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
359
|
-
----------------------------------------------------
|
360
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
361
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
362
|
-
---------------------------------------------------------
|
363
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
364
|
-
---------------------------------------------------------
|
365
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
366
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
367
|
-
[1m[36m (2.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
368
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
369
|
-
[1m[36m (3.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
370
|
-
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
371
|
-
[1m[36m (3.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
372
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
373
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
374
|
-
---------------------------------------------------------
|
375
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
376
|
-
---------------------------------------------------------
|
377
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
378
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
379
|
-
----------------------------------------------------
|
380
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
381
|
-
----------------------------------------------------
|
382
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
383
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
384
|
-
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
385
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
386
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
387
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
388
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
389
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
390
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
391
|
-
----------------------------------------------------
|
392
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
393
|
-
----------------------------------------------------
|
394
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
395
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
396
|
-
---------------------------------------------------------
|
397
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
398
|
-
---------------------------------------------------------
|
399
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
400
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
401
|
-
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
402
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
403
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
404
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
405
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
406
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
407
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
408
|
-
----------------------------------------------------
|
409
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
410
|
-
----------------------------------------------------
|
411
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
412
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
413
|
-
---------------------------------------------------------
|
414
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
415
|
-
---------------------------------------------------------
|
416
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
417
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
418
|
-
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
419
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
420
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
421
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
422
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
423
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
424
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
425
|
-
----------------------------------------------------
|
426
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
427
|
-
----------------------------------------------------
|
428
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
429
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
430
|
-
---------------------------------------------------------
|
431
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
432
|
-
---------------------------------------------------------
|
433
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
434
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
435
|
-
[1m[36m (3.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
436
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
437
|
-
[1m[36m (1.3ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
438
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
439
|
-
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
440
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
441
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
442
|
-
---------------------------------------------------------
|
443
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
444
|
-
---------------------------------------------------------
|
445
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
446
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
447
|
-
----------------------------------------------------
|
448
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
449
|
-
----------------------------------------------------
|
450
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
451
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
452
|
-
[1m[36m (3.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
453
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
454
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
455
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
456
|
-
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
457
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
458
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
459
|
-
----------------------------------------------------
|
460
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
461
|
-
----------------------------------------------------
|
462
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
463
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
464
|
-
---------------------------------------------------------
|
465
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
466
|
-
---------------------------------------------------------
|
467
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
468
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
469
|
-
[1m[36m (3.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
470
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
471
|
-
[1m[36m (1.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
472
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
473
|
-
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
474
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
475
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
476
|
-
---------------------------------------------------------
|
477
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
478
|
-
---------------------------------------------------------
|
479
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
480
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
481
|
-
----------------------------------------------------
|
482
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
483
|
-
----------------------------------------------------
|
484
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
485
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
486
|
-
[1m[36m (3.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
487
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
488
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
489
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
490
|
-
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
491
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
492
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
493
|
-
----------------------------------------------------
|
494
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
495
|
-
----------------------------------------------------
|
496
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
497
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
498
|
-
---------------------------------------------------------
|
499
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
500
|
-
---------------------------------------------------------
|
501
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
502
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
503
|
-
[1m[36m (3.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
504
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
505
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
506
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
507
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
508
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
509
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
510
|
-
----------------------------------------------------
|
511
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
512
|
-
----------------------------------------------------
|
513
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
514
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
515
|
-
---------------------------------------------------------
|
516
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
517
|
-
---------------------------------------------------------
|
518
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
519
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
520
|
-
[1m[36m (2.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
521
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
522
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
523
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
524
|
-
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
525
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
526
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
527
|
-
----------------------------------------------------
|
528
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
529
|
-
----------------------------------------------------
|
530
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
531
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
532
|
-
---------------------------------------------------------
|
533
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
534
|
-
---------------------------------------------------------
|
535
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
536
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
537
|
-
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
538
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
539
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
540
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
541
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
542
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
543
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
544
|
-
---------------------------------------------------------
|
545
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
546
|
-
---------------------------------------------------------
|
547
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
548
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
549
|
-
----------------------------------------------------
|
550
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
551
|
-
----------------------------------------------------
|
552
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
553
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
554
|
-
[1m[36m (3.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
555
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
556
|
-
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
557
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
558
|
-
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
559
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
560
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
561
|
-
----------------------------------------------------
|
562
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
563
|
-
----------------------------------------------------
|
564
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
565
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
566
|
-
---------------------------------------------------------
|
567
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
568
|
-
---------------------------------------------------------
|
569
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
570
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
571
|
-
[1m[36m (2.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
572
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
573
|
-
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
574
|
-
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
575
|
-
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
576
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
577
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
578
|
-
----------------------------------------------------
|
579
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
580
|
-
----------------------------------------------------
|
581
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
582
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
583
|
-
---------------------------------------------------------
|
584
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
585
|
-
---------------------------------------------------------
|
586
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
587
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
588
|
-
[1m[36m (1.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
589
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
590
|
-
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
591
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
592
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
593
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
594
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
595
|
-
---------------------------------------------------------
|
596
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
597
|
-
---------------------------------------------------------
|
598
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
599
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
600
|
-
----------------------------------------------------
|
601
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
602
|
-
----------------------------------------------------
|
603
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
604
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
605
|
-
[1m[36m (2.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
606
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
607
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
608
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
609
|
-
[1m[36m (1.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
610
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
611
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
612
|
-
---------------------------------------------------------
|
613
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
614
|
-
---------------------------------------------------------
|
615
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
616
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
617
|
-
----------------------------------------------------
|
618
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
619
|
-
----------------------------------------------------
|
620
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
621
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
622
|
-
[1m[36m (2.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
623
|
-
[1m[35m (0.4ms)[0m select sqlite_version(*)
|
624
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
625
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
626
|
-
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
627
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
628
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
629
|
-
---------------------------------------------------------
|
630
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
631
|
-
---------------------------------------------------------
|
632
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
633
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
634
|
-
----------------------------------------------------
|
635
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
636
|
-
----------------------------------------------------
|
637
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
638
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
639
|
-
[1m[36m (3.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
640
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
641
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
642
|
-
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
643
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
644
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
645
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
646
|
-
----------------------------------------------------
|
647
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
648
|
-
----------------------------------------------------
|
649
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
650
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
651
|
-
---------------------------------------------------------
|
652
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
653
|
-
---------------------------------------------------------
|
654
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
655
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
656
|
-
[1m[36m (2.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
657
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
658
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
659
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
660
|
-
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
661
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
662
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
663
|
-
---------------------------------------------------------
|
664
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
665
|
-
---------------------------------------------------------
|
666
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
667
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
668
|
-
----------------------------------------------------
|
669
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
670
|
-
----------------------------------------------------
|
671
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
672
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
673
|
-
[1m[36m (3.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
674
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
675
|
-
[1m[36m (1.3ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
676
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
677
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
678
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
679
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
680
|
-
----------------------------------------------------
|
681
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
682
|
-
----------------------------------------------------
|
683
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
684
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
685
|
-
---------------------------------------------------------
|
686
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
687
|
-
---------------------------------------------------------
|
688
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
689
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
690
|
-
[1m[36m (3.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
691
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
692
|
-
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
693
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
694
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
695
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
696
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
697
|
-
----------------------------------------------------
|
698
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
699
|
-
----------------------------------------------------
|
700
|
-
[1m[35m (0.5ms)[0m rollback transaction
|
701
|
-
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
702
|
-
---------------------------------------------------------
|
703
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
704
|
-
---------------------------------------------------------
|
705
|
-
[1m[35m (0.7ms)[0m rollback transaction
|
706
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
707
|
-
[1m[36m (2.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
708
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
709
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
710
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
711
|
-
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
712
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
713
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
714
|
-
----------------------------------------------------
|
715
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
716
|
-
----------------------------------------------------
|
717
|
-
[1m[35m (0.7ms)[0m rollback transaction
|
718
|
-
[1m[36m (6.8ms)[0m [1mbegin transaction[0m
|
719
|
-
---------------------------------------------------------
|
720
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
721
|
-
---------------------------------------------------------
|
722
|
-
[1m[35m (0.3ms)[0m rollback transaction
|
723
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
724
|
-
[1m[36m (2.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
725
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
726
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
727
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
728
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
729
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
730
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
731
|
-
----------------------------------------------------
|
732
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
733
|
-
----------------------------------------------------
|
734
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
735
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
736
|
-
---------------------------------------------------------
|
737
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
738
|
-
---------------------------------------------------------
|
739
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
740
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
741
|
-
[1m[36m (3.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
742
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
743
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
744
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
745
|
-
[1m[36m (1.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
746
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
747
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
748
|
-
---------------------------------------------------------
|
749
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
750
|
-
---------------------------------------------------------
|
751
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
752
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
753
|
-
----------------------------------------------------
|
754
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
755
|
-
----------------------------------------------------
|
756
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
757
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
758
|
-
[1m[36m (1.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
759
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
760
|
-
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
761
|
-
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
762
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
763
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
764
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
765
|
-
---------------------------------------------------------
|
766
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
767
|
-
---------------------------------------------------------
|
768
|
-
[1m[35m (0.5ms)[0m rollback transaction
|
769
|
-
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
770
|
-
----------------------------------------------------
|
771
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
772
|
-
----------------------------------------------------
|
773
|
-
[1m[35m (0.3ms)[0m rollback transaction
|
774
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
775
|
-
[1m[36m (2.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
776
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
777
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
778
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
779
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
780
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
781
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
782
|
-
----------------------------------------------------
|
783
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
784
|
-
----------------------------------------------------
|
785
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
786
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
787
|
-
---------------------------------------------------------
|
788
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
789
|
-
---------------------------------------------------------
|
790
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
791
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
792
|
-
[1m[36m (3.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
793
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
794
|
-
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
795
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
796
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
797
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
798
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
799
|
-
----------------------------------------------------
|
800
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
801
|
-
----------------------------------------------------
|
802
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
803
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
804
|
-
---------------------------------------------------------
|
805
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
806
|
-
---------------------------------------------------------
|
807
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
808
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
809
|
-
[1m[36m (3.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
810
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
811
|
-
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
812
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
813
|
-
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
814
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
815
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
816
|
-
---------------------------------------------------------
|
817
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
818
|
-
---------------------------------------------------------
|
819
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
820
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
821
|
-
----------------------------------------------------
|
822
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
823
|
-
----------------------------------------------------
|
824
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
825
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
826
|
-
[1m[36m (3.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
827
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
828
|
-
[1m[36m (1.3ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
829
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
830
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
831
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
832
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
833
|
-
---------------------------------------------------------
|
834
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
835
|
-
---------------------------------------------------------
|
836
|
-
[1m[35m (0.6ms)[0m rollback transaction
|
837
|
-
[1m[36m (1.1ms)[0m [1mbegin transaction[0m
|
838
|
-
----------------------------------------------------
|
839
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
840
|
-
----------------------------------------------------
|
841
|
-
[1m[35m (0.3ms)[0m rollback transaction
|
842
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
843
|
-
[1m[36m (3.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
844
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
845
|
-
[1m[36m (1.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
846
|
-
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
847
|
-
[1m[36m (1.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
848
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
849
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
850
|
-
---------------------------------------------------------
|
851
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
852
|
-
---------------------------------------------------------
|
853
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
854
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
855
|
-
----------------------------------------------------
|
856
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
857
|
-
----------------------------------------------------
|
858
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
859
|
-
[1m[36m (3.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
860
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
861
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
862
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
863
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
864
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
865
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
866
|
-
---------------------------------------------------------
|
867
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
868
|
-
---------------------------------------------------------
|
869
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
870
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
871
|
-
----------------------------------------------------
|
872
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
873
|
-
----------------------------------------------------
|
874
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
875
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
876
|
-
--------------------------------------------------------------------------------
|
877
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
878
|
-
--------------------------------------------------------------------------------
|
879
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
880
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
881
|
-
[1m[36m (3.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
882
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
883
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
884
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
885
|
-
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
886
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
887
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
888
|
-
--------------------------------------------------------------------------------
|
889
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
890
|
-
--------------------------------------------------------------------------------
|
891
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
892
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
893
|
-
---------------------------------------------------------
|
894
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
895
|
-
---------------------------------------------------------
|
896
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
897
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
898
|
-
----------------------------------------------------
|
899
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
900
|
-
----------------------------------------------------
|
901
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
902
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
903
|
-
[1m[36m (3.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
904
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
905
|
-
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
906
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
907
|
-
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
908
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
909
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
910
|
-
----------------------------------------------------
|
911
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
912
|
-
----------------------------------------------------
|
913
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
914
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
915
|
-
---------------------------------------------------------
|
916
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
917
|
-
---------------------------------------------------------
|
918
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
919
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
920
|
-
--------------------------------------------------------------------------------
|
921
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
922
|
-
--------------------------------------------------------------------------------
|
923
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
924
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
925
|
-
[1m[36m (3.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
926
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
927
|
-
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
928
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
929
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
930
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
931
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
932
|
-
----------------------------------------------------
|
933
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
934
|
-
----------------------------------------------------
|
935
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
936
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
937
|
-
---------------------------------------------------------
|
938
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
939
|
-
---------------------------------------------------------
|
940
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
941
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
942
|
-
--------------------------------------------------------------------------------
|
943
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
944
|
-
--------------------------------------------------------------------------------
|
945
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
946
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
947
|
-
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
948
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
949
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
950
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
951
|
-
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
952
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
953
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
954
|
-
----------------------------------------------------
|
955
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
956
|
-
----------------------------------------------------
|
957
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
958
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
959
|
-
---------------------------------------------------------
|
960
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
961
|
-
---------------------------------------------------------
|
962
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
963
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
964
|
-
--------------------------------------------------------------------------------
|
965
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
966
|
-
--------------------------------------------------------------------------------
|
967
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
968
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
969
|
-
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
970
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
971
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
972
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
973
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
974
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
975
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
976
|
-
--------------------------------------------------------------------------------
|
977
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
978
|
-
--------------------------------------------------------------------------------
|
979
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
980
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
981
|
-
---------------------------------------------------------
|
982
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
983
|
-
---------------------------------------------------------
|
984
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
985
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
986
|
-
----------------------------------------------------
|
987
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
988
|
-
----------------------------------------------------
|
989
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
990
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
991
|
-
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
992
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
993
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
994
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
995
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
996
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
997
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
998
|
-
--------------------------------------------------------------------------------
|
999
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1000
|
-
--------------------------------------------------------------------------------
|
1001
|
-
[1m[35m (0.3ms)[0m rollback transaction
|
1002
|
-
[1m[36m (0.6ms)[0m [1mbegin transaction[0m
|
1003
|
-
---------------------------------------------------------
|
1004
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1005
|
-
---------------------------------------------------------
|
1006
|
-
[1m[35m (0.5ms)[0m rollback transaction
|
1007
|
-
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
1008
|
-
----------------------------------------------------
|
1009
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1010
|
-
----------------------------------------------------
|
1011
|
-
[1m[35m (0.3ms)[0m rollback transaction
|
1012
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1013
|
-
[1m[36m (1.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1014
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1015
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1016
|
-
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
1017
|
-
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1018
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1019
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1020
|
-
---------------------------------------------------------
|
1021
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1022
|
-
---------------------------------------------------------
|
1023
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1024
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1025
|
-
----------------------------------------------------
|
1026
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1027
|
-
----------------------------------------------------
|
1028
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1029
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1030
|
-
--------------------------------------------------------------------------------
|
1031
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1032
|
-
--------------------------------------------------------------------------------
|
1033
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1034
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1035
|
-
[1m[36m (3.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1036
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1037
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1038
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1039
|
-
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1040
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1041
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1042
|
-
--------------------------------------------------------------------------------
|
1043
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1044
|
-
--------------------------------------------------------------------------------
|
1045
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1046
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1047
|
-
---------------------------------------------------------
|
1048
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1049
|
-
---------------------------------------------------------
|
1050
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1051
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1052
|
-
----------------------------------------------------
|
1053
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1054
|
-
----------------------------------------------------
|
1055
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1056
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1057
|
-
[1m[36m (2.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1058
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1059
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1060
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1061
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1062
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1063
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1064
|
-
----------------------------------------------------
|
1065
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1066
|
-
----------------------------------------------------
|
1067
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1068
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1069
|
-
---------------------------------------------------------
|
1070
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1071
|
-
---------------------------------------------------------
|
1072
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1073
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1074
|
-
--------------------------------------------------------------------------------
|
1075
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1076
|
-
--------------------------------------------------------------------------------
|
1077
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1078
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1079
|
-
[1m[36m (3.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1080
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1081
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1082
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1083
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1084
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1085
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1086
|
-
----------------------------------------------------
|
1087
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1088
|
-
----------------------------------------------------
|
1089
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1090
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1091
|
-
---------------------------------------------------------
|
1092
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1093
|
-
---------------------------------------------------------
|
1094
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1095
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1096
|
-
--------------------------------------------------------------------------------
|
1097
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1098
|
-
--------------------------------------------------------------------------------
|
1099
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1100
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1101
|
-
[1m[36m (3.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1102
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1103
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1104
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1105
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1106
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1107
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1108
|
-
----------------------------------------------------
|
1109
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1110
|
-
----------------------------------------------------
|
1111
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1112
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1113
|
-
---------------------------------------------------------
|
1114
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1115
|
-
---------------------------------------------------------
|
1116
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1117
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1118
|
-
--------------------------------------------------------------------------------
|
1119
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1120
|
-
--------------------------------------------------------------------------------
|
1121
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1122
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1123
|
-
[1m[36m (3.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1124
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1125
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1126
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1127
|
-
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1128
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1129
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1130
|
-
----------------------------------------------------
|
1131
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1132
|
-
----------------------------------------------------
|
1133
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1134
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1135
|
-
---------------------------------------------------------
|
1136
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1137
|
-
---------------------------------------------------------
|
1138
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1139
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1140
|
-
--------------------------------------------------------------------------------
|
1141
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1142
|
-
--------------------------------------------------------------------------------
|
1143
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1144
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1145
|
-
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1146
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1147
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1148
|
-
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
1149
|
-
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1150
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1151
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1152
|
-
----------------------------------------------------
|
1153
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1154
|
-
----------------------------------------------------
|
1155
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1156
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1157
|
-
--------------------------------------------------------------------------------
|
1158
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1159
|
-
--------------------------------------------------------------------------------
|
1160
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1161
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1162
|
-
---------------------------------------------------------
|
1163
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1164
|
-
---------------------------------------------------------
|
1165
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1166
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1167
|
-
[1m[36m (3.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1168
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1169
|
-
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1170
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1171
|
-
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1172
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1173
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1174
|
-
----------------------------------------------------
|
1175
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1176
|
-
----------------------------------------------------
|
1177
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1178
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1179
|
-
---------------------------------------------------------
|
1180
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1181
|
-
---------------------------------------------------------
|
1182
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1183
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1184
|
-
--------------------------------------------------------------------------------
|
1185
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1186
|
-
--------------------------------------------------------------------------------
|
1187
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1188
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.7ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1189
|
-
[1m[36m (1.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1190
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1191
|
-
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1192
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1193
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1194
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1195
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1196
|
-
----------------------------------------------------
|
1197
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1198
|
-
----------------------------------------------------
|
1199
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1200
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1201
|
-
--------------------------------------------------------------------------------
|
1202
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1203
|
-
--------------------------------------------------------------------------------
|
1204
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1205
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1206
|
-
---------------------------------------------------------
|
1207
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1208
|
-
---------------------------------------------------------
|
1209
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1210
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1211
|
-
[1m[36m (3.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1212
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1213
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1214
|
-
[1m[35m (0.3ms)[0m SELECT version FROM "schema_migrations"
|
1215
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1216
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1217
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1218
|
-
--------------------------------------------------------------------------------
|
1219
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1220
|
-
--------------------------------------------------------------------------------
|
1221
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1222
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1223
|
-
----------------------------------------------------
|
1224
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1225
|
-
----------------------------------------------------
|
1226
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1227
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1228
|
-
---------------------------------------------------------
|
1229
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1230
|
-
---------------------------------------------------------
|
1231
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1232
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1233
|
-
[1m[36m (1.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1234
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1235
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1236
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1237
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1238
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1239
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1240
|
-
[1m[36m (3.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1241
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
1242
|
-
[1m[36m (1.3ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1243
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1244
|
-
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1245
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1246
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1247
|
-
--------------------------------------------------------------------------------
|
1248
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1249
|
-
--------------------------------------------------------------------------------
|
1250
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1251
|
-
---------------------------------------------------------
|
1252
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1253
|
-
---------------------------------------------------------
|
1254
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
1255
|
-
----------------------------------------------------
|
1256
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1257
|
-
----------------------------------------------------
|
1258
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1259
|
-
[1m[36m (3.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1260
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
1261
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1262
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1263
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1264
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1265
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1266
|
-
---------------------------------------------------------
|
1267
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1268
|
-
---------------------------------------------------------
|
1269
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1270
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1271
|
-
----------------------------------------------------
|
1272
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1273
|
-
----------------------------------------------------
|
1274
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1275
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1276
|
-
--------------------------------------------------------------------------------
|
1277
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1278
|
-
--------------------------------------------------------------------------------
|
1279
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1280
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1281
|
-
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1282
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1283
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1284
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1285
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1286
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1287
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1288
|
-
[1m[36m (2.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1289
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1290
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1291
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1292
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1293
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1294
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1295
|
-
--------------------------------------------------------------------------------
|
1296
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1297
|
-
--------------------------------------------------------------------------------
|
1298
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1299
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1300
|
-
---------------------------------------------------------
|
1301
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1302
|
-
---------------------------------------------------------
|
1303
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1304
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1305
|
-
----------------------------------------------------
|
1306
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1307
|
-
----------------------------------------------------
|
1308
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1309
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1310
|
-
---------------------------------------------------
|
1311
|
-
PolicyGeneratorTest: test_correct_file_is_generated
|
1312
|
-
---------------------------------------------------
|
1313
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1314
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1315
|
-
[1m[36m (1.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1316
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1317
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1318
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1319
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1320
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1321
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1322
|
-
---------------------------------------------------
|
1323
|
-
PolicyGeneratorTest: test_correct_file_is_generated
|
1324
|
-
---------------------------------------------------
|
1325
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1326
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1327
|
-
----------------------------------------------------
|
1328
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1329
|
-
----------------------------------------------------
|
1330
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1331
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1332
|
-
--------------------------------------------------------------------------------
|
1333
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1334
|
-
--------------------------------------------------------------------------------
|
1335
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1336
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1337
|
-
---------------------------------------------------------
|
1338
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1339
|
-
---------------------------------------------------------
|
1340
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1341
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1342
|
-
[1m[36m (3.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1343
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1344
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1345
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1346
|
-
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1347
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1348
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1349
|
-
----------------------------------------------------
|
1350
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1351
|
-
----------------------------------------------------
|
1352
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1353
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1354
|
-
---------------------------------------------------------
|
1355
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1356
|
-
---------------------------------------------------------
|
1357
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1358
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1359
|
-
--------------------------------------------------------------------------------
|
1360
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1361
|
-
--------------------------------------------------------------------------------
|
1362
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1363
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1364
|
-
---------------------------------------------------
|
1365
|
-
PolicyGeneratorTest: test_correct_file_is_generated
|
1366
|
-
---------------------------------------------------
|
1367
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1368
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1369
|
-
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1370
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1371
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1372
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1373
|
-
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1374
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1375
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1376
|
-
----------------------------------------------------
|
1377
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1378
|
-
----------------------------------------------------
|
1379
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1380
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1381
|
-
--------------------------------------------------------------------------------
|
1382
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1383
|
-
--------------------------------------------------------------------------------
|
1384
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1385
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1386
|
-
---------------------------------------------------------
|
1387
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1388
|
-
---------------------------------------------------------
|
1389
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1390
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1391
|
-
---------------------------------------------------
|
1392
|
-
PolicyGeneratorTest: test_correct_file_is_generated
|
1393
|
-
---------------------------------------------------
|
1394
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1395
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1396
|
-
[1m[36m (3.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1397
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1398
|
-
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1399
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1400
|
-
[1m[36m (1.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1401
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1402
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1403
|
-
----------------------------------------------------
|
1404
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1405
|
-
----------------------------------------------------
|
1406
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1407
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1408
|
-
--------------------------------------------------------------------------------
|
1409
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1410
|
-
--------------------------------------------------------------------------------
|
1411
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1412
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1413
|
-
---------------------------------------------------------
|
1414
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1415
|
-
---------------------------------------------------------
|
1416
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1417
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1418
|
-
---------------------------------------------------
|
1419
|
-
PolicyGeneratorTest: test_correct_file_is_generated
|
1420
|
-
---------------------------------------------------
|
1421
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1422
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1423
|
-
[1m[36m (3.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1424
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1425
|
-
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1426
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1427
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1428
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1429
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1430
|
-
---------------------------------------------------
|
1431
|
-
PolicyGeneratorTest: test_correct_file_is_generated
|
1432
|
-
---------------------------------------------------
|
1433
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1434
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1435
|
-
---------------------------------------------------------
|
1436
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1437
|
-
---------------------------------------------------------
|
1438
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1439
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1440
|
-
----------------------------------------------------
|
1441
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1442
|
-
----------------------------------------------------
|
1443
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1444
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1445
|
-
--------------------------------------------------------------------------------
|
1446
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1447
|
-
--------------------------------------------------------------------------------
|
1448
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1449
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1450
|
-
[1m[36m (3.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1451
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1452
|
-
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1453
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1454
|
-
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1455
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1456
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1457
|
-
--------------------------------------------------------------------------------
|
1458
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1459
|
-
--------------------------------------------------------------------------------
|
1460
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1461
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1462
|
-
----------------------------------------------------
|
1463
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1464
|
-
----------------------------------------------------
|
1465
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1466
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1467
|
-
---------------------------------------------------------
|
1468
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1469
|
-
---------------------------------------------------------
|
1470
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1471
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1472
|
-
---------------------------------------------------
|
1473
|
-
PolicyGeneratorTest: test_correct_file_is_generated
|
1474
|
-
---------------------------------------------------
|
1475
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1476
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1477
|
-
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1478
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1479
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1480
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1481
|
-
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1482
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1483
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1484
|
-
---------------------------------------------------------
|
1485
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1486
|
-
---------------------------------------------------------
|
1487
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1488
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1489
|
-
----------------------------------------------------
|
1490
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1491
|
-
----------------------------------------------------
|
1492
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1493
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1494
|
-
--------------------------------------------------------------------------------
|
1495
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1496
|
-
--------------------------------------------------------------------------------
|
1497
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1498
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1499
|
-
---------------------------------------------------
|
1500
|
-
PolicyGeneratorTest: test_correct_file_is_generated
|
1501
|
-
---------------------------------------------------
|
1502
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1503
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1504
|
-
-------------------------------------------------
|
1505
|
-
PolicyGeneratorTest: test_rspec_file_is_generated
|
1506
|
-
-------------------------------------------------
|
1507
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1508
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1509
|
-
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1510
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1511
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1512
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1513
|
-
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1514
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1515
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1516
|
-
--------------------------------------------------------------------------------
|
1517
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1518
|
-
--------------------------------------------------------------------------------
|
1519
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1520
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1521
|
-
---------------------------------------------------------
|
1522
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1523
|
-
---------------------------------------------------------
|
1524
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1525
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1526
|
-
----------------------------------------------------
|
1527
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1528
|
-
----------------------------------------------------
|
1529
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1530
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1531
|
-
---------------------------------------------------
|
1532
|
-
PolicyGeneratorTest: test_correct_file_is_generated
|
1533
|
-
---------------------------------------------------
|
1534
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1535
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1536
|
-
-------------------------------------------------
|
1537
|
-
PolicyGeneratorTest: test_rspec_file_is_generated
|
1538
|
-
-------------------------------------------------
|
1539
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1540
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1541
|
-
[1m[36m (3.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1542
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1543
|
-
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1544
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1545
|
-
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1546
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1547
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1548
|
-
-------------------------------------------------
|
1549
|
-
PolicyGeneratorTest: test_rspec_file_is_generated
|
1550
|
-
-------------------------------------------------
|
1551
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1552
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1553
|
-
---------------------------------------------------
|
1554
|
-
PolicyGeneratorTest: test_correct_file_is_generated
|
1555
|
-
---------------------------------------------------
|
1556
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1557
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1558
|
-
--------------------------------------------------------------------------------
|
1559
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1560
|
-
--------------------------------------------------------------------------------
|
1561
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1562
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1563
|
-
----------------------------------------------------
|
1564
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1565
|
-
----------------------------------------------------
|
1566
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1567
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1568
|
-
---------------------------------------------------------
|
1569
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1570
|
-
---------------------------------------------------------
|
1571
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1572
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1573
|
-
[1m[36m (2.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1574
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1575
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1576
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1577
|
-
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1578
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1579
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1580
|
-
-------------------------------------------------
|
1581
|
-
PolicyGeneratorTest: test_rspec_file_is_generated
|
1582
|
-
-------------------------------------------------
|
1583
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1584
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1585
|
-
------------------------------------------------------------------------------
|
1586
|
-
PolicyGeneratorTest: test_if_minitest_is_specified,_minitest_file_is_generated
|
1587
|
-
------------------------------------------------------------------------------
|
1588
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1589
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1590
|
-
---------------------------------------------------
|
1591
|
-
PolicyGeneratorTest: test_correct_file_is_generated
|
1592
|
-
---------------------------------------------------
|
1593
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1594
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1595
|
-
----------------------------------------------------
|
1596
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1597
|
-
----------------------------------------------------
|
1598
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1599
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1600
|
-
---------------------------------------------------------
|
1601
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1602
|
-
---------------------------------------------------------
|
1603
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1604
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1605
|
-
--------------------------------------------------------------------------------
|
1606
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1607
|
-
--------------------------------------------------------------------------------
|
1608
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1609
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1610
|
-
[1m[36m (3.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1611
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1612
|
-
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1613
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1614
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1615
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1616
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1617
|
-
----------------------------------------------------
|
1618
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1619
|
-
----------------------------------------------------
|
1620
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1621
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1622
|
-
--------------------------------------------------------------------------------
|
1623
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1624
|
-
--------------------------------------------------------------------------------
|
1625
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1626
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1627
|
-
---------------------------------------------------------
|
1628
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1629
|
-
---------------------------------------------------------
|
1630
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1631
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1632
|
-
------------------------------------------------------------------------------
|
1633
|
-
PolicyGeneratorTest: test_if_minitest_is_specified,_minitest_file_is_generated
|
1634
|
-
------------------------------------------------------------------------------
|
1635
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1636
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1637
|
-
---------------------------------------------------
|
1638
|
-
PolicyGeneratorTest: test_correct_file_is_generated
|
1639
|
-
---------------------------------------------------
|
1640
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1641
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1642
|
-
-------------------------------------------------
|
1643
|
-
PolicyGeneratorTest: test_rspec_file_is_generated
|
1644
|
-
-------------------------------------------------
|
1645
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1646
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1647
|
-
[1m[36m (3.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1648
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1649
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1650
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1651
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1652
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1653
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1654
|
-
-------------------------------------------------
|
1655
|
-
PolicyGeneratorTest: test_rspec_file_is_generated
|
1656
|
-
-------------------------------------------------
|
1657
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1658
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1659
|
-
------------------------------------------------------------------------------
|
1660
|
-
PolicyGeneratorTest: test_if_minitest_is_specified,_minitest_file_is_generated
|
1661
|
-
------------------------------------------------------------------------------
|
1662
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1663
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1664
|
-
---------------------------------------------------
|
1665
|
-
PolicyGeneratorTest: test_correct_file_is_generated
|
1666
|
-
---------------------------------------------------
|
1667
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1668
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1669
|
-
---------------------------------------------------------
|
1670
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1671
|
-
---------------------------------------------------------
|
1672
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1673
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1674
|
-
----------------------------------------------------
|
1675
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1676
|
-
----------------------------------------------------
|
1677
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1678
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1679
|
-
--------------------------------------------------------------------------------
|
1680
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1681
|
-
--------------------------------------------------------------------------------
|
1682
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1683
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1684
|
-
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1685
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1686
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1687
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1688
|
-
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1689
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1690
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1691
|
-
----------------------------------------------------
|
1692
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1693
|
-
----------------------------------------------------
|
1694
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1695
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1696
|
-
---------------------------------------------------------
|
1697
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1698
|
-
---------------------------------------------------------
|
1699
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1700
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1701
|
-
--------------------------------------------------------------------------------
|
1702
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1703
|
-
--------------------------------------------------------------------------------
|
1704
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1705
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1706
|
-
------------------------------------------------------------------------------
|
1707
|
-
PolicyGeneratorTest: test_if_minitest_is_specified,_minitest_file_is_generated
|
1708
|
-
------------------------------------------------------------------------------
|
1709
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1710
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1711
|
-
-------------------------------------------------
|
1712
|
-
PolicyGeneratorTest: test_rspec_file_is_generated
|
1713
|
-
-------------------------------------------------
|
1714
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1715
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1716
|
-
---------------------------------------------------
|
1717
|
-
PolicyGeneratorTest: test_correct_file_is_generated
|
1718
|
-
---------------------------------------------------
|
1719
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1720
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1721
|
-
[1m[36m (1.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1722
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
1723
|
-
[1m[36m (1.3ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1724
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1725
|
-
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1726
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1727
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1728
|
-
[1m[36m (1.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1729
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1730
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1731
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1732
|
-
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1733
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1734
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1735
|
-
---------------------------------------------------
|
1736
|
-
PolicyGeneratorTest: test_correct_file_is_generated
|
1737
|
-
---------------------------------------------------
|
1738
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1739
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1740
|
-
-------------------------------------------------
|
1741
|
-
PolicyGeneratorTest: test_rspec_file_is_generated
|
1742
|
-
-------------------------------------------------
|
1743
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1744
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1745
|
-
------------------------------------------------------------------------------
|
1746
|
-
PolicyGeneratorTest: test_if_minitest_is_specified,_minitest_file_is_generated
|
1747
|
-
------------------------------------------------------------------------------
|
1748
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1749
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1750
|
-
-------------------------------------------------
|
1751
|
-
PoroGeneratorTest: test_correct_file_is_generated
|
1752
|
-
-------------------------------------------------
|
1753
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1754
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1755
|
-
----------------------------------------------------
|
1756
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1757
|
-
----------------------------------------------------
|
1758
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1759
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1760
|
-
---------------------------------------------------------
|
1761
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1762
|
-
---------------------------------------------------------
|
1763
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1764
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1765
|
-
--------------------------------------------------------------------------------
|
1766
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1767
|
-
--------------------------------------------------------------------------------
|
1768
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1769
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1770
|
-
[1m[36m (3.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1771
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1772
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1773
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1774
|
-
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1775
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1776
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1777
|
-
-------------------------------------------------
|
1778
|
-
PolicyGeneratorTest: test_rspec_file_is_generated
|
1779
|
-
-------------------------------------------------
|
1780
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1781
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1782
|
-
------------------------------------------------------------------------------
|
1783
|
-
PolicyGeneratorTest: test_if_minitest_is_specified,_minitest_file_is_generated
|
1784
|
-
------------------------------------------------------------------------------
|
1785
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1786
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1787
|
-
---------------------------------------------------
|
1788
|
-
PolicyGeneratorTest: test_correct_file_is_generated
|
1789
|
-
---------------------------------------------------
|
1790
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1791
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1792
|
-
-------------------------------------------------
|
1793
|
-
PoroGeneratorTest: test_correct_file_is_generated
|
1794
|
-
-------------------------------------------------
|
1795
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1796
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1797
|
-
----------------------------------------------------
|
1798
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1799
|
-
----------------------------------------------------
|
1800
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1801
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1802
|
-
--------------------------------------------------------------------------------
|
1803
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1804
|
-
--------------------------------------------------------------------------------
|
1805
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1806
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1807
|
-
---------------------------------------------------------
|
1808
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1809
|
-
---------------------------------------------------------
|
1810
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1811
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1812
|
-
[1m[36m (2.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1813
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1814
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1815
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1816
|
-
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1817
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1818
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1819
|
-
-------------------------------------------------
|
1820
|
-
PoroGeneratorTest: test_correct_file_is_generated
|
1821
|
-
-------------------------------------------------
|
1822
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1823
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1824
|
-
-----------------------------------------------
|
1825
|
-
PoroGeneratorTest: test_rspec_test_is_generated
|
1826
|
-
-----------------------------------------------
|
1827
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1828
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1829
|
-
----------------------------------------------------
|
1830
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1831
|
-
----------------------------------------------------
|
1832
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1833
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1834
|
-
---------------------------------------------------------
|
1835
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1836
|
-
---------------------------------------------------------
|
1837
|
-
[1m[35m (0.3ms)[0m rollback transaction
|
1838
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1839
|
-
--------------------------------------------------------------------------------
|
1840
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1841
|
-
--------------------------------------------------------------------------------
|
1842
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1843
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1844
|
-
------------------------------------------------------------------------------
|
1845
|
-
PolicyGeneratorTest: test_if_minitest_is_specified,_minitest_file_is_generated
|
1846
|
-
------------------------------------------------------------------------------
|
1847
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1848
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1849
|
-
---------------------------------------------------
|
1850
|
-
PolicyGeneratorTest: test_correct_file_is_generated
|
1851
|
-
---------------------------------------------------
|
1852
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1853
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1854
|
-
-------------------------------------------------
|
1855
|
-
PolicyGeneratorTest: test_rspec_file_is_generated
|
1856
|
-
-------------------------------------------------
|
1857
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1858
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1859
|
-
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1860
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1861
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1862
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1863
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1864
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1865
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1866
|
-
---------------------------------------------------
|
1867
|
-
PolicyGeneratorTest: test_correct_file_is_generated
|
1868
|
-
---------------------------------------------------
|
1869
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1870
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1871
|
-
-------------------------------------------------
|
1872
|
-
PolicyGeneratorTest: test_rspec_file_is_generated
|
1873
|
-
-------------------------------------------------
|
1874
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1875
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1876
|
-
------------------------------------------------------------------------------
|
1877
|
-
PolicyGeneratorTest: test_if_minitest_is_specified,_minitest_file_is_generated
|
1878
|
-
------------------------------------------------------------------------------
|
1879
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1880
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1881
|
-
-------------------------------------------------
|
1882
|
-
PoroGeneratorTest: test_correct_file_is_generated
|
1883
|
-
-------------------------------------------------
|
1884
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1885
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1886
|
-
-----------------------------------------------
|
1887
|
-
PoroGeneratorTest: test_rspec_test_is_generated
|
1888
|
-
-----------------------------------------------
|
1889
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1890
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1891
|
-
----------------------------------------------------
|
1892
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1893
|
-
----------------------------------------------------
|
1894
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1895
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1896
|
-
---------------------------------------------------------
|
1897
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1898
|
-
---------------------------------------------------------
|
1899
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1900
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1901
|
-
--------------------------------------------------------------------------------
|
1902
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1903
|
-
--------------------------------------------------------------------------------
|
1904
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1905
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1906
|
-
[1m[36m (2.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1907
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1908
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1909
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1910
|
-
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1911
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1912
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1913
|
-
----------------------------------------------------
|
1914
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1915
|
-
----------------------------------------------------
|
1916
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1917
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1918
|
-
---------------------------------------------------------
|
1919
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1920
|
-
---------------------------------------------------------
|
1921
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1922
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1923
|
-
--------------------------------------------------------------------------------
|
1924
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
1925
|
-
--------------------------------------------------------------------------------
|
1926
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1927
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1928
|
-
---------------------------------------------------
|
1929
|
-
PolicyGeneratorTest: test_correct_file_is_generated
|
1930
|
-
---------------------------------------------------
|
1931
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1932
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1933
|
-
-------------------------------------------------
|
1934
|
-
PolicyGeneratorTest: test_rspec_file_is_generated
|
1935
|
-
-------------------------------------------------
|
1936
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1937
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1938
|
-
------------------------------------------------------------------------------
|
1939
|
-
PolicyGeneratorTest: test_if_minitest_is_specified,_minitest_file_is_generated
|
1940
|
-
------------------------------------------------------------------------------
|
1941
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1942
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1943
|
-
-------------------------------------------------
|
1944
|
-
PoroGeneratorTest: test_correct_file_is_generated
|
1945
|
-
-------------------------------------------------
|
1946
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1947
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1948
|
-
-----------------------------------------------
|
1949
|
-
PoroGeneratorTest: test_rspec_test_is_generated
|
1950
|
-
-----------------------------------------------
|
1951
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1952
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1953
|
-
[1m[36m (3.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1954
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1955
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1956
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1957
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1958
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1959
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1960
|
-
-------------------------------------------------
|
1961
|
-
PoroGeneratorTest: test_correct_file_is_generated
|
1962
|
-
-------------------------------------------------
|
1963
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1964
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1965
|
-
------------------------------------------------------------------------------
|
1966
|
-
PoroGeneratorTest: test_minitest_file_is_generated_when_test-suite_is_minitest
|
1967
|
-
------------------------------------------------------------------------------
|
1968
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1969
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1970
|
-
-----------------------------------------------
|
1971
|
-
PoroGeneratorTest: test_rspec_file_is_generated
|
1972
|
-
-----------------------------------------------
|
1973
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1974
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1975
|
-
-------------------------------------------------
|
1976
|
-
PolicyGeneratorTest: test_rspec_file_is_generated
|
1977
|
-
-------------------------------------------------
|
1978
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1979
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1980
|
-
------------------------------------------------------------------------------
|
1981
|
-
PolicyGeneratorTest: test_if_minitest_is_specified,_minitest_file_is_generated
|
1982
|
-
------------------------------------------------------------------------------
|
1983
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1984
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1985
|
-
---------------------------------------------------
|
1986
|
-
PolicyGeneratorTest: test_correct_file_is_generated
|
1987
|
-
---------------------------------------------------
|
1988
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1989
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1990
|
-
---------------------------------------------------------
|
1991
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
1992
|
-
---------------------------------------------------------
|
1993
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1994
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1995
|
-
----------------------------------------------------
|
1996
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
1997
|
-
----------------------------------------------------
|
1998
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1999
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2000
|
-
--------------------------------------------------------------------------------
|
2001
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
2002
|
-
--------------------------------------------------------------------------------
|
2003
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2004
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2005
|
-
[1m[36m (3.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2006
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
2007
|
-
[1m[36m (1.4ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2008
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
2009
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
2010
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2011
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2012
|
-
---------------------------------------------------
|
2013
|
-
PolicyGeneratorTest: test_correct_file_is_generated
|
2014
|
-
---------------------------------------------------
|
2015
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2016
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2017
|
-
------------------------------------------------------------------------------
|
2018
|
-
PolicyGeneratorTest: test_if_minitest_is_specified,_minitest_file_is_generated
|
2019
|
-
------------------------------------------------------------------------------
|
2020
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
2021
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2022
|
-
-------------------------------------------------
|
2023
|
-
PolicyGeneratorTest: test_rspec_file_is_generated
|
2024
|
-
-------------------------------------------------
|
2025
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2026
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2027
|
-
--------------------------------------------------------------------------------
|
2028
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
2029
|
-
--------------------------------------------------------------------------------
|
2030
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2031
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2032
|
-
---------------------------------------------------------
|
2033
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
2034
|
-
---------------------------------------------------------
|
2035
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
2036
|
-
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
2037
|
-
----------------------------------------------------
|
2038
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
2039
|
-
----------------------------------------------------
|
2040
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
2041
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2042
|
-
-------------------------------------------------
|
2043
|
-
PoroGeneratorTest: test_correct_file_is_generated
|
2044
|
-
-------------------------------------------------
|
2045
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
2046
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2047
|
-
-----------------------------------------------
|
2048
|
-
PoroGeneratorTest: test_rspec_file_is_generated
|
2049
|
-
-----------------------------------------------
|
2050
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2051
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2052
|
-
------------------------------------------------------------------------------
|
2053
|
-
PoroGeneratorTest: test_minitest_file_is_generated_when_test-suite_is_minitest
|
2054
|
-
------------------------------------------------------------------------------
|
2055
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2056
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2057
|
-
[1m[36m (4.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2058
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
2059
|
-
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2060
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
2061
|
-
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
2062
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2063
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2064
|
-
-------------------------------------------------
|
2065
|
-
PolicyGeneratorTest: test_rspec_file_is_generated
|
2066
|
-
-------------------------------------------------
|
2067
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2068
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2069
|
-
------------------------------------------------------------------------------
|
2070
|
-
PolicyGeneratorTest: test_if_minitest_is_specified,_minitest_file_is_generated
|
2071
|
-
------------------------------------------------------------------------------
|
2072
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
2073
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2074
|
-
---------------------------------------------------
|
2075
|
-
PolicyGeneratorTest: test_correct_file_is_generated
|
2076
|
-
---------------------------------------------------
|
2077
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2078
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2079
|
-
-----------------------------------------------
|
2080
|
-
PoroGeneratorTest: test_rspec_file_is_generated
|
2081
|
-
-----------------------------------------------
|
2082
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2083
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2084
|
-
------------------------------------------------------------------------------
|
2085
|
-
PoroGeneratorTest: test_minitest_file_is_generated_when_test-suite_is_minitest
|
2086
|
-
------------------------------------------------------------------------------
|
2087
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2088
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2089
|
-
-------------------------------------------------
|
2090
|
-
PoroGeneratorTest: test_correct_file_is_generated
|
2091
|
-
-------------------------------------------------
|
2092
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2093
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2094
|
-
----------------------------------------------------
|
2095
|
-
ServiceGeneratorTest: test_correct_file_is_generated
|
2096
|
-
----------------------------------------------------
|
2097
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2098
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2099
|
-
--------------------------------------------------------------------------------
|
2100
|
-
ServiceGeneratorTest: test_generates_minitest_file_if_test-framework_is_minitest
|
2101
|
-
--------------------------------------------------------------------------------
|
2102
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2103
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2104
|
-
---------------------------------------------------------
|
2105
|
-
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
2106
|
-
---------------------------------------------------------
|
2107
|
-
[1m[35m (0.1ms)[0m rollback transaction
|