express_settings 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +37 -0
  5. data/app/assets/javascripts/express_settings/application.js +13 -0
  6. data/app/assets/stylesheets/express_settings/application.css +15 -0
  7. data/app/controllers/express_settings/application_controller.rb +4 -0
  8. data/app/helpers/express_settings/application_helper.rb +4 -0
  9. data/app/views/layouts/express_settings/application.html.erb +14 -0
  10. data/config/routes.rb +2 -0
  11. data/lib/express_settings.rb +4 -0
  12. data/lib/express_settings/engine.rb +7 -0
  13. data/lib/express_settings/version.rb +3 -0
  14. data/lib/generators/express_settings/install/USAGE +8 -0
  15. data/lib/generators/express_settings/install/install_generator.rb +35 -0
  16. data/lib/generators/express_settings/install/templates/controller/controller.rb +28 -0
  17. data/lib/generators/express_settings/install/templates/model/model.rb +14 -0
  18. data/lib/generators/express_settings/install/templates/show.html.et.erb +9 -0
  19. data/lib/tasks/express_settings_tasks.rake +4 -0
  20. data/test/dummy/README.rdoc +28 -0
  21. data/test/dummy/Rakefile +6 -0
  22. data/test/dummy/app/assets/javascripts/application.js +13 -0
  23. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  24. data/test/dummy/app/controllers/application_controller.rb +5 -0
  25. data/test/dummy/app/helpers/application_helper.rb +2 -0
  26. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  27. data/test/dummy/bin/bundle +3 -0
  28. data/test/dummy/bin/rails +4 -0
  29. data/test/dummy/bin/rake +4 -0
  30. data/test/dummy/bin/setup +29 -0
  31. data/test/dummy/config.ru +4 -0
  32. data/test/dummy/config/application.rb +26 -0
  33. data/test/dummy/config/boot.rb +5 -0
  34. data/test/dummy/config/database.yml +25 -0
  35. data/test/dummy/config/environment.rb +5 -0
  36. data/test/dummy/config/environments/development.rb +41 -0
  37. data/test/dummy/config/environments/production.rb +79 -0
  38. data/test/dummy/config/environments/test.rb +42 -0
  39. data/test/dummy/config/initializers/assets.rb +11 -0
  40. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  41. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  42. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  43. data/test/dummy/config/initializers/inflections.rb +16 -0
  44. data/test/dummy/config/initializers/mime_types.rb +4 -0
  45. data/test/dummy/config/initializers/session_store.rb +3 -0
  46. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  47. data/test/dummy/config/locales/en.yml +23 -0
  48. data/test/dummy/config/routes.rb +4 -0
  49. data/test/dummy/config/secrets.yml +22 -0
  50. data/test/dummy/db/schema.rb +16 -0
  51. data/test/dummy/db/test.sqlite3 +0 -0
  52. data/test/dummy/log/test.log +1827 -0
  53. data/test/dummy/public/404.html +67 -0
  54. data/test/dummy/public/422.html +67 -0
  55. data/test/dummy/public/500.html +66 -0
  56. data/test/dummy/public/favicon.ico +0 -0
  57. data/test/dummy/tmp/generators/app/controllers/generators/admin/settings_controller.rb +28 -0
  58. data/test/dummy/tmp/generators/app/models/generators/setting.rb +14 -0
  59. data/test/dummy/tmp/generators/app/views/generators/admin/settings/show.html.et +9 -0
  60. data/test/dummy/tmp/generators/config/routes.rb +4 -0
  61. data/test/dummy/tmp/generators/db/migrate/20150325071720_create_generators_settings.rb +7 -0
  62. data/test/dummy/tmp/generators/lib/generators/engine.rb +12 -0
  63. data/test/express_settings_test.rb +7 -0
  64. data/test/fixtures/engine.rb +5 -0
  65. data/test/fixtures/routes.rb +2 -0
  66. data/test/integration/navigation_test.rb +10 -0
  67. data/test/lib/generators/express_settings/install_generator_test.rb +65 -0
  68. data/test/support/generator_helper.rb +17 -0
  69. data/test/test_helper.rb +19 -0
  70. metadata +219 -0
