object_services 0.0.1

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 (54) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +5 -0
  4. data/Rakefile +34 -0
  5. data/lib/generators/object_services/USAGE +9 -0
  6. data/lib/generators/object_services/service_generator.rb +20 -0
  7. data/lib/object_services.rb +5 -0
  8. data/lib/object_services/base.rb +72 -0
  9. data/lib/object_services/version.rb +3 -0
  10. data/lib/tasks/object_services_tasks.rake +4 -0
  11. data/test/dummy/README.rdoc +28 -0
  12. data/test/dummy/Rakefile +6 -0
  13. data/test/dummy/app/assets/javascripts/application.js +13 -0
  14. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  15. data/test/dummy/app/controllers/application_controller.rb +5 -0
  16. data/test/dummy/app/helpers/application_helper.rb +2 -0
  17. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  18. data/test/dummy/bin/bundle +3 -0
  19. data/test/dummy/bin/rails +4 -0
  20. data/test/dummy/bin/rake +4 -0
  21. data/test/dummy/bin/setup +29 -0
  22. data/test/dummy/config.ru +4 -0
  23. data/test/dummy/config/application.rb +26 -0
  24. data/test/dummy/config/boot.rb +5 -0
  25. data/test/dummy/config/database.yml +25 -0
  26. data/test/dummy/config/environment.rb +5 -0
  27. data/test/dummy/config/environments/development.rb +41 -0
  28. data/test/dummy/config/environments/production.rb +79 -0
  29. data/test/dummy/config/environments/test.rb +42 -0
  30. data/test/dummy/config/initializers/assets.rb +11 -0
  31. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  32. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  33. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  34. data/test/dummy/config/initializers/inflections.rb +16 -0
  35. data/test/dummy/config/initializers/mime_types.rb +4 -0
  36. data/test/dummy/config/initializers/session_store.rb +3 -0
  37. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  38. data/test/dummy/config/locales/en.yml +23 -0
  39. data/test/dummy/config/routes.rb +56 -0
  40. data/test/dummy/config/secrets.yml +22 -0
  41. data/test/dummy/db/development.sqlite3 +0 -0
  42. data/test/dummy/db/schema.rb +16 -0
  43. data/test/dummy/db/test.sqlite3 +0 -0
  44. data/test/dummy/log/development.log +4 -0
  45. data/test/dummy/log/test.log +1863 -0
  46. data/test/dummy/public/404.html +67 -0
  47. data/test/dummy/public/422.html +67 -0
  48. data/test/dummy/public/500.html +66 -0
  49. data/test/dummy/public/favicon.ico +0 -0
  50. data/test/lib/generators/service_generator_test.rb +34 -0
  51. data/test/lib/object_services/base_test.rb +100 -0
  52. data/test/object_services_test.rb +7 -0
  53. data/test/test_helper.rb +26 -0
  54. metadata +195 -0
