pattern_generator 0.0.4 → 0.1.0

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