@@ -0,0 +1,25 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ #
7
+ default: &default
8
+ adapter: sqlite3
9
+ pool: 5
10
+ timeout: 5000
11
+
12
+ development:
13
+ <<: *default
14
+ database: db/development.sqlite3
15
+
16
+ # Warning: The database defined as "test" will be erased and
17
+ # re-generated from your development database when you run "rake".
18
+ # Do not set this db to the same as development or production.
19
+ test:
20
+ <<: *default
21
+ database: db/test.sqlite3
22
+
23
+ production:
24
+ <<: *default
25
+ database: db/production.sqlite3
@@ -0,0 +1,5 @@
1
+ # Load the Rails application.
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the Rails application.
5
+ Rails.application.initialize!
@@ -0,0 +1,41 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Do not eager load code on boot.
10
+ config.eager_load = false
11
+
12
+ # Show full error reports and disable caching.
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send.
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger.
20
+ config.active_support.deprecation = :log
21
+
22
+ # Raise an error on page load if there are pending migrations.
23
+ config.active_record.migration_error = :page_load
24
+
25
+ # Debug mode disables concatenation and preprocessing of assets.
26
+ # This option may cause significant delays in view rendering with a large
27
+ # number of complex assets.
28
+ config.assets.debug = true
29
+
30
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
31
+ # yet still be able to expire them through the digest params.
32
+ config.assets.digest = true
33
+
34
+ # Adds additional error checking when serving assets at runtime.
35
+ # Checks for improperly declared sprockets dependencies.
36
+ # Raises helpful error messages.
37
+ config.assets.raise_runtime_errors = true
38
+
39
+ # Raises error for missing translations
40
+ # config.action_view.raise_on_missing_translations = true
41
+ end
@@ -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,4 @@
1
+ Rails.application.routes.draw do
2
+
3
+ mount ExpressSettings::Engine => "/express_settings"
4
+ 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: 66cd7ce084788a8e265ddb74234454694cfe6dde5a5b4022c7eb4d27bc7c7a1ae6ba4e63a01bde6b23e74f6fa0b2739be52a07d80e576e56da6d878588fa8fa4
15
+
16
+ test:
17
+ secret_key_base: 29b91cd5fb8f992344a8b4757b452d5970a655b42b9a7ebb5b3c0bd696660318b1e2340d32a3d8156c22e838af1116e89303659091e9d7e9bc0abda119ac36ad
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,1827 @@
1
+  (0.1ms) begin transaction
2
+ -------------------------------
3
+ ExpressSettingsTest: test_truth
4
+ -------------------------------
5
+  (0.0ms) rollback transaction
6
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
7
+  (0.0ms) select sqlite_version(*)
8
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
9
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
10
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
12
+  (0.1ms) select sqlite_version(*)
13
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
14
+  (0.1ms) SELECT version FROM "schema_migrations"
15
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
16
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
17
+  (0.1ms) begin transaction
18
+ -------------------------------
19
+ ExpressSettingsTest: test_truth
20
+ -------------------------------
21
+  (0.0ms) rollback transaction
22
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
23
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
24
+  (0.1ms) select sqlite_version(*)
25
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
26
+  (0.1ms) SELECT version FROM "schema_migrations"
27
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
28
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
29
+  (0.1ms) begin transaction
30
+ -------------------------------------------------------------------------
31
+ ExpressSettings::InstallGeneratorTest: test_generator_runs_without_errors
32
+ -------------------------------------------------------------------------
33
+  (0.0ms) rollback transaction
34
+  (0.0ms) begin transaction
35
+ -------------------------------
36
+ ExpressSettingsTest: test_truth
37
+ -------------------------------
38
+  (0.0ms) rollback transaction
39
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
40
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
41
+  (0.1ms) select sqlite_version(*)
42
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
43
+  (0.1ms) SELECT version FROM "schema_migrations"
44
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
45
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
46
+  (0.1ms) begin transaction
47
+ -------------------------------
48
+ ExpressSettingsTest: test_truth
49
+ -------------------------------
50
+  (0.0ms) rollback transaction
51
+  (0.0ms) begin transaction
52
+ ----------------------------------------------------------------------
53
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
54
+ ----------------------------------------------------------------------
55
+  (0.0ms) rollback transaction
56
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
57
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
58
+  (0.0ms) select sqlite_version(*)
59
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
60
+  (0.1ms) SELECT version FROM "schema_migrations"
61
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
62
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
63
+  (0.1ms) begin transaction
64
+ -------------------------------
65
+ ExpressSettingsTest: test_truth
66
+ -------------------------------
67
+  (0.0ms) rollback transaction
68
+  (0.0ms) begin transaction
69
+ ----------------------------------------------------------------------
70
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
71
+ ----------------------------------------------------------------------
72
+  (0.0ms) rollback transaction
73
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
74
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
75
+  (0.0ms) select sqlite_version(*)
76
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
77
+  (0.2ms) SELECT version FROM "schema_migrations"
78
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
79
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
80
+  (0.1ms) begin transaction
81
+ ----------------------------------------------------------------------
82
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
83
+ ----------------------------------------------------------------------
84
+  (0.0ms) rollback transaction
85
+  (0.0ms) begin transaction
86
+ -------------------------------
87
+ ExpressSettingsTest: test_truth
88
+ -------------------------------
89
+  (0.0ms) rollback transaction
90
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
91
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
92
+  (0.1ms) select sqlite_version(*)
93
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
94
+  (0.1ms) SELECT version FROM "schema_migrations"
95
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
96
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
97
+  (0.1ms) begin transaction
98
+ -------------------------------
99
+ ExpressSettingsTest: test_truth
100
+ -------------------------------
101
+  (0.0ms) rollback transaction
102
+  (0.0ms) begin transaction
103
+ ----------------------------------------------------------------------
104
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
105
+ ----------------------------------------------------------------------
106
+  (0.0ms) rollback transaction
107
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
108
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
109
+  (0.1ms) select sqlite_version(*)
110
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
111
+  (0.1ms) SELECT version FROM "schema_migrations"
112
+  (1.3ms) 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
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
117
+ ----------------------------------------------------------------------
118
+  (0.0ms) rollback transaction
119
+  (0.0ms) begin transaction
120
+ -------------------------------
121
+ ExpressSettingsTest: test_truth
122
+ -------------------------------
123
+  (0.0ms) rollback transaction
124
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
125
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
126
+  (0.0ms) select sqlite_version(*)
127
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
128
+  (0.1ms) SELECT version FROM "schema_migrations"
129
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
130
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
131
+  (0.1ms) begin transaction
132
+ -------------------------------
133
+ ExpressSettingsTest: test_truth
134
+ -------------------------------
135
+  (0.0ms) rollback transaction
136
+  (0.0ms) begin transaction
137
+ ----------------------------------------------------------------------
138
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
139
+ ----------------------------------------------------------------------
140
+  (0.0ms) rollback transaction
141
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
142
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
143
+  (0.0ms) select sqlite_version(*)
144
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
145
+  (0.1ms) SELECT version FROM "schema_migrations"
146
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
147
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
148
+  (0.1ms) begin transaction
149
+ -------------------------------
150
+ ExpressSettingsTest: test_truth
151
+ -------------------------------
152
+  (0.0ms) rollback transaction
153
+  (0.0ms) begin transaction
154
+ ----------------------------------------------------------------------
155
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
156
+ ----------------------------------------------------------------------
157
+  (0.0ms) rollback transaction
158
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
159
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
160
+  (0.0ms) select sqlite_version(*)
161
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
162
+  (0.2ms) SELECT version FROM "schema_migrations"
163
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
164
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
165
+  (0.1ms) begin transaction
166
+ ----------------------------------------------------------------------
167
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
168
+ ----------------------------------------------------------------------
169
+  (0.0ms) rollback transaction
170
+  (0.0ms) begin transaction
171
+ -------------------------------
172
+ ExpressSettingsTest: test_truth
173
+ -------------------------------
174
+  (0.1ms) rollback transaction
175
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
176
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
177
+  (0.0ms) select sqlite_version(*)
178
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
179
+  (0.1ms) SELECT version FROM "schema_migrations"
180
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
181
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
182
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
183
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
184
+  (0.1ms) select sqlite_version(*)
185
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
186
+  (0.1ms) SELECT version FROM "schema_migrations"
187
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
188
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
189
+  (0.1ms) begin transaction
190
+ ----------------------------------------------------------------------
191
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
192
+ ----------------------------------------------------------------------
193
+  (0.0ms) rollback transaction
194
+  (0.0ms) begin transaction
195
+ -------------------------------
196
+ ExpressSettingsTest: test_truth
197
+ -------------------------------
198
+  (0.0ms) rollback transaction
199
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
200
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
201
+  (0.0ms) select sqlite_version(*)
202
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
203
+  (0.1ms) SELECT version FROM "schema_migrations"
204
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
205
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
206
+  (0.1ms) begin transaction
207
+ -------------------------------
208
+ ExpressSettingsTest: test_truth
209
+ -------------------------------
210
+  (0.1ms) rollback transaction
211
+  (0.0ms) begin transaction
212
+ ----------------------------------------------------------------------
213
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
214
+ ----------------------------------------------------------------------
215
+  (0.1ms) rollback transaction
216
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
217
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
218
+  (0.0ms) select sqlite_version(*)
219
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
220
+  (0.1ms) SELECT version FROM "schema_migrations"
221
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
222
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
223
+  (0.1ms) begin transaction
224
+ ----------------------------------------------------------------------
225
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
226
+ ----------------------------------------------------------------------
227
+  (0.1ms) rollback transaction
228
+  (0.0ms) begin transaction
229
+ -------------------------------
230
+ ExpressSettingsTest: test_truth
231
+ -------------------------------
232
+  (0.0ms) rollback transaction
233
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
234
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
235
+  (0.0ms) select sqlite_version(*)
236
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
237
+  (0.1ms) SELECT version FROM "schema_migrations"
238
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
239
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
240
+  (0.1ms) begin transaction
241
+ -------------------------------
242
+ ExpressSettingsTest: test_truth
243
+ -------------------------------
244
+  (0.0ms) rollback transaction
245
+  (0.0ms) begin transaction
246
+ ----------------------------------------------------------------------
247
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
248
+ ----------------------------------------------------------------------
249
+  (0.1ms) rollback transaction
250
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
251
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
252
+  (0.1ms) select sqlite_version(*)
253
+  (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
254
+  (0.1ms) SELECT version FROM "schema_migrations"
255
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
256
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
257
+  (0.1ms) begin transaction
258
+ ----------------------------------------------------------------------
259
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
260
+ ----------------------------------------------------------------------
261
+  (0.0ms) rollback transaction
262
+  (0.0ms) begin transaction
263
+ -------------------------------
264
+ ExpressSettingsTest: test_truth
265
+ -------------------------------
266
+  (0.0ms) rollback transaction
267
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
268
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
269
+  (0.0ms) select sqlite_version(*)
270
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
271
+  (0.1ms) SELECT version FROM "schema_migrations"
272
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
273
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
274
+  (0.1ms) begin transaction
275
+ -------------------------------
276
+ ExpressSettingsTest: test_truth
277
+ -------------------------------
278
+  (0.0ms) rollback transaction
279
+  (0.0ms) begin transaction
280
+ ----------------------------------------------------------------------
281
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
282
+ ----------------------------------------------------------------------
283
+  (0.0ms) rollback transaction
284
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
285
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
286
+  (0.0ms) select sqlite_version(*)
287
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
288
+  (0.1ms) SELECT version FROM "schema_migrations"
289
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
290
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
291
+  (0.1ms) begin transaction
292
+ ----------------------------------------------------------------------
293
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
294
+ ----------------------------------------------------------------------
295
+  (0.0ms) rollback transaction
296
+  (0.0ms) begin transaction
297
+ -------------------------------
298
+ ExpressSettingsTest: test_truth
299
+ -------------------------------
300
+  (0.0ms) rollback transaction
301
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
302
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
303
+  (0.2ms) select sqlite_version(*)
304
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
305
+  (0.1ms) SELECT version FROM "schema_migrations"
306
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
307
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
308
+  (0.1ms) begin transaction
309
+ ----------------------------------------------------------------------
310
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
311
+ ----------------------------------------------------------------------
312
+  (0.0ms) rollback transaction
313
+  (0.0ms) begin transaction
314
+ -------------------------------
315
+ ExpressSettingsTest: test_truth
316
+ -------------------------------
317
+  (0.0ms) rollback transaction
318
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
319
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
320
+  (0.0ms) select sqlite_version(*)
321
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
322
+  (0.1ms) SELECT version FROM "schema_migrations"
323
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
324
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
325
+  (0.1ms) begin transaction
326
+ ----------------------------------------------------------------------
327
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
328
+ ----------------------------------------------------------------------
329
+  (0.1ms) rollback transaction
330
+  (0.1ms) begin transaction
331
+ -------------------------------
332
+ ExpressSettingsTest: test_truth
333
+ -------------------------------
334
+  (0.0ms) rollback transaction
335
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
336
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
337
+  (0.0ms) select sqlite_version(*)
338
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
339
+  (0.1ms) SELECT version FROM "schema_migrations"
340
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
341
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
342
+  (0.1ms) begin transaction
343
+ ----------------------------------------------------------------------
344
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
345
+ ----------------------------------------------------------------------
346
+  (0.1ms) rollback transaction
347
+  (0.1ms) begin transaction
348
+ -------------------------------
349
+ ExpressSettingsTest: test_truth
350
+ -------------------------------
351
+  (0.1ms) rollback transaction
352
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
353
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
354
+  (0.0ms) select sqlite_version(*)
355
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
356
+  (0.1ms) SELECT version FROM "schema_migrations"
357
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
358
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
359
+  (0.1ms) begin transaction
360
+ -------------------------------
361
+ ExpressSettingsTest: test_truth
362
+ -------------------------------
363
+  (0.0ms) rollback transaction
364
+  (0.0ms) begin transaction
365
+ ----------------------------------------------------------------------
366
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
367
+ ----------------------------------------------------------------------
368
+  (0.1ms) rollback transaction
369
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
370
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
371
+  (0.1ms) select sqlite_version(*)
372
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
373
+  (0.1ms) SELECT version FROM "schema_migrations"
374
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
375
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
376
+  (0.1ms) begin transaction
377
+ -------------------------------
378
+ ExpressSettingsTest: test_truth
379
+ -------------------------------
380
+  (0.0ms) rollback transaction
381
+  (0.1ms) begin transaction
382
+ ----------------------------------------------------------------------
383
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
384
+ ----------------------------------------------------------------------
385
+  (0.1ms) rollback transaction
386
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
387
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
388
+  (0.0ms) select sqlite_version(*)
389
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
390
+  (0.1ms) SELECT version FROM "schema_migrations"
391
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
392
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
393
+  (0.1ms) begin transaction
394
+ ----------------------------------------------------------------------
395
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
396
+ ----------------------------------------------------------------------
397
+  (0.1ms) rollback transaction
398
+  (0.1ms) begin transaction
399
+ -------------------------------
400
+ ExpressSettingsTest: test_truth
401
+ -------------------------------
402
+  (0.0ms) rollback transaction
403
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
404
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
405
+  (0.0ms) select sqlite_version(*)
406
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
407
+  (0.1ms) SELECT version FROM "schema_migrations"
408
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
409
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
410
+  (0.1ms) begin transaction
411
+ -------------------------------
412
+ ExpressSettingsTest: test_truth
413
+ -------------------------------
414
+  (0.0ms) rollback transaction
415
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
416
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
417
+  (0.1ms) select sqlite_version(*)
418
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
419
+  (0.1ms) SELECT version FROM "schema_migrations"
420
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
421
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
422
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
423
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
424
+  (0.1ms) select sqlite_version(*)
425
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
426
+  (0.1ms) SELECT version FROM "schema_migrations"
427
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
428
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
429
+  (0.1ms) begin transaction
430
+ -------------------------------
431
+ ExpressSettingsTest: test_truth
432
+ -------------------------------
433
+  (0.1ms) rollback transaction
434
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
435
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
436
+  (0.1ms) select sqlite_version(*)
437
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
438
+  (0.1ms) SELECT version FROM "schema_migrations"
439
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
440
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
441
+  (0.1ms) begin transaction
442
+ ----------------------------------------------------------------------
443
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
444
+ ----------------------------------------------------------------------
445
+  (0.1ms) rollback transaction
446
+  (0.0ms) begin transaction
447
+ -------------------------------
448
+ ExpressSettingsTest: test_truth
449
+ -------------------------------
450
+  (0.0ms) rollback transaction
451
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
452
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
453
+  (0.1ms) select sqlite_version(*)
454
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
455
+  (0.1ms) SELECT version FROM "schema_migrations"
456
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
457
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
458
+  (0.1ms) begin transaction
459
+ ----------------------------------------------------------------------
460
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
461
+ ----------------------------------------------------------------------
462
+  (0.1ms) rollback transaction
463
+  (0.1ms) begin transaction
464
+ -------------------------------
465
+ ExpressSettingsTest: test_truth
466
+ -------------------------------
467
+  (0.1ms) rollback transaction
468
+ ActiveRecord::SchemaMigration Load (0.9ms) SELECT "schema_migrations".* FROM "schema_migrations"
469
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
470
+  (0.1ms) select sqlite_version(*)
471
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
472
+  (0.1ms) SELECT version FROM "schema_migrations"
473
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
474
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
475
+  (0.1ms) begin transaction
476
+ -------------------------------
477
+ ExpressSettingsTest: test_truth
478
+ -------------------------------
479
+  (0.0ms) rollback transaction
480
+  (0.0ms) begin transaction
481
+ ----------------------------------------------------------------------
482
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
483
+ ----------------------------------------------------------------------
484
+  (0.1ms) rollback transaction
485
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
486
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
487
+  (0.0ms) select sqlite_version(*)
488
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
489
+  (0.1ms) SELECT version FROM "schema_migrations"
490
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
491
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
492
+  (0.1ms) begin transaction
493
+ -------------------------------
494
+ ExpressSettingsTest: test_truth
495
+ -------------------------------
496
+  (0.0ms) rollback transaction
497
+  (0.0ms) begin transaction
498
+ ----------------------------------------------------------------------
499
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
500
+ ----------------------------------------------------------------------
501
+  (0.1ms) rollback transaction
502
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
503
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
504
+  (0.1ms) select sqlite_version(*)
505
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
506
+  (0.1ms) SELECT version FROM "schema_migrations"
507
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
508
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
509
+  (0.1ms) begin transaction
510
+ ----------------------------------------------------------------------
511
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
512
+ ----------------------------------------------------------------------
513
+  (0.1ms) rollback transaction
514
+  (0.0ms) begin transaction
515
+ -------------------------------
516
+ ExpressSettingsTest: test_truth
517
+ -------------------------------
518
+  (0.0ms) rollback transaction
519
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
520
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
521
+  (0.0ms) select sqlite_version(*)
522
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
523
+  (0.1ms) SELECT version FROM "schema_migrations"
524
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
525
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
526
+  (0.1ms) begin transaction
527
+ ----------------------------------------------------------------------
528
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
529
+ ----------------------------------------------------------------------
530
+  (0.1ms) rollback transaction
531
+  (0.1ms) begin transaction
532
+ -------------------------------
533
+ ExpressSettingsTest: test_truth
534
+ -------------------------------
535
+  (0.0ms) rollback transaction
536
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
537
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
538
+  (0.0ms) select sqlite_version(*)
539
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
540
+  (0.1ms) SELECT version FROM "schema_migrations"
541
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
542
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
543
+  (0.1ms) begin transaction
544
+ ----------------------------------------------------------------------
545
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
546
+ ----------------------------------------------------------------------
547
+  (0.1ms) rollback transaction
548
+  (0.1ms) begin transaction
549
+ -------------------------------
550
+ ExpressSettingsTest: test_truth
551
+ -------------------------------
552
+  (0.0ms) rollback transaction
553
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
554
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
555
+  (0.0ms) select sqlite_version(*)
556
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
557
+  (0.1ms) SELECT version FROM "schema_migrations"
558
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
559
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
560
+  (0.1ms) begin transaction
561
+ ----------------------------------------------------------------------
562
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
563
+ ----------------------------------------------------------------------
564
+  (0.1ms) rollback transaction
565
+  (0.0ms) begin transaction
566
+ -------------------------------
567
+ ExpressSettingsTest: test_truth
568
+ -------------------------------
569
+  (0.1ms) rollback transaction
570
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
571
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
572
+  (0.0ms) select sqlite_version(*)
573
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
574
+  (0.1ms) SELECT version FROM "schema_migrations"
575
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
576
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
577
+  (0.1ms) begin transaction
578
+ -------------------------------
579
+ ExpressSettingsTest: test_truth
580
+ -------------------------------
581
+  (0.0ms) rollback transaction
582
+  (0.0ms) begin transaction
583
+ ----------------------------------------------------------------------
584
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
585
+ ----------------------------------------------------------------------
586
+  (0.1ms) rollback transaction
587
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
588
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
589
+  (0.1ms) select sqlite_version(*)
590
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
591
+  (0.1ms) SELECT version FROM "schema_migrations"
592
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
593
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
594
+  (0.1ms) begin transaction
595
+ ----------------------------------------------------------------------
596
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
597
+ ----------------------------------------------------------------------
598
+  (0.1ms) rollback transaction
599
+  (0.0ms) begin transaction
600
+ -------------------------------
601
+ ExpressSettingsTest: test_truth
602
+ -------------------------------
603
+  (0.0ms) rollback transaction
604
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
605
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
606
+  (0.1ms) select sqlite_version(*)
607
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
608
+  (0.1ms) SELECT version FROM "schema_migrations"
609
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
610
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
611
+  (0.1ms) begin transaction
612
+ ----------------------------------------------------------------------
613
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
614
+ ----------------------------------------------------------------------
615
+  (0.1ms) rollback transaction
616
+  (0.1ms) begin transaction
617
+ -------------------------------
618
+ ExpressSettingsTest: test_truth
619
+ -------------------------------
620
+  (0.0ms) rollback transaction
621
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
622
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
623
+  (0.0ms) select sqlite_version(*)
624
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
625
+  (0.1ms) SELECT version FROM "schema_migrations"
626
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
627
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
628
+  (0.1ms) begin transaction
629
+ ----------------------------------------------------------------------
630
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
631
+ ----------------------------------------------------------------------
632
+  (0.1ms) rollback transaction
633
+  (0.1ms) begin transaction
634
+ -------------------------------
635
+ ExpressSettingsTest: test_truth
636
+ -------------------------------
637
+  (0.0ms) rollback transaction
638
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
639
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
640
+  (0.1ms) select sqlite_version(*)
641
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
642
+  (0.1ms) SELECT version FROM "schema_migrations"
643
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
644
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
645
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
646
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
647
+  (0.1ms) select sqlite_version(*)
648
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
649
+  (0.1ms) SELECT version FROM "schema_migrations"
650
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
651
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
652
+  (0.1ms) begin transaction
653
+ -------------------------------
654
+ ExpressSettingsTest: test_truth
655
+ -------------------------------
656
+  (0.0ms) rollback transaction
657
+  (0.0ms) begin transaction
658
+ ----------------------------------------------------------------------
659
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
660
+ ----------------------------------------------------------------------
661
+  (0.1ms) rollback transaction
662
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
663
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
664
+  (0.0ms) select sqlite_version(*)
665
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
666
+  (0.1ms) SELECT version FROM "schema_migrations"
667
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
668
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
669
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
670
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
671
+  (0.0ms) select sqlite_version(*)
672
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
673
+  (0.1ms) SELECT version FROM "schema_migrations"
674
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
675
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
676
+  (0.1ms) begin transaction
677
+ -------------------------------
678
+ ExpressSettingsTest: test_truth
679
+ -------------------------------
680
+  (0.0ms) rollback transaction
681
+  (0.0ms) begin transaction
682
+ ----------------------------------------------------------------------
683
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
684
+ ----------------------------------------------------------------------
685
+  (0.1ms) rollback transaction
686
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
687
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
688
+  (0.0ms) select sqlite_version(*)
689
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
690
+  (0.1ms) SELECT version FROM "schema_migrations"
691
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
692
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
693
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
694
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
695
+  (0.1ms) select sqlite_version(*)
696
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
697
+  (0.1ms) SELECT version FROM "schema_migrations"
698
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
699
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
700
+  (0.1ms) begin transaction
701
+ -------------------------------
702
+ ExpressSettingsTest: test_truth
703
+ -------------------------------
704
+  (0.0ms) rollback transaction
705
+  (0.0ms) begin transaction
706
+ ----------------------------------------------------------------------
707
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
708
+ ----------------------------------------------------------------------
709
+  (0.0ms) rollback transaction
710
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
711
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
712
+  (0.0ms) select sqlite_version(*)
713
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
714
+  (0.1ms) SELECT version FROM "schema_migrations"
715
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
716
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
717
+  (0.1ms) begin transaction
718
+ ----------------------------------------------------------------------
719
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
720
+ ----------------------------------------------------------------------
721
+  (0.1ms) rollback transaction
722
+  (0.0ms) begin transaction
723
+ -------------------------------
724
+ ExpressSettingsTest: test_truth
725
+ -------------------------------
726
+  (0.0ms) rollback transaction
727
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
728
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
729
+  (0.1ms) select sqlite_version(*)
730
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
731
+  (0.1ms) SELECT version FROM "schema_migrations"
732
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
733
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
734
+  (0.1ms) begin transaction
735
+ ----------------------------------------------------------------------
736
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
737
+ ----------------------------------------------------------------------
738
+  (0.0ms) rollback transaction
739
+  (0.0ms) begin transaction
740
+ -------------------------------
741
+ ExpressSettingsTest: test_truth
742
+ -------------------------------
743
+  (0.0ms) rollback transaction
744
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
745
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
746
+  (0.1ms) select sqlite_version(*)
747
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
748
+  (0.1ms) SELECT version FROM "schema_migrations"
749
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
750
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
751
+  (0.1ms) begin transaction
752
+ ----------------------------------------------------------------------
753
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
754
+ ----------------------------------------------------------------------
755
+  (0.1ms) rollback transaction
756
+  (0.0ms) begin transaction
757
+ -------------------------------
758
+ ExpressSettingsTest: test_truth
759
+ -------------------------------
760
+  (0.0ms) rollback transaction
761
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
762
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
763
+  (0.1ms) select sqlite_version(*)
764
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
765
+  (0.1ms) SELECT version FROM "schema_migrations"
766
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
767
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
768
+  (0.1ms) begin transaction
769
+ ----------------------------------------------------------------------
770
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
771
+ ----------------------------------------------------------------------
772
+  (0.0ms) rollback transaction
773
+  (0.0ms) begin transaction
774
+ -------------------------------
775
+ ExpressSettingsTest: test_truth
776
+ -------------------------------
777
+  (0.0ms) rollback transaction
778
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
779
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
780
+  (0.0ms) select sqlite_version(*)
781
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
782
+  (0.1ms) SELECT version FROM "schema_migrations"
783
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
784
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
785
+  (0.2ms) begin transaction
786
+ -------------------------------
787
+ ExpressSettingsTest: test_truth
788
+ -------------------------------
789
+  (0.0ms) rollback transaction
790
+  (0.0ms) begin transaction
791
+ ----------------------------------------------------------------------
792
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
793
+ ----------------------------------------------------------------------
794
+  (0.1ms) rollback transaction
795
+  (0.0ms) begin transaction
796
+ ------------------------------------------------------------------------------------
797
+ ExpressSettings::CreateSettingGeneratorTest: test_generator_creates_a_data_migration
798
+ ------------------------------------------------------------------------------------
799
+  (0.0ms) rollback transaction
800
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
801
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
802
+  (0.0ms) select sqlite_version(*)
803
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
804
+  (0.1ms) SELECT version FROM "schema_migrations"
805
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
806
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
807
+  (0.1ms) begin transaction
808
+ ----------------------------------------------------------------------
809
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
810
+ ----------------------------------------------------------------------
811
+  (0.1ms) rollback transaction
812
+  (0.1ms) begin transaction
813
+ -------------------------------
814
+ ExpressSettingsTest: test_truth
815
+ -------------------------------
816
+  (0.0ms) rollback transaction
817
+  (0.0ms) begin transaction
818
+ ------------------------------------------------------------------------------------
819
+ ExpressSettings::CreateSettingGeneratorTest: test_generator_creates_a_data_migration
820
+ ------------------------------------------------------------------------------------
821
+  (0.0ms) rollback transaction
822
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
823
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
824
+  (0.1ms) select sqlite_version(*)
825
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
826
+  (0.1ms) SELECT version FROM "schema_migrations"
827
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
828
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
829
+  (0.1ms) begin transaction
830
+ ------------------------------------------------------------------------------------
831
+ ExpressSettings::CreateSettingGeneratorTest: test_generator_creates_a_data_migration
832
+ ------------------------------------------------------------------------------------
833
+  (0.0ms) rollback transaction
834
+  (0.0ms) begin transaction
835
+ -------------------------------
836
+ ExpressSettingsTest: test_truth
837
+ -------------------------------
838
+  (0.0ms) rollback transaction
839
+  (0.0ms) begin transaction
840
+ ----------------------------------------------------------------------
841
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
842
+ ----------------------------------------------------------------------
843
+  (0.1ms) rollback transaction
844
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
845
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
846
+  (0.0ms) select sqlite_version(*)
847
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
848
+  (0.1ms) SELECT version FROM "schema_migrations"
849
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
850
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
851
+  (0.1ms) begin transaction
852
+ ------------------------------------------------------------------------------------
853
+ ExpressSettings::CreateSettingGeneratorTest: test_generator_creates_a_data_migration
854
+ ------------------------------------------------------------------------------------
855
+  (0.0ms) rollback transaction
856
+  (0.0ms) begin transaction
857
+ ----------------------------------------------------------------------
858
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
859
+ ----------------------------------------------------------------------
860
+  (0.0ms) rollback transaction
861
+  (0.0ms) begin transaction
862
+ -------------------------------
863
+ ExpressSettingsTest: test_truth
864
+ -------------------------------
865
+  (0.0ms) rollback transaction
866
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
867
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
868
+  (0.0ms) select sqlite_version(*)
869
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
870
+  (0.1ms) SELECT version FROM "schema_migrations"
871
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
872
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
873
+  (0.1ms) begin transaction
874
+ -------------------------------
875
+ ExpressSettingsTest: test_truth
876
+ -------------------------------
877
+  (0.0ms) rollback transaction
878
+  (0.0ms) begin transaction
879
+ ----------------------------------------------------------------------
880
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_file
881
+ ----------------------------------------------------------------------
882
+  (0.0ms) rollback transaction
883
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
884
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
885
+  (0.0ms) select sqlite_version(*)
886
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
887
+  (0.1ms) SELECT version FROM "schema_migrations"
888
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
889
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
890
+  (0.1ms) begin transaction
891
+ -------------------------------
892
+ ExpressSettingsTest: test_truth
893
+ -------------------------------
894
+  (0.0ms) rollback transaction
895
+  (0.0ms) begin transaction
896
+ ---------------------------------------------------------------------------------------------------------------------
897
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
898
+ ---------------------------------------------------------------------------------------------------------------------
899
+  (0.1ms) rollback transaction
900
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
901
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
902
+  (0.1ms) select sqlite_version(*)
903
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
904
+  (0.1ms) SELECT version FROM "schema_migrations"
905
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
906
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
907
+  (0.1ms) begin transaction
908
+ ---------------------------------------------------------------------------------------------------------------------
909
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
910
+ ---------------------------------------------------------------------------------------------------------------------
911
+  (0.1ms) rollback transaction
912
+  (0.0ms) begin transaction
913
+ -------------------------------
914
+ ExpressSettingsTest: test_truth
915
+ -------------------------------
916
+  (0.0ms) rollback transaction
917
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
918
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
919
+  (0.1ms) select sqlite_version(*)
920
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
921
+  (0.1ms) SELECT version FROM "schema_migrations"
922
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
923
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
924
+  (0.1ms) begin transaction
925
+ ---------------------------------------------------------------------------------------------------------------------
926
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
927
+ ---------------------------------------------------------------------------------------------------------------------
928
+  (0.1ms) rollback transaction
929
+  (0.0ms) begin transaction
930
+ -------------------------------
931
+ ExpressSettingsTest: test_truth
932
+ -------------------------------
933
+  (0.0ms) rollback transaction
934
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
935
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
936
+  (0.0ms) select sqlite_version(*)
937
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
938
+  (0.1ms) SELECT version FROM "schema_migrations"
939
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
940
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
941
+  (0.1ms) begin transaction
942
+ -------------------------------
943
+ ExpressSettingsTest: test_truth
944
+ -------------------------------
945
+  (0.0ms) rollback transaction
946
+  (0.0ms) begin transaction
947
+ ---------------------------------------------------------------------------------------------------------------------
948
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
949
+ ---------------------------------------------------------------------------------------------------------------------
950
+  (0.1ms) rollback transaction
951
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
952
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
953
+  (0.0ms) select sqlite_version(*)
954
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
955
+  (0.1ms) SELECT version FROM "schema_migrations"
956
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
957
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
958
+  (0.1ms) begin transaction
959
+ -------------------------------
960
+ ExpressSettingsTest: test_truth
961
+ -------------------------------
962
+  (0.0ms) rollback transaction
963
+  (0.0ms) begin transaction
964
+ ---------------------------------------------------------------------------------------------------------------------
965
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
966
+ ---------------------------------------------------------------------------------------------------------------------
967
+  (0.0ms) rollback transaction
968
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
969
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
970
+  (0.0ms) select sqlite_version(*)
971
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
972
+  (0.1ms) SELECT version FROM "schema_migrations"
973
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
974
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
975
+  (0.1ms) begin transaction
976
+ -------------------------------
977
+ ExpressSettingsTest: test_truth
978
+ -------------------------------
979
+  (0.0ms) rollback transaction
980
+  (0.0ms) begin transaction
981
+ ---------------------------------------------------------------------------------------------------------------------
982
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
983
+ ---------------------------------------------------------------------------------------------------------------------
984
+  (0.1ms) rollback transaction
985
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
986
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
987
+  (0.0ms) select sqlite_version(*)
988
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
989
+  (0.1ms) SELECT version FROM "schema_migrations"
990
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
991
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
992
+  (0.1ms) begin transaction
993
+ ---------------------------------------------------------------------------------------------------------------------
994
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
995
+ ---------------------------------------------------------------------------------------------------------------------
996
+  (0.1ms) rollback transaction
997
+  (0.0ms) begin transaction
998
+ -------------------------------
999
+ ExpressSettingsTest: test_truth
1000
+ -------------------------------
1001
+  (0.0ms) rollback transaction
1002
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1003
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1004
+  (0.1ms) select sqlite_version(*)
1005
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1006
+  (0.1ms) SELECT version FROM "schema_migrations"
1007
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1008
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1009
+  (0.1ms) begin transaction
1010
+ -------------------------------
1011
+ ExpressSettingsTest: test_truth
1012
+ -------------------------------
1013
+  (0.0ms) rollback transaction
1014
+  (0.0ms) begin transaction
1015
+ ---------------------------------------------------------------------------------------------------------------------
1016
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1017
+ ---------------------------------------------------------------------------------------------------------------------
1018
+  (0.1ms) rollback transaction
1019
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1020
+  (111.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1021
+  (0.1ms) select sqlite_version(*)
1022
+  (2.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1023
+  (0.1ms) SELECT version FROM "schema_migrations"
1024
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1025
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1026
+  (0.1ms) begin transaction
1027
+ -------------------------------
1028
+ ExpressSettingsTest: test_truth
1029
+ -------------------------------
1030
+  (0.0ms) rollback transaction
1031
+  (0.0ms) begin transaction
1032
+ ---------------------------------------------------------------------------------------------------------------------
1033
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1034
+ ---------------------------------------------------------------------------------------------------------------------
1035
+  (0.1ms) rollback transaction
1036
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1037
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1038
+  (0.0ms) select sqlite_version(*)
1039
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1040
+  (0.1ms) SELECT version FROM "schema_migrations"
1041
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1042
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1043
+  (0.1ms) begin transaction
1044
+ -------------------------------
1045
+ ExpressSettingsTest: test_truth
1046
+ -------------------------------
1047
+  (0.0ms) rollback transaction
1048
+  (0.1ms) begin transaction
1049
+ ---------------------------------------------------------------------------------------------------------------------
1050
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1051
+ ---------------------------------------------------------------------------------------------------------------------
1052
+  (0.1ms) rollback transaction
1053
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1054
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1055
+  (0.0ms) select sqlite_version(*)
1056
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1057
+  (0.1ms) SELECT version FROM "schema_migrations"
1058
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1059
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1060
+  (0.1ms) begin transaction
1061
+ ---------------------------------------------------------------------------------------------------------------------
1062
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1063
+ ---------------------------------------------------------------------------------------------------------------------
1064
+  (0.1ms) rollback transaction
1065
+  (0.0ms) begin transaction
1066
+ -------------------------------
1067
+ ExpressSettingsTest: test_truth
1068
+ -------------------------------
1069
+  (0.0ms) rollback transaction
1070
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1071
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1072
+  (0.0ms) select sqlite_version(*)
1073
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1074
+  (0.1ms) SELECT version FROM "schema_migrations"
1075
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1076
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1077
+  (0.1ms) begin transaction
1078
+ -------------------------------
1079
+ ExpressSettingsTest: test_truth
1080
+ -------------------------------
1081
+  (0.0ms) rollback transaction
1082
+  (0.0ms) begin transaction
1083
+ ---------------------------------------------------------------------------------------------------------------------
1084
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1085
+ ---------------------------------------------------------------------------------------------------------------------
1086
+  (0.1ms) rollback transaction
1087
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
1088
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1089
+  (0.0ms) select sqlite_version(*)
1090
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1091
+  (0.1ms) SELECT version FROM "schema_migrations"
1092
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1093
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1094
+  (0.1ms) begin transaction
1095
+ -------------------------------
1096
+ ExpressSettingsTest: test_truth
1097
+ -------------------------------
1098
+  (0.0ms) rollback transaction
1099
+  (0.0ms) begin transaction
1100
+ ---------------------------------------------------------------------------------------------------------------------
1101
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1102
+ ---------------------------------------------------------------------------------------------------------------------
1103
+  (0.1ms) rollback transaction
1104
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1105
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1106
+  (0.0ms) select sqlite_version(*)
1107
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1108
+  (0.1ms) SELECT version FROM "schema_migrations"
1109
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1110
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1111
+  (0.1ms) begin transaction
1112
+ -------------------------------
1113
+ ExpressSettingsTest: test_truth
1114
+ -------------------------------
1115
+  (0.0ms) rollback transaction
1116
+  (0.0ms) begin transaction
1117
+ ---------------------------------------------------------------------------------------------------------------------
1118
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1119
+ ---------------------------------------------------------------------------------------------------------------------
1120
+  (0.0ms) rollback transaction
1121
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1122
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1123
+  (0.3ms) select sqlite_version(*)
1124
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1125
+  (0.1ms) SELECT version FROM "schema_migrations"
1126
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1127
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1128
+  (0.1ms) begin transaction
1129
+ -------------------------------
1130
+ ExpressSettingsTest: test_truth
1131
+ -------------------------------
1132
+  (0.0ms) rollback transaction
1133
+  (0.0ms) begin transaction
1134
+ ---------------------------------------------------------------------------------------------------------------------
1135
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1136
+ ---------------------------------------------------------------------------------------------------------------------
1137
+  (0.1ms) rollback transaction
1138
+  (0.0ms) begin transaction
1139
+ ----------------------------------------------------------------------------------------
1140
+ ExpressSettings::CreateSettingGeneratorTest: test_insert_default_settings_into_the_model
1141
+ ----------------------------------------------------------------------------------------
1142
+  (0.1ms) rollback transaction
1143
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1144
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1145
+  (0.1ms) select sqlite_version(*)
1146
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1147
+  (0.1ms) SELECT version FROM "schema_migrations"
1148
+  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1149
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1150
+  (0.1ms) begin transaction
1151
+ ---------------------------------------------------------------------------------------------------------------------
1152
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1153
+ ---------------------------------------------------------------------------------------------------------------------
1154
+  (0.1ms) rollback transaction
1155
+  (0.0ms) begin transaction
1156
+ -------------------------------
1157
+ ExpressSettingsTest: test_truth
1158
+ -------------------------------
1159
+  (0.0ms) rollback transaction
1160
+  (0.0ms) begin transaction
1161
+ ----------------------------------------------------------------------------------------
1162
+ ExpressSettings::CreateSettingGeneratorTest: test_insert_default_settings_into_the_model
1163
+ ----------------------------------------------------------------------------------------
1164
+  (0.0ms) rollback transaction
1165
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1166
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1167
+  (0.0ms) select sqlite_version(*)
1168
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1169
+  (0.1ms) SELECT version FROM "schema_migrations"
1170
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1171
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1172
+  (0.1ms) begin transaction
1173
+ -------------------------------
1174
+ ExpressSettingsTest: test_truth
1175
+ -------------------------------
1176
+  (0.0ms) rollback transaction
1177
+  (0.0ms) begin transaction
1178
+ ---------------------------------------------------------------------------------------------------------------------
1179
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1180
+ ---------------------------------------------------------------------------------------------------------------------
1181
+  (0.1ms) rollback transaction
1182
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
1183
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1184
+  (0.1ms) select sqlite_version(*)
1185
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1186
+  (0.1ms) SELECT version FROM "schema_migrations"
1187
+  (1.3ms) 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
+ ExpressSettingsTest: test_truth
1192
+ -------------------------------
1193
+  (0.0ms) rollback transaction
1194
+  (0.0ms) begin transaction
1195
+ ---------------------------------------------------------------------------------------------------------------------
1196
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1197
+ ---------------------------------------------------------------------------------------------------------------------
1198
+  (0.1ms) rollback transaction
1199
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1200
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1201
+  (0.0ms) select sqlite_version(*)
1202
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1203
+  (0.1ms) SELECT version FROM "schema_migrations"
1204
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1205
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1206
+  (0.1ms) begin transaction
1207
+ -------------------------------
1208
+ ExpressSettingsTest: test_truth
1209
+ -------------------------------
1210
+  (0.1ms) rollback transaction
1211
+  (0.0ms) begin transaction
1212
+ ---------------------------------------------------------------------------------------------------------------------
1213
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1214
+ ---------------------------------------------------------------------------------------------------------------------
1215
+  (0.1ms) rollback transaction
1216
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1217
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1218
+  (0.1ms) select sqlite_version(*)
1219
+  (2.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1220
+  (0.1ms) SELECT version FROM "schema_migrations"
1221
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1222
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1223
+  (0.1ms) begin transaction
1224
+ ---------------------------------------------------------------------------------------------------------------------
1225
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1226
+ ---------------------------------------------------------------------------------------------------------------------
1227
+  (0.1ms) rollback transaction
1228
+  (0.0ms) begin transaction
1229
+ -------------------------------
1230
+ ExpressSettingsTest: test_truth
1231
+ -------------------------------
1232
+  (0.0ms) rollback transaction
1233
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1234
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1235
+  (0.0ms) select sqlite_version(*)
1236
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1237
+  (0.1ms) SELECT version FROM "schema_migrations"
1238
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1239
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1240
+  (0.1ms) begin transaction
1241
+ ---------------------------------------------------------------------------------------------------------------------
1242
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1243
+ ---------------------------------------------------------------------------------------------------------------------
1244
+  (0.1ms) rollback transaction
1245
+  (0.0ms) begin transaction
1246
+ -------------------------------
1247
+ ExpressSettingsTest: test_truth
1248
+ -------------------------------
1249
+  (0.0ms) rollback transaction
1250
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1251
+  (33.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1252
+  (0.1ms) select sqlite_version(*)
1253
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1254
+  (0.1ms) SELECT version FROM "schema_migrations"
1255
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1256
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1257
+  (0.1ms) begin transaction
1258
+ -------------------------------
1259
+ ExpressSettingsTest: test_truth
1260
+ -------------------------------
1261
+  (0.0ms) rollback transaction
1262
+  (0.0ms) begin transaction
1263
+ ---------------------------------------------------------------------------------------------------------------------
1264
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1265
+ ---------------------------------------------------------------------------------------------------------------------
1266
+  (0.1ms) rollback transaction
1267
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1268
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1269
+  (0.0ms) select sqlite_version(*)
1270
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1271
+  (0.1ms) SELECT version FROM "schema_migrations"
1272
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1273
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1274
+  (0.1ms) begin transaction
1275
+ -------------------------------
1276
+ ExpressSettingsTest: test_truth
1277
+ -------------------------------
1278
+  (0.0ms) rollback transaction
1279
+  (0.1ms) begin transaction
1280
+ ---------------------------------------------------------------------------------------------------------------------
1281
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1282
+ ---------------------------------------------------------------------------------------------------------------------
1283
+  (0.1ms) rollback transaction
1284
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1285
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1286
+  (0.1ms) select sqlite_version(*)
1287
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1288
+  (0.1ms) SELECT version FROM "schema_migrations"
1289
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1290
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1291
+  (0.1ms) begin transaction
1292
+ ---------------------------------------------------------------------------------------------------------------------
1293
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1294
+ ---------------------------------------------------------------------------------------------------------------------
1295
+  (0.1ms) rollback transaction
1296
+  (0.1ms) begin transaction
1297
+ -------------------------------
1298
+ ExpressSettingsTest: test_truth
1299
+ -------------------------------
1300
+  (0.0ms) rollback transaction
1301
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1302
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1303
+  (0.0ms) select sqlite_version(*)
1304
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1305
+  (0.1ms) SELECT version FROM "schema_migrations"
1306
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1307
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1308
+  (0.1ms) begin transaction
1309
+ -------------------------------
1310
+ ExpressSettingsTest: test_truth
1311
+ -------------------------------
1312
+  (0.0ms) rollback transaction
1313
+  (0.0ms) begin transaction
1314
+ ---------------------------------------------------------------------------------------------------------------------
1315
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1316
+ ---------------------------------------------------------------------------------------------------------------------
1317
+  (0.1ms) rollback transaction
1318
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1319
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1320
+  (0.1ms) select sqlite_version(*)
1321
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1322
+  (0.1ms) SELECT version FROM "schema_migrations"
1323
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1324
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1325
+  (0.1ms) begin transaction
1326
+ -------------------------------
1327
+ ExpressSettingsTest: test_truth
1328
+ -------------------------------
1329
+  (0.0ms) rollback transaction
1330
+  (0.0ms) begin transaction
1331
+ ---------------------------------------------------------------------------------------------------------------------
1332
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1333
+ ---------------------------------------------------------------------------------------------------------------------
1334
+  (0.1ms) rollback transaction
1335
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1336
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1337
+  (0.0ms) select sqlite_version(*)
1338
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1339
+  (0.1ms) SELECT version FROM "schema_migrations"
1340
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1341
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1342
+  (0.1ms) begin transaction
1343
+ -------------------------------
1344
+ ExpressSettingsTest: test_truth
1345
+ -------------------------------
1346
+  (0.0ms) rollback transaction
1347
+  (0.0ms) begin transaction
1348
+ ---------------------------------------------------------------------------------------------------------------------
1349
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1350
+ ---------------------------------------------------------------------------------------------------------------------
1351
+  (0.1ms) rollback transaction
1352
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1353
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1354
+  (0.1ms) select sqlite_version(*)
1355
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1356
+  (0.1ms) SELECT version FROM "schema_migrations"
1357
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1358
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1359
+  (0.1ms) begin transaction
1360
+ ---------------------------------------------------------------------------------------------------------------------
1361
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1362
+ ---------------------------------------------------------------------------------------------------------------------
1363
+  (0.2ms) rollback transaction
1364
+  (0.0ms) begin transaction
1365
+ -------------------------------
1366
+ ExpressSettingsTest: test_truth
1367
+ -------------------------------
1368
+  (0.0ms) rollback transaction
1369
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1370
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1371
+  (0.0ms) select sqlite_version(*)
1372
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1373
+  (0.1ms) SELECT version FROM "schema_migrations"
1374
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1375
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1376
+  (0.1ms) begin transaction
1377
+ ---------------------------------------------------------------------------------------------------------------------
1378
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1379
+ ---------------------------------------------------------------------------------------------------------------------
1380
+  (0.1ms) rollback transaction
1381
+  (0.0ms) begin transaction
1382
+ -------------------------------
1383
+ ExpressSettingsTest: test_truth
1384
+ -------------------------------
1385
+  (0.0ms) rollback transaction
1386
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1387
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1388
+  (0.1ms) select sqlite_version(*)
1389
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1390
+  (0.1ms) SELECT version FROM "schema_migrations"
1391
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1392
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1393
+  (0.1ms) begin transaction
1394
+ -------------------------------
1395
+ ExpressSettingsTest: test_truth
1396
+ -------------------------------
1397
+  (0.0ms) rollback transaction
1398
+  (0.0ms) begin transaction
1399
+ ---------------------------------------------------------------------------------------------------------------------
1400
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1401
+ ---------------------------------------------------------------------------------------------------------------------
1402
+  (0.1ms) rollback transaction
1403
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1404
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1405
+  (0.1ms) select sqlite_version(*)
1406
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1407
+  (0.1ms) SELECT version FROM "schema_migrations"
1408
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1409
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1410
+  (0.1ms) begin transaction
1411
+ -------------------------------
1412
+ ExpressSettingsTest: test_truth
1413
+ -------------------------------
1414
+  (0.0ms) rollback transaction
1415
+  (0.1ms) begin transaction
1416
+ ---------------------------------------------------------------------------------------------------------------------
1417
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1418
+ ---------------------------------------------------------------------------------------------------------------------
1419
+  (0.2ms) rollback transaction
1420
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1421
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1422
+  (0.1ms) select sqlite_version(*)
1423
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1424
+  (0.1ms) SELECT version FROM "schema_migrations"
1425
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1426
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1427
+  (0.1ms) begin transaction
1428
+ ---------------------------------------------------------------------------------------------------------------------
1429
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1430
+ ---------------------------------------------------------------------------------------------------------------------
1431
+  (0.1ms) rollback transaction
1432
+  (0.1ms) begin transaction
1433
+ -------------------------------
1434
+ ExpressSettingsTest: test_truth
1435
+ -------------------------------
1436
+  (0.0ms) rollback transaction
1437
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1438
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1439
+  (0.0ms) select sqlite_version(*)
1440
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1441
+  (0.1ms) SELECT version FROM "schema_migrations"
1442
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1443
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1444
+  (0.1ms) begin transaction
1445
+ ---------------------------------------------------------------------------------------------------------------------
1446
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1447
+ ---------------------------------------------------------------------------------------------------------------------
1448
+  (0.2ms) rollback transaction
1449
+  (0.0ms) begin transaction
1450
+ -------------------------------
1451
+ ExpressSettingsTest: test_truth
1452
+ -------------------------------
1453
+  (0.0ms) rollback transaction
1454
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1455
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1456
+  (0.0ms) select sqlite_version(*)
1457
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1458
+  (0.1ms) SELECT version FROM "schema_migrations"
1459
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1460
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1461
+  (0.1ms) begin transaction
1462
+ ---------------------------------------------------------------------------------------------------------------------
1463
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1464
+ ---------------------------------------------------------------------------------------------------------------------
1465
+  (0.1ms) rollback transaction
1466
+  (0.0ms) begin transaction
1467
+ -------------------------------
1468
+ ExpressSettingsTest: test_truth
1469
+ -------------------------------
1470
+  (0.0ms) rollback transaction
1471
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1472
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1473
+  (0.1ms) select sqlite_version(*)
1474
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1475
+  (0.1ms) SELECT version FROM "schema_migrations"
1476
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1477
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1478
+  (0.1ms) begin transaction
1479
+ -------------------------------
1480
+ ExpressSettingsTest: test_truth
1481
+ -------------------------------
1482
+  (0.0ms) rollback transaction
1483
+  (0.0ms) begin transaction
1484
+ ---------------------------------------------------------------------------------------------------------------------
1485
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1486
+ ---------------------------------------------------------------------------------------------------------------------
1487
+  (0.1ms) rollback transaction
1488
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1489
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1490
+  (0.1ms) select sqlite_version(*)
1491
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1492
+  (0.1ms) SELECT version FROM "schema_migrations"
1493
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1494
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1495
+  (0.1ms) begin transaction
1496
+ ---------------------------------------------------------------------------------------------------------------------
1497
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1498
+ ---------------------------------------------------------------------------------------------------------------------
1499
+  (0.1ms) rollback transaction
1500
+  (0.1ms) begin transaction
1501
+ -------------------------------
1502
+ ExpressSettingsTest: test_truth
1503
+ -------------------------------
1504
+  (0.0ms) rollback transaction
1505
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1506
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1507
+  (0.1ms) select sqlite_version(*)
1508
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1509
+  (0.1ms) SELECT version FROM "schema_migrations"
1510
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1511
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1512
+  (0.1ms) begin transaction
1513
+ ---------------------------------------------------------------------------------------------------------------------
1514
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1515
+ ---------------------------------------------------------------------------------------------------------------------
1516
+  (0.2ms) rollback transaction
1517
+  (0.0ms) begin transaction
1518
+ -------------------------------
1519
+ ExpressSettingsTest: test_truth
1520
+ -------------------------------
1521
+  (0.0ms) rollback transaction
1522
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1523
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1524
+  (0.1ms) select sqlite_version(*)
1525
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1526
+  (0.1ms) SELECT version FROM "schema_migrations"
1527
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1528
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1529
+  (0.1ms) begin transaction
1530
+ ---------------------------------------------------------------------------------------------------------------------
1531
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1532
+ ---------------------------------------------------------------------------------------------------------------------
1533
+  (0.2ms) rollback transaction
1534
+  (0.0ms) begin transaction
1535
+ -------------------------------
1536
+ ExpressSettingsTest: test_truth
1537
+ -------------------------------
1538
+  (0.0ms) rollback transaction
1539
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1540
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1541
+  (0.1ms) select sqlite_version(*)
1542
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1543
+  (0.1ms) SELECT version FROM "schema_migrations"
1544
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1545
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1546
+  (0.1ms) begin transaction
1547
+ -------------------------------
1548
+ ExpressSettingsTest: test_truth
1549
+ -------------------------------
1550
+  (0.0ms) rollback transaction
1551
+  (0.0ms) begin transaction
1552
+ ---------------------------------------------------------------------------------------------------------------------
1553
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1554
+ ---------------------------------------------------------------------------------------------------------------------
1555
+  (0.1ms) rollback transaction
1556
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1557
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1558
+  (0.1ms) select sqlite_version(*)
1559
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1560
+  (0.1ms) SELECT version FROM "schema_migrations"
1561
+  (1.4ms) 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
+ ExpressSettingsTest: test_truth
1566
+ -------------------------------
1567
+  (0.0ms) rollback transaction
1568
+  (0.0ms) begin transaction
1569
+ ---------------------------------------------------------------------------------------------------------------------
1570
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1571
+ ---------------------------------------------------------------------------------------------------------------------
1572
+  (0.1ms) rollback transaction
1573
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1574
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1575
+  (0.0ms) select sqlite_version(*)
1576
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1577
+  (0.1ms) SELECT version FROM "schema_migrations"
1578
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1579
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1580
+  (0.1ms) begin transaction
1581
+ ---------------------------------------------------------------------------------------------------------------------
1582
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1583
+ ---------------------------------------------------------------------------------------------------------------------
1584
+  (0.1ms) rollback transaction
1585
+  (0.1ms) begin transaction
1586
+ -------------------------------
1587
+ ExpressSettingsTest: test_truth
1588
+ -------------------------------
1589
+  (0.1ms) rollback transaction
1590
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1591
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1592
+  (0.1ms) select sqlite_version(*)
1593
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1594
+  (0.1ms) SELECT version FROM "schema_migrations"
1595
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1596
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1597
+  (0.1ms) begin transaction
1598
+ ---------------------------------------------------------------------------------------------------------------------
1599
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1600
+ ---------------------------------------------------------------------------------------------------------------------
1601
+  (0.1ms) rollback transaction
1602
+  (0.0ms) begin transaction
1603
+ -------------------------------
1604
+ ExpressSettingsTest: test_truth
1605
+ -------------------------------
1606
+  (0.0ms) rollback transaction
1607
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1608
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1609
+  (0.0ms) select sqlite_version(*)
1610
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1611
+  (0.1ms) SELECT version FROM "schema_migrations"
1612
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1613
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1614
+  (0.1ms) begin transaction
1615
+ -------------------------------
1616
+ ExpressSettingsTest: test_truth
1617
+ -------------------------------
1618
+  (0.0ms) rollback transaction
1619
+  (0.0ms) begin transaction
1620
+ ---------------------------------------------------------------------------------------------------------------------
1621
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1622
+ ---------------------------------------------------------------------------------------------------------------------
1623
+  (0.1ms) rollback transaction
1624
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
1625
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1626
+  (0.1ms) select sqlite_version(*)
1627
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1628
+  (0.1ms) SELECT version FROM "schema_migrations"
1629
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1630
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1631
+  (0.1ms) begin transaction
1632
+ -------------------------------
1633
+ ExpressSettingsTest: test_truth
1634
+ -------------------------------
1635
+  (0.0ms) rollback transaction
1636
+  (0.0ms) begin transaction
1637
+ ---------------------------------------------------------------------------------------------------------------------
1638
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1639
+ ---------------------------------------------------------------------------------------------------------------------
1640
+  (0.1ms) rollback transaction
1641
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1642
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1643
+  (0.1ms) select sqlite_version(*)
1644
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1645
+  (0.1ms) SELECT version FROM "schema_migrations"
1646
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1647
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1648
+  (0.1ms) begin transaction
1649
+ ---------------------------------------------------------------------------------------------------------------------
1650
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1651
+ ---------------------------------------------------------------------------------------------------------------------
1652
+  (0.1ms) rollback transaction
1653
+  (0.2ms) begin transaction
1654
+ -------------------------------
1655
+ ExpressSettingsTest: test_truth
1656
+ -------------------------------
1657
+  (0.0ms) rollback transaction
1658
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1659
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1660
+  (0.0ms) select sqlite_version(*)
1661
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1662
+  (0.1ms) SELECT version FROM "schema_migrations"
1663
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1664
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1665
+  (0.1ms) begin transaction
1666
+ -------------------------------
1667
+ ExpressSettingsTest: test_truth
1668
+ -------------------------------
1669
+  (0.0ms) rollback transaction
1670
+  (0.0ms) begin transaction
1671
+ ---------------------------------------------------------------------------------------------------------------------
1672
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1673
+ ---------------------------------------------------------------------------------------------------------------------
1674
+  (0.1ms) rollback transaction
1675
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1676
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1677
+  (0.1ms) select sqlite_version(*)
1678
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1679
+  (0.1ms) SELECT version FROM "schema_migrations"
1680
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1681
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1682
+  (0.1ms) begin transaction
1683
+ -------------------------------
1684
+ ExpressSettingsTest: test_truth
1685
+ -------------------------------
1686
+  (0.0ms) rollback transaction
1687
+  (0.0ms) begin transaction
1688
+ ---------------------------------------------------------------------------------------------------------------------
1689
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1690
+ ---------------------------------------------------------------------------------------------------------------------
1691
+  (0.2ms) rollback transaction
1692
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1693
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1694
+  (0.1ms) select sqlite_version(*)
1695
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1696
+  (0.1ms) SELECT version FROM "schema_migrations"
1697
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1698
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1699
+  (0.1ms) begin transaction
1700
+ ---------------------------------------------------------------------------------------------------------------------
1701
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1702
+ ---------------------------------------------------------------------------------------------------------------------
1703
+  (0.2ms) rollback transaction
1704
+  (0.0ms) begin transaction
1705
+ -------------------------------
1706
+ ExpressSettingsTest: test_truth
1707
+ -------------------------------
1708
+  (0.1ms) rollback transaction
1709
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1710
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1711
+  (0.0ms) select sqlite_version(*)
1712
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1713
+  (0.1ms) SELECT version FROM "schema_migrations"
1714
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1715
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1716
+  (0.1ms) begin transaction
1717
+ -------------------------------
1718
+ ExpressSettingsTest: test_truth
1719
+ -------------------------------
1720
+  (0.0ms) rollback transaction
1721
+  (0.0ms) begin transaction
1722
+ ---------------------------------------------------------------------------------------------------------------------
1723
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1724
+ ---------------------------------------------------------------------------------------------------------------------
1725
+  (0.2ms) rollback transaction
1726
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1727
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1728
+  (0.0ms) select sqlite_version(*)
1729
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1730
+  (0.1ms) SELECT version FROM "schema_migrations"
1731
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1732
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1733
+  (0.1ms) begin transaction
1734
+ -------------------------------
1735
+ ExpressSettingsTest: test_truth
1736
+ -------------------------------
1737
+  (0.0ms) rollback transaction
1738
+  (0.0ms) begin transaction
1739
+ ---------------------------------------------------------------------------------------------------------------------
1740
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1741
+ ---------------------------------------------------------------------------------------------------------------------
1742
+  (0.1ms) rollback transaction
1743
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1744
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1745
+  (0.1ms) select sqlite_version(*)
1746
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1747
+  (0.1ms) SELECT version FROM "schema_migrations"
1748
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1749
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1750
+  (0.1ms) begin transaction
1751
+ -------------------------------
1752
+ ExpressSettingsTest: test_truth
1753
+ -------------------------------
1754
+  (0.0ms) rollback transaction
1755
+  (0.0ms) begin transaction
1756
+ ---------------------------------------------------------------------------------------------------------------------
1757
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1758
+ ---------------------------------------------------------------------------------------------------------------------
1759
+  (0.1ms) rollback transaction
1760
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1761
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1762
+  (0.1ms) select sqlite_version(*)
1763
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1764
+  (0.1ms) SELECT version FROM "schema_migrations"
1765
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1766
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1767
+  (0.1ms) begin transaction
1768
+ ---------------------------------------------------------------------------------------------------------------------
1769
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1770
+ ---------------------------------------------------------------------------------------------------------------------
1771
+  (0.1ms) rollback transaction
1772
+  (0.0ms) begin transaction
1773
+ -------------------------------
1774
+ ExpressSettingsTest: test_truth
1775
+ -------------------------------
1776
+  (0.0ms) rollback transaction
1777
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1778
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1779
+  (0.0ms) select sqlite_version(*)
1780
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1781
+  (0.1ms) SELECT version FROM "schema_migrations"
1782
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1783
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1784
+  (0.1ms) begin transaction
1785
+ ---------------------------------------------------------------------------------------------------------------------
1786
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1787
+ ---------------------------------------------------------------------------------------------------------------------
1788
+  (0.1ms) rollback transaction
1789
+  (0.0ms) begin transaction
1790
+ -------------------------------
1791
+ ExpressSettingsTest: test_truth
1792
+ -------------------------------
1793
+  (0.0ms) rollback transaction
1794
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1795
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1796
+  (0.1ms) select sqlite_version(*)
1797
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1798
+  (0.1ms) SELECT version FROM "schema_migrations"
1799
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1800
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1801
+  (0.1ms) begin transaction
1802
+ ---------------------------------------------------------------------------------------------------------------------
1803
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1804
+ ---------------------------------------------------------------------------------------------------------------------
1805
+  (0.1ms) rollback transaction
1806
+  (0.1ms) begin transaction
1807
+ -------------------------------
1808
+ ExpressSettingsTest: test_truth
1809
+ -------------------------------
1810
+  (0.0ms) rollback transaction
1811
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
1812
+  (24.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1813
+  (0.1ms) select sqlite_version(*)
1814
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1815
+  (0.1ms) SELECT version FROM "schema_migrations"
1816
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1817
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1818
+  (0.1ms) begin transaction
1819
+ -------------------------------
1820
+ ExpressSettingsTest: test_truth
1821
+ -------------------------------
1822
+  (0.0ms) rollback transaction
1823
+  (0.0ms) begin transaction
1824
+ ---------------------------------------------------------------------------------------------------------------------
1825
+ ExpressSettings::InstallGeneratorTest: test_generates_a_migration_to_create_the_settings_table_and_the_settings_model
1826
+ ---------------------------------------------------------------------------------------------------------------------
1827
+  (0.1ms) rollback transaction