@@ -0,0 +1,79 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # Code is not reloaded between requests.
5
+ config.cache_classes = true
6
+
7
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both threaded web servers
9
+ # and those relying on copy on write to perform better.
10
+ # Rake tasks automatically ignore this option for performance.
11
+ config.eager_load = true
12
+
13
+ # Full error reports are disabled and caching is turned on.
14
+ config.consider_all_requests_local = false
15
+ config.action_controller.perform_caching = true
16
+
17
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
+ # Add `rack-cache` to your Gemfile before enabling this.
19
+ # For large-scale production use, consider using a caching reverse proxy like
20
+ # NGINX, varnish or squid.
21
+ # config.action_dispatch.rack_cache = true
22
+
23
+ # Disable serving static files from the `/public` folder by default since
24
+ # Apache or NGINX already handles this.
25
+ config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
26
+
27
+ # Compress JavaScripts and CSS.
28
+ config.assets.js_compressor = :uglifier
29
+ # config.assets.css_compressor = :sass
30
+
31
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
32
+ config.assets.compile = false
33
+
34
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
35
+ # yet still be able to expire them through the digest params.
36
+ config.assets.digest = true
37
+
38
+ # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
39
+
40
+ # Specifies the header that your server uses for sending files.
41
+ # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
42
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
43
+
44
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
45
+ # config.force_ssl = true
46
+
47
+ # Use the lowest log level to ensure availability of diagnostic information
48
+ # when problems arise.
49
+ config.log_level = :debug
50
+
51
+ # Prepend all log lines with the following tags.
52
+ # config.log_tags = [ :subdomain, :uuid ]
53
+
54
+ # Use a different logger for distributed setups.
55
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
56
+
57
+ # Use a different cache store in production.
58
+ # config.cache_store = :mem_cache_store
59
+
60
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
61
+ # config.action_controller.asset_host = 'http://assets.example.com'
62
+
63
+ # Ignore bad email addresses and do not raise email delivery errors.
64
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
65
+ # config.action_mailer.raise_delivery_errors = false
66
+
67
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
68
+ # the I18n.default_locale when a translation cannot be found).
69
+ config.i18n.fallbacks = true
70
+
71
+ # Send deprecation notices to registered listeners.
72
+ config.active_support.deprecation = :notify
73
+
74
+ # Use default logging formatter so that PID and timestamp are not suppressed.
75
+ config.log_formatter = ::Logger::Formatter.new
76
+
77
+ # Do not dump schema after migrations.
78
+ config.active_record.dump_schema_after_migration = false
79
+ end
@@ -0,0 +1,42 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static file server for tests with Cache-Control for performance.
16
+ config.serve_static_files = true
17
+ config.static_cache_control = 'public, max-age=3600'
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Randomize the order test cases are executed.
35
+ config.active_support.test_order = :random
36
+
37
+ # Print deprecation notices to the stderr.
38
+ config.active_support.deprecation = :stderr
39
+
40
+ # Raises error for missing translations
41
+ # config.action_view.raise_on_missing_translations = true
42
+ end
@@ -0,0 +1,11 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Add additional assets to the asset load path
7
+ # Rails.application.config.assets.paths << Emoji.images_path
8
+
9
+ # Precompile additional assets.
10
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,56 @@
1
+ Rails.application.routes.draw do
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+ # See how all your routes lay out with "rake routes".
4
+
5
+ # You can have the root of your site routed with "root"
6
+ # root 'welcome#index'
7
+
8
+ # Example of regular route:
9
+ # get 'products/:id' => 'catalog#view'
10
+
11
+ # Example of named route that can be invoked with purchase_url(id: product.id)
12
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
13
+
14
+ # Example resource route (maps HTTP verbs to controller actions automatically):
15
+ # resources :products
16
+
17
+ # Example resource route with options:
18
+ # resources :products do
19
+ # member do
20
+ # get 'short'
21
+ # post 'toggle'
22
+ # end
23
+ #
24
+ # collection do
25
+ # get 'sold'
26
+ # end
27
+ # end
28
+
29
+ # Example resource route with sub-resources:
30
+ # resources :products do
31
+ # resources :comments, :sales
32
+ # resource :seller
33
+ # end
34
+
35
+ # Example resource route with more complex sub-resources:
36
+ # resources :products do
37
+ # resources :comments
38
+ # resources :sales do
39
+ # get 'recent', on: :collection
40
+ # end
41
+ # end
42
+
43
+ # Example resource route with concerns:
44
+ # concern :toggleable do
45
+ # post 'toggle'
46
+ # end
47
+ # resources :posts, concerns: :toggleable
48
+ # resources :photos, concerns: :toggleable
49
+
50
+ # Example resource route within a namespace:
51
+ # namespace :admin do
52
+ # # Directs /admin/products/* to Admin::ProductsController
53
+ # # (app/controllers/admin/products_controller.rb)
54
+ # resources :products
55
+ # end
56
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 3e6c120227d66fe93a144b969cf3229f7e050abd95ccd2e892961cf8b7b59f7c196c1538918f90695efbbff5eeb602f7bfc1fca835c46bc21682ee7d90627f0a
15
+
16
+ test:
17
+ secret_key_base: e4aa893f8c38b7ae4a2cb457bf02cef047817b4f839752fb94ff4354297dd9db247afcdea0efd703adc5cedf748d19d177551815cca048c2abce0ab02a2c5051
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,16 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 0) do
15
+
16
+ end
@@ -0,0 +1,4 @@
1
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
@@ -0,0 +1,1863 @@
1
+  (0.1ms) begin transaction
2
+ --------------------------------------------------------------
3
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
4
+ --------------------------------------------------------------
5
+  (0.0ms) rollback transaction
6
+  (0.0ms) begin transaction
7
+ --------------------------------------------------------------------
8
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
9
+ --------------------------------------------------------------------
10
+  (0.0ms) rollback transaction
11
+  (0.0ms) begin transaction
12
+ -----------------------------------------
13
+ ServiceGeneratorTest: test_doesnt_blow_up
14
+ -----------------------------------------
15
+  (0.1ms) rollback transaction
16
+  (0.0ms) begin transaction
17
+ ------------------------------
18
+ ObjectServicesTest: test_truth
19
+ ------------------------------
20
+  (0.0ms) rollback transaction
21
+  (0.1ms) begin transaction
22
+ -----------------------------------------
23
+ ServiceGeneratorTest: test_doesnt_blow_up
24
+ -----------------------------------------
25
+  (0.1ms) rollback transaction
26
+  (0.2ms) begin transaction
27
+ --------------------------------------------------------------------
28
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
29
+ --------------------------------------------------------------------
30
+  (0.0ms) rollback transaction
31
+  (0.0ms) begin transaction
32
+ --------------------------------------------------------------
33
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
34
+ --------------------------------------------------------------
35
+  (0.0ms) rollback transaction
36
+  (0.0ms) begin transaction
37
+ ------------------------------
38
+ ObjectServicesTest: test_truth
39
+ ------------------------------
40
+  (0.0ms) rollback transaction
41
+  (0.1ms) begin transaction
42
+ ------------------------------
43
+ ObjectServicesTest: test_truth
44
+ ------------------------------
45
+  (0.0ms) rollback transaction
46
+  (0.0ms) begin transaction
47
+ --------------------------------------------------------------
48
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
49
+ --------------------------------------------------------------
50
+  (0.0ms) rollback transaction
51
+  (0.1ms) begin transaction
52
+ --------------------------------------------------------------------
53
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
54
+ --------------------------------------------------------------------
55
+  (0.0ms) rollback transaction
56
+  (0.1ms) begin transaction
57
+ -----------------------------------------
58
+ ServiceGeneratorTest: test_doesnt_blow_up
59
+ -----------------------------------------
60
+  (0.1ms) rollback transaction
61
+  (0.1ms) begin transaction
62
+ -----------------------------------------
63
+ ServiceGeneratorTest: test_doesnt_blow_up
64
+ -----------------------------------------
65
+  (0.1ms) rollback transaction
66
+  (0.1ms) begin transaction
67
+ --------------------------------------------------------------------
68
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
69
+ --------------------------------------------------------------------
70
+  (0.1ms) rollback transaction
71
+  (0.0ms) begin transaction
72
+ --------------------------------------------------------------
73
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
74
+ --------------------------------------------------------------
75
+  (0.1ms) rollback transaction
76
+  (0.0ms) begin transaction
77
+ ------------------------------
78
+ ObjectServicesTest: test_truth
79
+ ------------------------------
80
+  (0.0ms) rollback transaction
81
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
82
+  (0.1ms) select sqlite_version(*)
83
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
84
+  (0.1ms) SELECT version FROM "schema_migrations"
85
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
86
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
87
+  (0.1ms) begin transaction
88
+ --------------------------------------------------------------------
89
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
90
+ --------------------------------------------------------------------
91
+  (0.1ms) rollback transaction
92
+  (0.0ms) begin transaction
93
+ --------------------------------------------------------------
94
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
95
+ --------------------------------------------------------------
96
+  (0.1ms) rollback transaction
97
+  (0.0ms) begin transaction
98
+ -----------------------------------------
99
+ ServiceGeneratorTest: test_doesnt_blow_up
100
+ -----------------------------------------
101
+  (0.1ms) rollback transaction
102
+  (0.0ms) begin transaction
103
+ ------------------------------
104
+ ObjectServicesTest: test_truth
105
+ ------------------------------
106
+  (0.0ms) rollback transaction
107
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
108
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
109
+  (0.0ms) select sqlite_version(*)
110
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
111
+  (0.1ms) SELECT version FROM "schema_migrations"
112
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
113
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
114
+  (0.1ms) begin transaction
115
+ ------------------------------
116
+ ObjectServicesTest: test_truth
117
+ ------------------------------
118
+  (0.0ms) rollback transaction
119
+  (0.0ms) begin transaction
120
+ --------------------------------------------------------------------
121
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
122
+ --------------------------------------------------------------------
123
+  (0.1ms) rollback transaction
124
+  (0.1ms) begin transaction
125
+ -----------------------------------------
126
+ ServiceGeneratorTest: test_doesnt_blow_up
127
+ -----------------------------------------
128
+  (0.1ms) rollback transaction
129
+  (0.0ms) begin transaction
130
+ --------------------------------------------------------------
131
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
132
+ --------------------------------------------------------------
133
+  (0.0ms) rollback transaction
134
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
135
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
136
+  (0.1ms) select sqlite_version(*)
137
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
138
+  (0.1ms) SELECT version FROM "schema_migrations"
139
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
140
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
141
+  (0.1ms) begin transaction
142
+ -----------------------------------------
143
+ ServiceGeneratorTest: test_doesnt_blow_up
144
+ -----------------------------------------
145
+  (0.0ms) rollback transaction
146
+  (0.0ms) begin transaction
147
+ --------------------------------------------------------------------
148
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
149
+ --------------------------------------------------------------------
150
+  (0.1ms) rollback transaction
151
+  (0.0ms) begin transaction
152
+ --------------------------------------------------------------
153
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
154
+ --------------------------------------------------------------
155
+  (0.0ms) rollback transaction
156
+  (0.0ms) begin transaction
157
+ ------------------------------
158
+ ObjectServicesTest: test_truth
159
+ ------------------------------
160
+  (0.0ms) rollback transaction
161
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
162
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
163
+  (0.0ms) select sqlite_version(*)
164
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
165
+  (0.1ms) SELECT version FROM "schema_migrations"
166
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
167
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
168
+  (0.1ms) begin transaction
169
+ --------------------------------------------------------------
170
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
171
+ --------------------------------------------------------------
172
+  (0.1ms) rollback transaction
173
+  (0.0ms) begin transaction
174
+ --------------------------------------------------------------------
175
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
176
+ --------------------------------------------------------------------
177
+  (0.0ms) rollback transaction
178
+  (0.0ms) begin transaction
179
+ -----------------------------------------
180
+ ServiceGeneratorTest: test_doesnt_blow_up
181
+ -----------------------------------------
182
+  (0.1ms) rollback transaction
183
+  (0.0ms) begin transaction
184
+ ------------------------------
185
+ ObjectServicesTest: test_truth
186
+ ------------------------------
187
+  (0.0ms) rollback transaction
188
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
189
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
190
+  (0.2ms) select sqlite_version(*)
191
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
192
+  (0.1ms) SELECT version FROM "schema_migrations"
193
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
194
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
195
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
196
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
197
+  (0.1ms) select sqlite_version(*)
198
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
199
+  (0.1ms) SELECT version FROM "schema_migrations"
200
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
201
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
202
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
203
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
204
+  (0.5ms) select sqlite_version(*)
205
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
206
+  (0.1ms) SELECT version FROM "schema_migrations"
207
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
208
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
209
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
210
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
211
+  (0.1ms) select sqlite_version(*)
212
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
213
+  (0.1ms) SELECT version FROM "schema_migrations"
214
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
215
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
216
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
217
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
218
+  (0.1ms) select sqlite_version(*)
219
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
220
+  (0.1ms) SELECT version FROM "schema_migrations"
221
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
222
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
223
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
224
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
225
+  (0.1ms) select sqlite_version(*)
226
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
227
+  (0.1ms) SELECT version FROM "schema_migrations"
228
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
229
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
230
+  (0.1ms) begin transaction
231
+ --------------------------------------------------------------------
232
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
233
+ --------------------------------------------------------------------
234
+  (0.1ms) rollback transaction
235
+  (0.0ms) begin transaction
236
+ -----------------------------------------
237
+ ServiceGeneratorTest: test_doesnt_blow_up
238
+ -----------------------------------------
239
+  (0.1ms) rollback transaction
240
+  (0.1ms) begin transaction
241
+ --------------------------------------------------------------
242
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
243
+ --------------------------------------------------------------
244
+  (0.0ms) rollback transaction
245
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
246
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
247
+  (0.1ms) select sqlite_version(*)
248
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
249
+  (0.1ms) SELECT version FROM "schema_migrations"
250
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
251
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
252
+  (0.1ms) begin transaction
253
+ --------------------------------------------------------------
254
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
255
+ --------------------------------------------------------------
256
+  (0.1ms) rollback transaction
257
+  (0.0ms) begin transaction
258
+ --------------------------------------------------------------------
259
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
260
+ --------------------------------------------------------------------
261
+  (0.0ms) rollback transaction
262
+  (0.0ms) begin transaction
263
+ -----------------------------------------
264
+ ServiceGeneratorTest: test_doesnt_blow_up
265
+ -----------------------------------------
266
+  (0.1ms) rollback transaction
267
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
268
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
269
+  (0.1ms) select sqlite_version(*)
270
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
271
+  (0.1ms) SELECT version FROM "schema_migrations"
272
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
273
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
274
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
275
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
276
+  (0.1ms) select sqlite_version(*)
277
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
278
+  (0.1ms) SELECT version FROM "schema_migrations"
279
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
280
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
281
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
282
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
283
+  (0.1ms) select sqlite_version(*)
284
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
285
+  (0.1ms) SELECT version FROM "schema_migrations"
286
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
287
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
288
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
289
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
290
+  (0.1ms) select sqlite_version(*)
291
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
292
+  (0.1ms) SELECT version FROM "schema_migrations"
293
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
294
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
295
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
296
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
297
+  (0.1ms) select sqlite_version(*)
298
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
299
+  (0.1ms) SELECT version FROM "schema_migrations"
300
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
301
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
302
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
303
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
304
+  (0.1ms) select sqlite_version(*)
305
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
306
+  (0.1ms) SELECT version FROM "schema_migrations"
307
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
308
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
309
+  (0.1ms) begin transaction
310
+ -----------------------------------------
311
+ ServiceGeneratorTest: test_doesnt_blow_up
312
+ -----------------------------------------
313
+  (0.1ms) rollback transaction
314
+  (0.0ms) begin transaction
315
+ --------------------------------------------------------------
316
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
317
+ --------------------------------------------------------------
318
+  (0.1ms) rollback transaction
319
+  (0.1ms) begin transaction
320
+ --------------------------------------------------------------------
321
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
322
+ --------------------------------------------------------------------
323
+  (0.0ms) rollback transaction
324
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
325
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
326
+  (0.1ms) select sqlite_version(*)
327
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
328
+  (0.1ms) SELECT version FROM "schema_migrations"
329
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
330
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
331
+  (0.1ms) begin transaction
332
+ -----------------------------------------
333
+ ServiceGeneratorTest: test_doesnt_blow_up
334
+ -----------------------------------------
335
+  (0.1ms) rollback transaction
336
+  (0.0ms) begin transaction
337
+ --------------------------------------------------------------------
338
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
339
+ --------------------------------------------------------------------
340
+  (0.1ms) rollback transaction
341
+  (0.1ms) begin transaction
342
+ --------------------------------------------------------------
343
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
344
+ --------------------------------------------------------------
345
+  (0.1ms) rollback transaction
346
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
347
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
348
+  (0.1ms) select sqlite_version(*)
349
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
350
+  (0.1ms) SELECT version FROM "schema_migrations"
351
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
352
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
353
+  (0.1ms) begin transaction
354
+ -----------------------------------------
355
+ ServiceGeneratorTest: test_doesnt_blow_up
356
+ -----------------------------------------
357
+  (0.1ms) rollback transaction
358
+  (0.1ms) begin transaction
359
+ --------------------------------------------------------------------
360
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
361
+ --------------------------------------------------------------------
362
+  (0.1ms) rollback transaction
363
+  (0.1ms) begin transaction
364
+ --------------------------------------------------------------
365
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
366
+ --------------------------------------------------------------
367
+  (0.1ms) rollback transaction
368
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
369
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
370
+  (0.1ms) select sqlite_version(*)
371
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
372
+  (0.1ms) SELECT version FROM "schema_migrations"
373
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
374
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
375
+  (0.1ms) begin transaction
376
+ -----------------------------------------
377
+ ServiceGeneratorTest: test_doesnt_blow_up
378
+ -----------------------------------------
379
+  (0.1ms) rollback transaction
380
+  (0.0ms) begin transaction
381
+ --------------------------------------------------------------------
382
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
383
+ --------------------------------------------------------------------
384
+  (0.1ms) rollback transaction
385
+  (0.0ms) begin transaction
386
+ --------------------------------------------------------------
387
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
388
+ --------------------------------------------------------------
389
+  (0.1ms) rollback transaction
390
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
391
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
392
+  (0.1ms) select sqlite_version(*)
393
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
394
+  (0.1ms) SELECT version FROM "schema_migrations"
395
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
396
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
397
+  (0.1ms) begin transaction
398
+ -----------------------------------------
399
+ ServiceGeneratorTest: test_doesnt_blow_up
400
+ -----------------------------------------
401
+  (0.1ms) rollback transaction
402
+  (0.0ms) begin transaction
403
+ --------------------------------------------------------------------
404
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
405
+ --------------------------------------------------------------------
406
+  (0.1ms) rollback transaction
407
+  (0.0ms) begin transaction
408
+ --------------------------------------------------------------
409
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
410
+ --------------------------------------------------------------
411
+  (0.0ms) rollback transaction
412
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
413
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
414
+  (0.0ms) select sqlite_version(*)
415
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
416
+  (0.1ms) SELECT version FROM "schema_migrations"
417
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
418
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
419
+  (0.1ms) begin transaction
420
+ --------------------------------------------------------------
421
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
422
+ --------------------------------------------------------------
423
+  (0.1ms) rollback transaction
424
+  (0.1ms) begin transaction
425
+ --------------------------------------------------------------------
426
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
427
+ --------------------------------------------------------------------
428
+  (0.1ms) rollback transaction
429
+  (0.1ms) begin transaction
430
+ -----------------------------------------
431
+ ServiceGeneratorTest: test_doesnt_blow_up
432
+ -----------------------------------------
433
+  (0.0ms) rollback transaction
434
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
435
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
436
+  (0.1ms) select sqlite_version(*)
437
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
438
+  (0.1ms) SELECT version FROM "schema_migrations"
439
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
440
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
441
+  (0.1ms) begin transaction
442
+ --------------------------------------------------------------
443
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
444
+ --------------------------------------------------------------
445
+  (0.1ms) rollback transaction
446
+  (0.0ms) begin transaction
447
+ --------------------------------------------------------------------
448
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
449
+ --------------------------------------------------------------------
450
+  (0.1ms) rollback transaction
451
+  (0.1ms) begin transaction
452
+ -----------------------------------------
453
+ ServiceGeneratorTest: test_doesnt_blow_up
454
+ -----------------------------------------
455
+  (0.1ms) rollback transaction
456
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
457
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
458
+  (0.1ms) select sqlite_version(*)
459
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
460
+  (0.1ms) SELECT version FROM "schema_migrations"
461
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
462
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
463
+  (0.1ms) begin transaction
464
+ --------------------------------------------------------------
465
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
466
+ --------------------------------------------------------------
467
+  (0.1ms) rollback transaction
468
+  (0.0ms) begin transaction
469
+ --------------------------------------------------------------------
470
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
471
+ --------------------------------------------------------------------
472
+  (0.1ms) rollback transaction
473
+  (0.1ms) begin transaction
474
+ -----------------------------------------
475
+ ServiceGeneratorTest: test_doesnt_blow_up
476
+ -----------------------------------------
477
+  (0.0ms) rollback transaction
478
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
479
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
480
+  (0.1ms) select sqlite_version(*)
481
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
482
+  (0.1ms) SELECT version FROM "schema_migrations"
483
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
484
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
485
+  (0.1ms) begin transaction
486
+ -----------------------------------------
487
+ ServiceGeneratorTest: test_doesnt_blow_up
488
+ -----------------------------------------
489
+  (0.1ms) rollback transaction
490
+  (0.0ms) begin transaction
491
+ --------------------------------------------------------------
492
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
493
+ --------------------------------------------------------------
494
+  (0.1ms) rollback transaction
495
+  (0.0ms) begin transaction
496
+ --------------------------------------------------------------------
497
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
498
+ --------------------------------------------------------------------
499
+  (0.1ms) rollback transaction
500
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
501
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
502
+  (0.1ms) select sqlite_version(*)
503
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
504
+  (0.1ms) SELECT version FROM "schema_migrations"
505
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
506
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
507
+  (0.1ms) begin transaction
508
+ --------------------------------------------------------------
509
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
510
+ --------------------------------------------------------------
511
+  (0.1ms) rollback transaction
512
+  (0.0ms) begin transaction
513
+ -----------------------------------------
514
+ ServiceGeneratorTest: test_doesnt_blow_up
515
+ -----------------------------------------
516
+  (0.0ms) rollback transaction
517
+  (0.0ms) begin transaction
518
+ --------------------------------------------------------------------
519
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
520
+ --------------------------------------------------------------------
521
+  (0.1ms) rollback transaction
522
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
523
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
524
+  (0.1ms) select sqlite_version(*)
525
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
526
+  (0.5ms) SELECT version FROM "schema_migrations"
527
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
528
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
529
+  (0.1ms) begin transaction
530
+ --------------------------------------------------------------
531
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
532
+ --------------------------------------------------------------
533
+  (0.1ms) rollback transaction
534
+  (0.0ms) begin transaction
535
+ --------------------------------------------------------------------
536
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
537
+ --------------------------------------------------------------------
538
+  (0.1ms) rollback transaction
539
+  (0.0ms) begin transaction
540
+ -----------------------------------------
541
+ ServiceGeneratorTest: test_doesnt_blow_up
542
+ -----------------------------------------
543
+  (0.1ms) rollback transaction
544
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
545
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
546
+  (0.1ms) select sqlite_version(*)
547
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
548
+  (0.1ms) SELECT version FROM "schema_migrations"
549
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
550
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
551
+  (0.1ms) begin transaction
552
+ --------------------------------------------------------------
553
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
554
+ --------------------------------------------------------------
555
+  (0.1ms) rollback transaction
556
+  (0.1ms) begin transaction
557
+ --------------------------------------------------------------------
558
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
559
+ --------------------------------------------------------------------
560
+  (0.1ms) rollback transaction
561
+  (0.0ms) begin transaction
562
+ -----------------------------------------
563
+ ServiceGeneratorTest: test_doesnt_blow_up
564
+ -----------------------------------------
565
+  (0.1ms) rollback transaction
566
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
567
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
568
+  (0.1ms) select sqlite_version(*)
569
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
570
+  (0.1ms) SELECT version FROM "schema_migrations"
571
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
572
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
573
+  (0.1ms) begin transaction
574
+ -----------------------------------------
575
+ ServiceGeneratorTest: test_doesnt_blow_up
576
+ -----------------------------------------
577
+  (0.1ms) rollback transaction
578
+  (0.0ms) begin transaction
579
+ --------------------------------------------------------------
580
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
581
+ --------------------------------------------------------------
582
+  (0.1ms) rollback transaction
583
+  (0.1ms) begin transaction
584
+ --------------------------------------------------------------------
585
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
586
+ --------------------------------------------------------------------
587
+  (0.1ms) rollback transaction
588
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
589
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
590
+  (0.1ms) select sqlite_version(*)
591
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
592
+  (0.1ms) SELECT version FROM "schema_migrations"
593
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
594
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
595
+  (0.1ms) begin transaction
596
+ --------------------------------------------------------------------
597
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
598
+ --------------------------------------------------------------------
599
+  (0.1ms) rollback transaction
600
+  (0.0ms) begin transaction
601
+ -----------------------------------------
602
+ ServiceGeneratorTest: test_doesnt_blow_up
603
+ -----------------------------------------
604
+  (0.1ms) rollback transaction
605
+  (0.0ms) begin transaction
606
+ --------------------------------------------------------------
607
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
608
+ --------------------------------------------------------------
609
+  (0.1ms) rollback transaction
610
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
611
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
612
+  (0.1ms) select sqlite_version(*)
613
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
614
+  (0.1ms) SELECT version FROM "schema_migrations"
615
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
616
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
617
+  (0.1ms) begin transaction
618
+ --------------------------------------------------------------
619
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
620
+ --------------------------------------------------------------
621
+  (0.1ms) rollback transaction
622
+  (0.0ms) begin transaction
623
+ --------------------------------------------------------------------
624
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
625
+ --------------------------------------------------------------------
626
+  (0.1ms) rollback transaction
627
+  (0.1ms) begin transaction
628
+ -----------------------------------------
629
+ ServiceGeneratorTest: test_doesnt_blow_up
630
+ -----------------------------------------
631
+  (0.1ms) rollback transaction
632
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
633
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
634
+  (0.1ms) select sqlite_version(*)
635
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
636
+  (0.1ms) SELECT version FROM "schema_migrations"
637
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
638
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
639
+  (0.1ms) begin transaction
640
+ -----------------------------------------
641
+ ServiceGeneratorTest: test_doesnt_blow_up
642
+ -----------------------------------------
643
+  (0.1ms) rollback transaction
644
+  (0.1ms) begin transaction
645
+ --------------------------------------------------------------------
646
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
647
+ --------------------------------------------------------------------
648
+  (0.1ms) rollback transaction
649
+  (0.1ms) begin transaction
650
+ --------------------------------------------------------------
651
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
652
+ --------------------------------------------------------------
653
+  (0.0ms) rollback transaction
654
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
655
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
656
+  (0.1ms) select sqlite_version(*)
657
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
658
+  (0.1ms) SELECT version FROM "schema_migrations"
659
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
660
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
661
+  (0.1ms) begin transaction
662
+ -----------------------------------------
663
+ ServiceGeneratorTest: test_doesnt_blow_up
664
+ -----------------------------------------
665
+  (0.2ms) rollback transaction
666
+  (0.0ms) begin transaction
667
+ --------------------------------------------------------------------
668
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
669
+ --------------------------------------------------------------------
670
+  (0.1ms) rollback transaction
671
+  (0.1ms) begin transaction
672
+ --------------------------------------------------------------
673
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
674
+ --------------------------------------------------------------
675
+  (0.1ms) rollback transaction
676
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
677
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
678
+  (0.1ms) select sqlite_version(*)
679
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
680
+  (0.1ms) SELECT version FROM "schema_migrations"
681
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
682
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
683
+  (0.1ms) begin transaction
684
+ -----------------------------------------
685
+ ServiceGeneratorTest: test_doesnt_blow_up
686
+ -----------------------------------------
687
+  (0.1ms) rollback transaction
688
+  (0.0ms) begin transaction
689
+ --------------------------------------------------------------------
690
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
691
+ --------------------------------------------------------------------
692
+  (0.1ms) rollback transaction
693
+  (0.0ms) begin transaction
694
+ --------------------------------------------------------------
695
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
696
+ --------------------------------------------------------------
697
+  (0.1ms) rollback transaction
698
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
699
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
700
+  (0.1ms) select sqlite_version(*)
701
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
702
+  (0.1ms) SELECT version FROM "schema_migrations"
703
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
704
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
705
+  (0.1ms) begin transaction
706
+ -----------------------------------------
707
+ ServiceGeneratorTest: test_doesnt_blow_up
708
+ -----------------------------------------
709
+  (0.1ms) rollback transaction
710
+  (0.0ms) begin transaction
711
+ --------------------------------------------------------------
712
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
713
+ --------------------------------------------------------------
714
+  (0.1ms) rollback transaction
715
+  (0.0ms) begin transaction
716
+ --------------------------------------------------------------------
717
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
718
+ --------------------------------------------------------------------
719
+  (0.1ms) rollback transaction
720
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
721
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
722
+  (0.1ms) select sqlite_version(*)
723
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
724
+  (0.1ms) SELECT version FROM "schema_migrations"
725
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
726
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
727
+  (0.1ms) begin transaction
728
+ --------------------------------------------------------------------
729
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
730
+ --------------------------------------------------------------------
731
+  (0.1ms) rollback transaction
732
+  (0.0ms) begin transaction
733
+ --------------------------------------------------------------
734
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
735
+ --------------------------------------------------------------
736
+  (0.0ms) rollback transaction
737
+  (0.0ms) begin transaction
738
+ -----------------------------------------
739
+ ServiceGeneratorTest: test_doesnt_blow_up
740
+ -----------------------------------------
741
+  (0.1ms) rollback transaction
742
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
743
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
744
+  (0.1ms) select sqlite_version(*)
745
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
746
+  (0.1ms) SELECT version FROM "schema_migrations"
747
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
748
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
749
+  (0.1ms) begin transaction
750
+ --------------------------------------------------------------------
751
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
752
+ --------------------------------------------------------------------
753
+  (0.1ms) rollback transaction
754
+  (0.0ms) begin transaction
755
+ --------------------------------------------------------------
756
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
757
+ --------------------------------------------------------------
758
+  (0.1ms) rollback transaction
759
+  (0.0ms) begin transaction
760
+ -----------------------------------------
761
+ ServiceGeneratorTest: test_doesnt_blow_up
762
+ -----------------------------------------
763
+  (0.1ms) rollback transaction
764
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
765
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
766
+  (0.0ms) select sqlite_version(*)
767
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
768
+  (0.1ms) SELECT version FROM "schema_migrations"
769
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
770
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
771
+  (0.1ms) begin transaction
772
+ --------------------------------------------------------------
773
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
774
+ --------------------------------------------------------------
775
+  (0.1ms) rollback transaction
776
+  (0.0ms) begin transaction
777
+ --------------------------------------------------------------------
778
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
779
+ --------------------------------------------------------------------
780
+  (0.1ms) rollback transaction
781
+  (0.0ms) begin transaction
782
+ -----------------------------------------
783
+ ServiceGeneratorTest: test_doesnt_blow_up
784
+ -----------------------------------------
785
+  (0.0ms) rollback transaction
786
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
787
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
788
+  (0.1ms) select sqlite_version(*)
789
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
790
+  (0.1ms) SELECT version FROM "schema_migrations"
791
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
792
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
793
+  (0.1ms) begin transaction
794
+ --------------------------------------------------------------
795
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
796
+ --------------------------------------------------------------
797
+  (0.1ms) rollback transaction
798
+  (0.0ms) begin transaction
799
+ -----------------------------------------
800
+ ServiceGeneratorTest: test_doesnt_blow_up
801
+ -----------------------------------------
802
+  (0.1ms) rollback transaction
803
+  (0.0ms) begin transaction
804
+ --------------------------------------------------------------------
805
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
806
+ --------------------------------------------------------------------
807
+  (0.1ms) rollback transaction
808
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
809
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
810
+  (0.1ms) select sqlite_version(*)
811
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
812
+  (0.1ms) SELECT version FROM "schema_migrations"
813
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
814
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
815
+  (0.1ms) begin transaction
816
+ --------------------------------------------------------------
817
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
818
+ --------------------------------------------------------------
819
+  (0.1ms) rollback transaction
820
+  (0.1ms) begin transaction
821
+ --------------------------------------------------------------------
822
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
823
+ --------------------------------------------------------------------
824
+  (0.1ms) rollback transaction
825
+  (0.0ms) begin transaction
826
+ -----------------------------------------
827
+ ServiceGeneratorTest: test_doesnt_blow_up
828
+ -----------------------------------------
829
+  (0.1ms) rollback transaction
830
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
831
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
832
+  (0.1ms) select sqlite_version(*)
833
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
834
+  (0.1ms) SELECT version FROM "schema_migrations"
835
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
836
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
837
+  (0.1ms) begin transaction
838
+ --------------------------------------------------------------
839
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
840
+ --------------------------------------------------------------
841
+  (0.1ms) rollback transaction
842
+  (0.0ms) begin transaction
843
+ --------------------------------------------------------------------
844
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
845
+ --------------------------------------------------------------------
846
+  (0.0ms) rollback transaction
847
+  (0.0ms) begin transaction
848
+ -----------------------------------------
849
+ ServiceGeneratorTest: test_doesnt_blow_up
850
+ -----------------------------------------
851
+  (0.0ms) rollback transaction
852
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
853
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
854
+  (0.1ms) select sqlite_version(*)
855
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
856
+  (0.1ms) SELECT version FROM "schema_migrations"
857
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
858
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
859
+  (0.1ms) begin transaction
860
+ --------------------------------------------------------------
861
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
862
+ --------------------------------------------------------------
863
+  (0.1ms) rollback transaction
864
+  (0.0ms) begin transaction
865
+ --------------------------------------------------------------------
866
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
867
+ --------------------------------------------------------------------
868
+  (0.0ms) rollback transaction
869
+  (0.0ms) begin transaction
870
+ -----------------------------------------
871
+ ServiceGeneratorTest: test_doesnt_blow_up
872
+ -----------------------------------------
873
+  (0.1ms) rollback transaction
874
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
875
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
876
+  (0.1ms) select sqlite_version(*)
877
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
878
+  (0.1ms) SELECT version FROM "schema_migrations"
879
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
880
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
881
+  (0.1ms) begin transaction
882
+ -----------------------------------------
883
+ ServiceGeneratorTest: test_doesnt_blow_up
884
+ -----------------------------------------
885
+  (0.1ms) rollback transaction
886
+  (0.1ms) begin transaction
887
+ --------------------------------------------------------------------
888
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
889
+ --------------------------------------------------------------------
890
+  (0.1ms) rollback transaction
891
+  (0.1ms) begin transaction
892
+ --------------------------------------------------------------
893
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
894
+ --------------------------------------------------------------
895
+  (0.1ms) rollback transaction
896
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
897
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
898
+  (0.1ms) select sqlite_version(*)
899
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
900
+  (0.1ms) SELECT version FROM "schema_migrations"
901
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
902
+ ActiveRecord::SchemaMigration Load (1.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
903
+  (0.2ms) begin transaction
904
+ -----------------------------------------
905
+ ServiceGeneratorTest: test_doesnt_blow_up
906
+ -----------------------------------------
907
+  (0.1ms) rollback transaction
908
+  (0.0ms) begin transaction
909
+ --------------------------------------------------------------------
910
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
911
+ --------------------------------------------------------------------
912
+  (0.1ms) rollback transaction
913
+  (0.1ms) begin transaction
914
+ --------------------------------------------------------------
915
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
916
+ --------------------------------------------------------------
917
+  (0.1ms) rollback transaction
918
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
919
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
920
+  (0.2ms) select sqlite_version(*)
921
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
922
+  (0.1ms) SELECT version FROM "schema_migrations"
923
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
924
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
925
+  (0.1ms) begin transaction
926
+ --------------------------------------------------------------------
927
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
928
+ --------------------------------------------------------------------
929
+  (0.2ms) rollback transaction
930
+  (0.1ms) begin transaction
931
+ -----------------------------------------
932
+ ServiceGeneratorTest: test_doesnt_blow_up
933
+ -----------------------------------------
934
+  (0.1ms) rollback transaction
935
+  (0.0ms) begin transaction
936
+ --------------------------------------------------------------
937
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
938
+ --------------------------------------------------------------
939
+  (0.0ms) rollback transaction
940
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
941
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
942
+  (0.1ms) select sqlite_version(*)
943
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
944
+  (0.1ms) SELECT version FROM "schema_migrations"
945
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
946
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
947
+  (0.1ms) begin transaction
948
+ --------------------------------------------------------------
949
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
950
+ --------------------------------------------------------------
951
+  (0.1ms) rollback transaction
952
+  (0.1ms) begin transaction
953
+ --------------------------------------------------------------------
954
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
955
+ --------------------------------------------------------------------
956
+  (0.1ms) rollback transaction
957
+  (0.0ms) begin transaction
958
+ -----------------------------------------
959
+ ServiceGeneratorTest: test_doesnt_blow_up
960
+ -----------------------------------------
961
+  (0.1ms) rollback transaction
962
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
963
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
964
+  (0.1ms) select sqlite_version(*)
965
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
966
+  (0.1ms) SELECT version FROM "schema_migrations"
967
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
968
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
969
+  (0.1ms) begin transaction
970
+ -----------------------------------------
971
+ ServiceGeneratorTest: test_doesnt_blow_up
972
+ -----------------------------------------
973
+  (0.1ms) rollback transaction
974
+  (0.0ms) begin transaction
975
+ --------------------------------------------------------------------
976
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
977
+ --------------------------------------------------------------------
978
+  (0.0ms) rollback transaction
979
+  (0.0ms) begin transaction
980
+ --------------------------------------------------------------
981
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
982
+ --------------------------------------------------------------
983
+  (0.1ms) rollback transaction
984
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
985
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
986
+  (0.1ms) select sqlite_version(*)
987
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
988
+  (0.1ms) SELECT version FROM "schema_migrations"
989
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
990
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
991
+  (0.1ms) begin transaction
992
+ -----------------------------------------
993
+ ServiceGeneratorTest: test_doesnt_blow_up
994
+ -----------------------------------------
995
+  (0.1ms) rollback transaction
996
+  (0.1ms) begin transaction
997
+ --------------------------------------------------------------------
998
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
999
+ --------------------------------------------------------------------
1000
+  (0.1ms) rollback transaction
1001
+  (0.0ms) begin transaction
1002
+ --------------------------------------------------------------
1003
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1004
+ --------------------------------------------------------------
1005
+  (0.0ms) rollback transaction
1006
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1007
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1008
+  (0.0ms) select sqlite_version(*)
1009
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1010
+  (0.1ms) SELECT version FROM "schema_migrations"
1011
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1012
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1013
+  (0.1ms) begin transaction
1014
+ --------------------------------------------------------------------
1015
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1016
+ --------------------------------------------------------------------
1017
+  (0.1ms) rollback transaction
1018
+  (0.0ms) begin transaction
1019
+ -----------------------------------------
1020
+ ServiceGeneratorTest: test_doesnt_blow_up
1021
+ -----------------------------------------
1022
+  (0.1ms) rollback transaction
1023
+  (0.0ms) begin transaction
1024
+ --------------------------------------------------------------
1025
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1026
+ --------------------------------------------------------------
1027
+  (0.0ms) rollback transaction
1028
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1029
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1030
+  (0.1ms) select sqlite_version(*)
1031
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1032
+  (0.1ms) SELECT version FROM "schema_migrations"
1033
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1034
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1035
+  (0.1ms) begin transaction
1036
+ --------------------------------------------------------------------
1037
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1038
+ --------------------------------------------------------------------
1039
+  (0.1ms) rollback transaction
1040
+  (0.1ms) begin transaction
1041
+ -----------------------------------------
1042
+ ServiceGeneratorTest: test_doesnt_blow_up
1043
+ -----------------------------------------
1044
+  (0.1ms) rollback transaction
1045
+  (0.0ms) begin transaction
1046
+ --------------------------------------------------------------
1047
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1048
+ --------------------------------------------------------------
1049
+  (0.1ms) rollback transaction
1050
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1051
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1052
+  (0.1ms) select sqlite_version(*)
1053
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1054
+  (0.1ms) SELECT version FROM "schema_migrations"
1055
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1056
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1057
+  (0.1ms) begin transaction
1058
+ -----------------------------------------
1059
+ ServiceGeneratorTest: test_doesnt_blow_up
1060
+ -----------------------------------------
1061
+  (0.1ms) rollback transaction
1062
+  (0.0ms) begin transaction
1063
+ --------------------------------------------------------------------
1064
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1065
+ --------------------------------------------------------------------
1066
+  (0.0ms) rollback transaction
1067
+  (0.0ms) begin transaction
1068
+ --------------------------------------------------------------
1069
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1070
+ --------------------------------------------------------------
1071
+  (0.1ms) rollback transaction
1072
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1073
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1074
+  (0.1ms) select sqlite_version(*)
1075
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1076
+  (0.1ms) SELECT version FROM "schema_migrations"
1077
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1078
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1079
+  (0.1ms) begin transaction
1080
+ --------------------------------------------------------------
1081
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1082
+ --------------------------------------------------------------
1083
+  (0.1ms) rollback transaction
1084
+  (0.0ms) begin transaction
1085
+ --------------------------------------------------------------------
1086
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1087
+ --------------------------------------------------------------------
1088
+  (0.1ms) rollback transaction
1089
+  (0.1ms) begin transaction
1090
+ -----------------------------------------
1091
+ ServiceGeneratorTest: test_doesnt_blow_up
1092
+ -----------------------------------------
1093
+  (0.1ms) rollback transaction
1094
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1095
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1096
+  (0.1ms) select sqlite_version(*)
1097
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1098
+  (0.1ms) SELECT version FROM "schema_migrations"
1099
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1100
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1101
+  (0.1ms) begin transaction
1102
+ --------------------------------------------------------------
1103
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1104
+ --------------------------------------------------------------
1105
+  (0.1ms) rollback transaction
1106
+  (0.0ms) begin transaction
1107
+ --------------------------------------------------------------------
1108
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1109
+ --------------------------------------------------------------------
1110
+  (0.1ms) rollback transaction
1111
+  (0.0ms) begin transaction
1112
+ -----------------------------------------
1113
+ ServiceGeneratorTest: test_doesnt_blow_up
1114
+ -----------------------------------------
1115
+  (0.1ms) rollback transaction
1116
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1117
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1118
+  (0.1ms) select sqlite_version(*)
1119
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1120
+  (0.1ms) SELECT version FROM "schema_migrations"
1121
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1122
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1123
+  (0.1ms) begin transaction
1124
+ --------------------------------------------------------------------
1125
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1126
+ --------------------------------------------------------------------
1127
+  (0.1ms) rollback transaction
1128
+  (0.0ms) begin transaction
1129
+ -----------------------------------------
1130
+ ServiceGeneratorTest: test_doesnt_blow_up
1131
+ -----------------------------------------
1132
+  (0.1ms) rollback transaction
1133
+  (0.0ms) begin transaction
1134
+ --------------------------------------------------------------
1135
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1136
+ --------------------------------------------------------------
1137
+  (0.1ms) rollback transaction
1138
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1139
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1140
+  (0.1ms) select sqlite_version(*)
1141
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1142
+  (0.1ms) SELECT version FROM "schema_migrations"
1143
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1144
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1145
+  (0.1ms) begin transaction
1146
+ -----------------------------------------
1147
+ ServiceGeneratorTest: test_doesnt_blow_up
1148
+ -----------------------------------------
1149
+  (0.1ms) rollback transaction
1150
+  (0.1ms) begin transaction
1151
+ --------------------------------------------------------------------
1152
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1153
+ --------------------------------------------------------------------
1154
+  (0.1ms) rollback transaction
1155
+  (0.0ms) begin transaction
1156
+ --------------------------------------------------------------
1157
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1158
+ --------------------------------------------------------------
1159
+  (0.1ms) rollback transaction
1160
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1161
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1162
+  (0.0ms) select sqlite_version(*)
1163
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1164
+  (0.1ms) SELECT version FROM "schema_migrations"
1165
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1166
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1167
+  (0.1ms) begin transaction
1168
+ --------------------------------------------------------------
1169
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1170
+ --------------------------------------------------------------
1171
+  (0.1ms) rollback transaction
1172
+  (0.0ms) begin transaction
1173
+ --------------------------------------------------------------------
1174
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1175
+ --------------------------------------------------------------------
1176
+  (0.0ms) rollback transaction
1177
+  (0.0ms) begin transaction
1178
+ -----------------------------------------
1179
+ ServiceGeneratorTest: test_doesnt_blow_up
1180
+ -----------------------------------------
1181
+  (0.1ms) rollback transaction
1182
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1183
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1184
+  (0.1ms) select sqlite_version(*)
1185
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1186
+  (0.1ms) SELECT version FROM "schema_migrations"
1187
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1188
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1189
+  (0.1ms) begin transaction
1190
+ -----------------------------------------
1191
+ ServiceGeneratorTest: test_doesnt_blow_up
1192
+ -----------------------------------------
1193
+  (0.1ms) rollback transaction
1194
+  (0.0ms) begin transaction
1195
+ --------------------------------------------------------------------
1196
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1197
+ --------------------------------------------------------------------
1198
+  (0.1ms) rollback transaction
1199
+  (0.0ms) begin transaction
1200
+ --------------------------------------------------------------
1201
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1202
+ --------------------------------------------------------------
1203
+  (0.1ms) rollback transaction
1204
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1205
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1206
+  (0.1ms) select sqlite_version(*)
1207
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1208
+  (0.1ms) SELECT version FROM "schema_migrations"
1209
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1210
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1211
+  (0.1ms) begin transaction
1212
+ --------------------------------------------------------------
1213
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1214
+ --------------------------------------------------------------
1215
+  (0.1ms) rollback transaction
1216
+  (0.0ms) begin transaction
1217
+ --------------------------------------------------------------------
1218
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1219
+ --------------------------------------------------------------------
1220
+  (0.0ms) rollback transaction
1221
+  (0.0ms) begin transaction
1222
+ -----------------------------------------
1223
+ ServiceGeneratorTest: test_doesnt_blow_up
1224
+ -----------------------------------------
1225
+  (0.1ms) rollback transaction
1226
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1227
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1228
+  (0.1ms) select sqlite_version(*)
1229
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1230
+  (0.1ms) SELECT version FROM "schema_migrations"
1231
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1232
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1233
+  (0.1ms) begin transaction
1234
+ -----------------------------------------
1235
+ ServiceGeneratorTest: test_doesnt_blow_up
1236
+ -----------------------------------------
1237
+  (0.1ms) rollback transaction
1238
+  (0.0ms) begin transaction
1239
+ --------------------------------------------------------------
1240
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1241
+ --------------------------------------------------------------
1242
+  (0.1ms) rollback transaction
1243
+  (0.0ms) begin transaction
1244
+ --------------------------------------------------------------------
1245
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1246
+ --------------------------------------------------------------------
1247
+  (0.1ms) rollback transaction
1248
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1249
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1250
+  (0.0ms) select sqlite_version(*)
1251
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1252
+  (0.1ms) SELECT version FROM "schema_migrations"
1253
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1254
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1255
+  (0.1ms) begin transaction
1256
+ -----------------------------------------
1257
+ ServiceGeneratorTest: test_doesnt_blow_up
1258
+ -----------------------------------------
1259
+  (0.1ms) rollback transaction
1260
+  (0.0ms) begin transaction
1261
+ --------------------------------------------------------------
1262
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1263
+ --------------------------------------------------------------
1264
+  (0.1ms) rollback transaction
1265
+  (0.0ms) begin transaction
1266
+ --------------------------------------------------------------------
1267
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1268
+ --------------------------------------------------------------------
1269
+  (0.1ms) rollback transaction
1270
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1271
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1272
+  (0.1ms) select sqlite_version(*)
1273
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1274
+  (0.1ms) SELECT version FROM "schema_migrations"
1275
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1276
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1277
+  (0.1ms) begin transaction
1278
+ --------------------------------------------------------------
1279
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1280
+ --------------------------------------------------------------
1281
+  (0.1ms) rollback transaction
1282
+  (0.0ms) begin transaction
1283
+ --------------------------------------------------------------------
1284
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1285
+ --------------------------------------------------------------------
1286
+  (0.1ms) rollback transaction
1287
+  (0.0ms) begin transaction
1288
+ -----------------------------------------
1289
+ ServiceGeneratorTest: test_doesnt_blow_up
1290
+ -----------------------------------------
1291
+  (0.0ms) rollback transaction
1292
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1293
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1294
+  (0.1ms) select sqlite_version(*)
1295
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1296
+  (0.1ms) SELECT version FROM "schema_migrations"
1297
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1298
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1299
+  (0.1ms) begin transaction
1300
+ --------------------------------------------------------------------
1301
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1302
+ --------------------------------------------------------------------
1303
+  (0.1ms) rollback transaction
1304
+  (0.0ms) begin transaction
1305
+ -----------------------------------------
1306
+ ServiceGeneratorTest: test_doesnt_blow_up
1307
+ -----------------------------------------
1308
+  (0.1ms) rollback transaction
1309
+  (0.0ms) begin transaction
1310
+ --------------------------------------------------------------
1311
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1312
+ --------------------------------------------------------------
1313
+  (0.1ms) rollback transaction
1314
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1315
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1316
+  (0.1ms) select sqlite_version(*)
1317
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1318
+  (0.1ms) SELECT version FROM "schema_migrations"
1319
+  (1.1ms) 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
+ ServiceGeneratorTest: test_doesnt_blow_up
1324
+ -----------------------------------------
1325
+  (0.1ms) rollback transaction
1326
+  (0.1ms) begin transaction
1327
+ --------------------------------------------------------------------
1328
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1329
+ --------------------------------------------------------------------
1330
+  (0.0ms) rollback transaction
1331
+  (0.0ms) begin transaction
1332
+ --------------------------------------------------------------
1333
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1334
+ --------------------------------------------------------------
1335
+  (0.1ms) rollback transaction
1336
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1337
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1338
+  (0.1ms) select sqlite_version(*)
1339
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1340
+  (0.1ms) SELECT version FROM "schema_migrations"
1341
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1342
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1343
+  (0.1ms) begin transaction
1344
+ -----------------------------------------
1345
+ ServiceGeneratorTest: test_doesnt_blow_up
1346
+ -----------------------------------------
1347
+  (0.1ms) rollback transaction
1348
+  (0.0ms) begin transaction
1349
+ --------------------------------------------------------------------
1350
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1351
+ --------------------------------------------------------------------
1352
+  (0.1ms) rollback transaction
1353
+  (0.0ms) begin transaction
1354
+ --------------------------------------------------------------
1355
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1356
+ --------------------------------------------------------------
1357
+  (0.0ms) rollback transaction
1358
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1359
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1360
+  (0.1ms) select sqlite_version(*)
1361
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1362
+  (0.1ms) SELECT version FROM "schema_migrations"
1363
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1364
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1365
+  (0.1ms) begin transaction
1366
+ --------------------------------------------------------------
1367
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1368
+ --------------------------------------------------------------
1369
+  (0.1ms) rollback transaction
1370
+  (0.0ms) begin transaction
1371
+ --------------------------------------------------------------------
1372
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1373
+ --------------------------------------------------------------------
1374
+  (0.1ms) rollback transaction
1375
+  (0.0ms) begin transaction
1376
+ -----------------------------------------
1377
+ ServiceGeneratorTest: test_doesnt_blow_up
1378
+ -----------------------------------------
1379
+  (0.0ms) rollback transaction
1380
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1381
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1382
+  (0.1ms) select sqlite_version(*)
1383
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1384
+  (0.1ms) SELECT version FROM "schema_migrations"
1385
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1386
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1387
+  (0.1ms) begin transaction
1388
+ --------------------------------------------------------------------
1389
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1390
+ --------------------------------------------------------------------
1391
+  (0.1ms) rollback transaction
1392
+  (0.1ms) begin transaction
1393
+ -----------------------------------------
1394
+ ServiceGeneratorTest: test_doesnt_blow_up
1395
+ -----------------------------------------
1396
+  (0.1ms) rollback transaction
1397
+  (0.1ms) begin transaction
1398
+ --------------------------------------------------------------
1399
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1400
+ --------------------------------------------------------------
1401
+  (0.1ms) rollback transaction
1402
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1403
+  (5.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1404
+  (0.1ms) select sqlite_version(*)
1405
+  (2.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1406
+  (0.6ms) SELECT version FROM "schema_migrations"
1407
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1408
+ ActiveRecord::SchemaMigration Load (1.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
1409
+  (0.1ms) begin transaction
1410
+ -----------------------------------------
1411
+ ServiceGeneratorTest: test_doesnt_blow_up
1412
+ -----------------------------------------
1413
+  (0.1ms) rollback transaction
1414
+  (0.0ms) begin transaction
1415
+ --------------------------------------------------------------
1416
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1417
+ --------------------------------------------------------------
1418
+  (0.1ms) rollback transaction
1419
+  (0.1ms) begin transaction
1420
+ --------------------------------------------------------------------
1421
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1422
+ --------------------------------------------------------------------
1423
+  (0.1ms) rollback transaction
1424
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1425
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1426
+  (0.1ms) select sqlite_version(*)
1427
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1428
+  (0.1ms) SELECT version FROM "schema_migrations"
1429
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1430
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1431
+  (0.2ms) begin transaction
1432
+ --------------------------------------------------------------------
1433
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1434
+ --------------------------------------------------------------------
1435
+  (0.1ms) rollback transaction
1436
+  (0.1ms) begin transaction
1437
+ -----------------------------------------
1438
+ ServiceGeneratorTest: test_doesnt_blow_up
1439
+ -----------------------------------------
1440
+  (0.1ms) rollback transaction
1441
+  (0.0ms) begin transaction
1442
+ --------------------------------------------------------------
1443
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1444
+ --------------------------------------------------------------
1445
+  (0.1ms) rollback transaction
1446
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1447
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1448
+  (0.1ms) select sqlite_version(*)
1449
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1450
+  (0.2ms) SELECT version FROM "schema_migrations"
1451
+  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1452
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1453
+  (0.1ms) begin transaction
1454
+ -----------------------------------------
1455
+ ServiceGeneratorTest: test_doesnt_blow_up
1456
+ -----------------------------------------
1457
+  (0.1ms) rollback transaction
1458
+  (0.1ms) begin transaction
1459
+ --------------------------------------------------------------------
1460
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1461
+ --------------------------------------------------------------------
1462
+  (0.1ms) rollback transaction
1463
+  (0.1ms) begin transaction
1464
+ --------------------------------------------------------------
1465
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1466
+ --------------------------------------------------------------
1467
+  (0.1ms) rollback transaction
1468
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1469
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1470
+  (0.1ms) select sqlite_version(*)
1471
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1472
+  (0.1ms) SELECT version FROM "schema_migrations"
1473
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1474
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1475
+  (0.1ms) begin transaction
1476
+ -----------------------------------------
1477
+ ServiceGeneratorTest: test_doesnt_blow_up
1478
+ -----------------------------------------
1479
+  (0.1ms) rollback transaction
1480
+  (0.1ms) begin transaction
1481
+ --------------------------------------------------------------------
1482
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1483
+ --------------------------------------------------------------------
1484
+  (0.1ms) rollback transaction
1485
+  (0.0ms) begin transaction
1486
+ --------------------------------------------------------------
1487
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1488
+ --------------------------------------------------------------
1489
+  (0.1ms) rollback transaction
1490
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1491
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1492
+  (0.1ms) select sqlite_version(*)
1493
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1494
+  (0.1ms) SELECT version FROM "schema_migrations"
1495
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1496
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1497
+  (0.1ms) begin transaction
1498
+ --------------------------------------------------------------------
1499
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1500
+ --------------------------------------------------------------------
1501
+  (0.1ms) rollback transaction
1502
+  (0.1ms) begin transaction
1503
+ -----------------------------------------
1504
+ ServiceGeneratorTest: test_doesnt_blow_up
1505
+ -----------------------------------------
1506
+  (0.1ms) rollback transaction
1507
+  (0.1ms) begin transaction
1508
+ --------------------------------------------------------------
1509
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1510
+ --------------------------------------------------------------
1511
+  (0.1ms) rollback transaction
1512
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1513
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1514
+  (0.1ms) select sqlite_version(*)
1515
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1516
+  (0.1ms) SELECT version FROM "schema_migrations"
1517
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1518
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1519
+  (0.1ms) begin transaction
1520
+ -----------------------------------------
1521
+ ServiceGeneratorTest: test_doesnt_blow_up
1522
+ -----------------------------------------
1523
+  (0.1ms) rollback transaction
1524
+  (0.0ms) begin transaction
1525
+ --------------------------------------------------------------------
1526
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1527
+ --------------------------------------------------------------------
1528
+  (0.1ms) rollback transaction
1529
+  (0.0ms) begin transaction
1530
+ --------------------------------------------------------------
1531
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1532
+ --------------------------------------------------------------
1533
+  (0.1ms) rollback transaction
1534
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1535
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1536
+  (0.1ms) select sqlite_version(*)
1537
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1538
+  (0.1ms) SELECT version FROM "schema_migrations"
1539
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1540
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1541
+  (0.1ms) begin transaction
1542
+ -----------------------------------------
1543
+ ServiceGeneratorTest: test_doesnt_blow_up
1544
+ -----------------------------------------
1545
+  (0.1ms) rollback transaction
1546
+  (0.1ms) begin transaction
1547
+ --------------------------------------------------------------
1548
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1549
+ --------------------------------------------------------------
1550
+  (0.1ms) rollback transaction
1551
+  (0.0ms) begin transaction
1552
+ --------------------------------------------------------------------
1553
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1554
+ --------------------------------------------------------------------
1555
+  (0.1ms) rollback transaction
1556
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1557
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1558
+  (0.1ms) select sqlite_version(*)
1559
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1560
+  (0.1ms) SELECT version FROM "schema_migrations"
1561
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1562
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1563
+  (0.1ms) begin transaction
1564
+ -----------------------------------------
1565
+ ServiceGeneratorTest: test_doesnt_blow_up
1566
+ -----------------------------------------
1567
+  (0.1ms) rollback transaction
1568
+  (0.0ms) begin transaction
1569
+ --------------------------------------------------------------------
1570
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1571
+ --------------------------------------------------------------------
1572
+  (0.1ms) rollback transaction
1573
+  (0.0ms) begin transaction
1574
+ --------------------------------------------------------------
1575
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1576
+ --------------------------------------------------------------
1577
+  (0.1ms) rollback transaction
1578
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1579
+  (5.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1580
+  (0.1ms) select sqlite_version(*)
1581
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1582
+  (0.1ms) SELECT version FROM "schema_migrations"
1583
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1584
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1585
+  (0.1ms) begin transaction
1586
+ -----------------------------------------
1587
+ ServiceGeneratorTest: test_doesnt_blow_up
1588
+ -----------------------------------------
1589
+  (0.1ms) rollback transaction
1590
+  (0.0ms) begin transaction
1591
+ --------------------------------------------------------------------
1592
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1593
+ --------------------------------------------------------------------
1594
+  (0.1ms) rollback transaction
1595
+  (0.0ms) begin transaction
1596
+ --------------------------------------------------------------
1597
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1598
+ --------------------------------------------------------------
1599
+  (0.1ms) rollback transaction
1600
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1601
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1602
+  (0.1ms) select sqlite_version(*)
1603
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1604
+  (0.1ms) SELECT version FROM "schema_migrations"
1605
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1606
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1607
+  (0.1ms) begin transaction
1608
+ -----------------------------------------
1609
+ ServiceGeneratorTest: test_doesnt_blow_up
1610
+ -----------------------------------------
1611
+  (0.1ms) rollback transaction
1612
+  (0.0ms) begin transaction
1613
+ --------------------------------------------------------------------
1614
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1615
+ --------------------------------------------------------------------
1616
+  (0.1ms) rollback transaction
1617
+  (0.0ms) begin transaction
1618
+ --------------------------------------------------------------
1619
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1620
+ --------------------------------------------------------------
1621
+  (0.1ms) rollback transaction
1622
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1623
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1624
+  (0.1ms) select sqlite_version(*)
1625
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1626
+  (0.1ms) SELECT version FROM "schema_migrations"
1627
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1628
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1629
+  (0.1ms) begin transaction
1630
+ --------------------------------------------------------------
1631
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1632
+ --------------------------------------------------------------
1633
+  (0.1ms) rollback transaction
1634
+  (0.0ms) begin transaction
1635
+ --------------------------------------------------------------------
1636
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1637
+ --------------------------------------------------------------------
1638
+  (0.1ms) rollback transaction
1639
+  (0.0ms) begin transaction
1640
+ -----------------------------------------
1641
+ ServiceGeneratorTest: test_doesnt_blow_up
1642
+ -----------------------------------------
1643
+  (0.1ms) rollback transaction
1644
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1645
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1646
+  (0.1ms) select sqlite_version(*)
1647
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1648
+  (0.1ms) SELECT version FROM "schema_migrations"
1649
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1650
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1651
+  (0.1ms) begin transaction
1652
+ -----------------------------------------
1653
+ ServiceGeneratorTest: test_doesnt_blow_up
1654
+ -----------------------------------------
1655
+  (0.1ms) rollback transaction
1656
+  (0.1ms) begin transaction
1657
+ --------------------------------------------------------------
1658
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1659
+ --------------------------------------------------------------
1660
+  (0.1ms) rollback transaction
1661
+  (0.0ms) begin transaction
1662
+ --------------------------------------------------------------------
1663
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1664
+ --------------------------------------------------------------------
1665
+  (0.1ms) rollback transaction
1666
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1667
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1668
+  (0.0ms) select sqlite_version(*)
1669
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1670
+  (0.1ms) SELECT version FROM "schema_migrations"
1671
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1672
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1673
+  (0.1ms) begin transaction
1674
+ -----------------------------------------
1675
+ ServiceGeneratorTest: test_doesnt_blow_up
1676
+ -----------------------------------------
1677
+  (0.1ms) rollback transaction
1678
+  (0.0ms) begin transaction
1679
+ --------------------------------------------------------------------
1680
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1681
+ --------------------------------------------------------------------
1682
+  (0.1ms) rollback transaction
1683
+  (0.0ms) begin transaction
1684
+ --------------------------------------------------------------
1685
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1686
+ --------------------------------------------------------------
1687
+  (0.1ms) rollback transaction
1688
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1689
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1690
+  (0.0ms) select sqlite_version(*)
1691
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1692
+  (0.1ms) SELECT version FROM "schema_migrations"
1693
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1694
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1695
+  (0.1ms) begin transaction
1696
+ --------------------------------------------------------------
1697
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1698
+ --------------------------------------------------------------
1699
+  (0.1ms) rollback transaction
1700
+  (0.1ms) begin transaction
1701
+ --------------------------------------------------------------------
1702
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1703
+ --------------------------------------------------------------------
1704
+  (0.1ms) rollback transaction
1705
+  (0.0ms) begin transaction
1706
+ -----------------------------------------
1707
+ ServiceGeneratorTest: test_doesnt_blow_up
1708
+ -----------------------------------------
1709
+  (0.1ms) rollback transaction
1710
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1711
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1712
+  (0.1ms) select sqlite_version(*)
1713
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1714
+  (0.1ms) SELECT version FROM "schema_migrations"
1715
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1716
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1717
+  (0.1ms) begin transaction
1718
+ --------------------------------------------------------------
1719
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1720
+ --------------------------------------------------------------
1721
+  (0.1ms) rollback transaction
1722
+  (0.0ms) begin transaction
1723
+ --------------------------------------------------------------------
1724
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1725
+ --------------------------------------------------------------------
1726
+  (0.1ms) rollback transaction
1727
+  (0.0ms) begin transaction
1728
+ -----------------------------------------
1729
+ ServiceGeneratorTest: test_doesnt_blow_up
1730
+ -----------------------------------------
1731
+  (0.0ms) rollback transaction
1732
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1733
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1734
+  (0.1ms) select sqlite_version(*)
1735
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1736
+  (0.1ms) SELECT version FROM "schema_migrations"
1737
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1738
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1739
+  (0.1ms) begin transaction
1740
+ -----------------------------------------
1741
+ ServiceGeneratorTest: test_doesnt_blow_up
1742
+ -----------------------------------------
1743
+  (0.1ms) rollback transaction
1744
+  (0.0ms) begin transaction
1745
+ --------------------------------------------------------------
1746
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1747
+ --------------------------------------------------------------
1748
+  (0.0ms) rollback transaction
1749
+  (0.0ms) begin transaction
1750
+ --------------------------------------------------------------------
1751
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1752
+ --------------------------------------------------------------------
1753
+  (0.1ms) rollback transaction
1754
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1755
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1756
+  (0.0ms) select sqlite_version(*)
1757
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1758
+  (0.1ms) SELECT version FROM "schema_migrations"
1759
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1760
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1761
+  (0.1ms) begin transaction
1762
+ -----------------------------------------
1763
+ ServiceGeneratorTest: test_doesnt_blow_up
1764
+ -----------------------------------------
1765
+  (0.1ms) rollback transaction
1766
+  (0.1ms) begin transaction
1767
+ --------------------------------------------------------------
1768
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1769
+ --------------------------------------------------------------
1770
+  (0.1ms) rollback transaction
1771
+  (0.1ms) begin transaction
1772
+ --------------------------------------------------------------------
1773
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1774
+ --------------------------------------------------------------------
1775
+  (0.1ms) rollback transaction
1776
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1777
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1778
+  (0.1ms) select sqlite_version(*)
1779
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1780
+  (0.1ms) SELECT version FROM "schema_migrations"
1781
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1782
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1783
+  (0.1ms) begin transaction
1784
+ --------------------------------------------------------------
1785
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1786
+ --------------------------------------------------------------
1787
+  (0.1ms) rollback transaction
1788
+  (0.0ms) begin transaction
1789
+ -----------------------------------------
1790
+ ServiceGeneratorTest: test_doesnt_blow_up
1791
+ -----------------------------------------
1792
+  (0.0ms) rollback transaction
1793
+  (0.0ms) begin transaction
1794
+ --------------------------------------------------------------------
1795
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1796
+ --------------------------------------------------------------------
1797
+  (0.1ms) rollback transaction
1798
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1799
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1800
+  (0.1ms) select sqlite_version(*)
1801
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1802
+  (0.1ms) SELECT version FROM "schema_migrations"
1803
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1804
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1805
+  (0.1ms) begin transaction
1806
+ --------------------------------------------------------------------
1807
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1808
+ --------------------------------------------------------------------
1809
+  (0.1ms) rollback transaction
1810
+  (0.0ms) begin transaction
1811
+ -----------------------------------------
1812
+ ServiceGeneratorTest: test_doesnt_blow_up
1813
+ -----------------------------------------
1814
+  (0.1ms) rollback transaction
1815
+  (0.0ms) begin transaction
1816
+ --------------------------------------------------------------
1817
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1818
+ --------------------------------------------------------------
1819
+  (0.1ms) rollback transaction
1820
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1821
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1822
+  (0.1ms) select sqlite_version(*)
1823
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1824
+  (0.1ms) SELECT version FROM "schema_migrations"
1825
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1826
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1827
+  (0.1ms) begin transaction
1828
+ --------------------------------------------------------------------
1829
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1830
+ --------------------------------------------------------------------
1831
+  (0.1ms) rollback transaction
1832
+  (0.0ms) begin transaction
1833
+ -----------------------------------------
1834
+ ServiceGeneratorTest: test_doesnt_blow_up
1835
+ -----------------------------------------
1836
+  (0.1ms) rollback transaction
1837
+  (0.0ms) begin transaction
1838
+ --------------------------------------------------------------
1839
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1840
+ --------------------------------------------------------------
1841
+  (0.1ms) rollback transaction
1842
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1843
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1844
+  (0.1ms) select sqlite_version(*)
1845
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1846
+  (0.1ms) SELECT version FROM "schema_migrations"
1847
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1848
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1849
+  (0.2ms) begin transaction
1850
+ -----------------------------------------
1851
+ ServiceGeneratorTest: test_doesnt_blow_up
1852
+ -----------------------------------------
1853
+  (0.1ms) rollback transaction
1854
+  (0.0ms) begin transaction
1855
+ --------------------------------------------------------------------
1856
+ ServiceGeneratorTest: test_generates_a_class_and_test_stub_correctly
1857
+ --------------------------------------------------------------------
1858
+  (0.0ms) rollback transaction
1859
+  (0.0ms) begin transaction
1860
+ --------------------------------------------------------------
1861
+ ServiceGeneratorTest: test_generates_a_module::class_correctly
1862
+ --------------------------------------------------------------
1863
+  (0.1ms) rollback transaction