bootstrap4_form_builder 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +35 -0
  4. data/lib/bootstrap4_form_builder.rb +13 -0
  5. data/lib/bootstrap4_form_builder/form_builder.rb +254 -0
  6. data/lib/bootstrap4_form_builder/helper.rb +31 -0
  7. data/lib/bootstrap4_form_builder/version.rb +3 -0
  8. data/lib/tasks/bootstrap4_form_builder_tasks.rake +4 -0
  9. data/test/bootstrap4_form_builder_helper_test.rb +20 -0
  10. data/test/bootstrap4_form_builder_radio_check_test.rb +53 -0
  11. data/test/bootstrap4_form_builder_test.rb +130 -0
  12. data/test/bootstrap4_form_error_test.rb +47 -0
  13. data/test/dummy/README.rdoc +28 -0
  14. data/test/dummy/Rakefile +6 -0
  15. data/test/dummy/app/assets/javascripts/application.js +13 -0
  16. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  17. data/test/dummy/app/controllers/application_controller.rb +5 -0
  18. data/test/dummy/app/helpers/application_helper.rb +2 -0
  19. data/test/dummy/app/models/user.rb +4 -0
  20. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  21. data/test/dummy/bin/bundle +3 -0
  22. data/test/dummy/bin/rails +4 -0
  23. data/test/dummy/bin/rake +4 -0
  24. data/test/dummy/bin/setup +29 -0
  25. data/test/dummy/config.ru +4 -0
  26. data/test/dummy/config/application.rb +26 -0
  27. data/test/dummy/config/boot.rb +5 -0
  28. data/test/dummy/config/database.yml +25 -0
  29. data/test/dummy/config/environment.rb +5 -0
  30. data/test/dummy/config/environments/development.rb +41 -0
  31. data/test/dummy/config/environments/production.rb +79 -0
  32. data/test/dummy/config/environments/test.rb +42 -0
  33. data/test/dummy/config/initializers/assets.rb +11 -0
  34. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  35. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  36. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  37. data/test/dummy/config/initializers/inflections.rb +16 -0
  38. data/test/dummy/config/initializers/mime_types.rb +4 -0
  39. data/test/dummy/config/initializers/session_store.rb +3 -0
  40. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  41. data/test/dummy/config/locales/en.yml +23 -0
  42. data/test/dummy/config/routes.rb +3 -0
  43. data/test/dummy/config/secrets.yml +22 -0
  44. data/test/dummy/db/development.sqlite3 +0 -0
  45. data/test/dummy/db/migrate/20151028005827_create_users.rb +11 -0
  46. data/test/dummy/db/schema.rb +24 -0
  47. data/test/dummy/db/test.sqlite3 +0 -0
  48. data/test/dummy/log/development.log +10 -0
  49. data/test/dummy/log/test.log +1408 -0
  50. data/test/dummy/public/404.html +67 -0
  51. data/test/dummy/public/422.html +67 -0
  52. data/test/dummy/public/500.html +66 -0
  53. data/test/dummy/public/favicon.ico +0 -0
  54. data/test/dummy/test/fixtures/users.yml +11 -0
  55. data/test/dummy/test/models/user_test.rb +7 -0
  56. data/test/test_helper.rb +20 -0
  57. metadata +177 -0
@@ -0,0 +1,79 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # Code is not reloaded between requests.
5
+ config.cache_classes = true
6
+
7
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both threaded web servers
9
+ # and those relying on copy on write to perform better.
10
+ # Rake tasks automatically ignore this option for performance.
11
+ config.eager_load = true
12
+
13
+ # Full error reports are disabled and caching is turned on.
14
+ config.consider_all_requests_local = false
15
+ config.action_controller.perform_caching = true
16
+
17
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
+ # Add `rack-cache` to your Gemfile before enabling this.
19
+ # For large-scale production use, consider using a caching reverse proxy like
20
+ # NGINX, varnish or squid.
21
+ # config.action_dispatch.rack_cache = true
22
+
23
+ # Disable serving static files from the `/public` folder by default since
24
+ # Apache or NGINX already handles this.
25
+ config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
26
+
27
+ # Compress JavaScripts and CSS.
28
+ config.assets.js_compressor = :uglifier
29
+ # config.assets.css_compressor = :sass
30
+
31
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
32
+ config.assets.compile = false
33
+
34
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
35
+ # yet still be able to expire them through the digest params.
36
+ config.assets.digest = true
37
+
38
+ # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
39
+
40
+ # Specifies the header that your server uses for sending files.
41
+ # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
42
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
43
+
44
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
45
+ # config.force_ssl = true
46
+
47
+ # Use the lowest log level to ensure availability of diagnostic information
48
+ # when problems arise.
49
+ config.log_level = :debug
50
+
51
+ # Prepend all log lines with the following tags.
52
+ # config.log_tags = [ :subdomain, :uuid ]
53
+
54
+ # Use a different logger for distributed setups.
55
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
56
+
57
+ # Use a different cache store in production.
58
+ # config.cache_store = :mem_cache_store
59
+
60
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
61
+ # config.action_controller.asset_host = 'http://assets.example.com'
62
+
63
+ # Ignore bad email addresses and do not raise email delivery errors.
64
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
65
+ # config.action_mailer.raise_delivery_errors = false
66
+
67
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
68
+ # the I18n.default_locale when a translation cannot be found).
69
+ config.i18n.fallbacks = true
70
+
71
+ # Send deprecation notices to registered listeners.
72
+ config.active_support.deprecation = :notify
73
+
74
+ # Use default logging formatter so that PID and timestamp are not suppressed.
75
+ config.log_formatter = ::Logger::Formatter.new
76
+
77
+ # Do not dump schema after migrations.
78
+ config.active_record.dump_schema_after_migration = false
79
+ end
@@ -0,0 +1,42 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static file server for tests with Cache-Control for performance.
16
+ config.serve_static_files = true
17
+ config.static_cache_control = 'public, max-age=3600'
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Randomize the order test cases are executed.
35
+ config.active_support.test_order = :random
36
+
37
+ # Print deprecation notices to the stderr.
38
+ config.active_support.deprecation = :stderr
39
+
40
+ # Raises error for missing translations
41
+ # config.action_view.raise_on_missing_translations = true
42
+ end
@@ -0,0 +1,11 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Add additional assets to the asset load path
7
+ # Rails.application.config.assets.paths << Emoji.images_path
8
+
9
+ # Precompile additional assets.
10
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ resources :users
3
+ 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: ee6c7e38671d5ab05e1f46970af46f8696841ce19a1179fbd468e5a116d654c59f0ee1f7de32ad95c1ca58ed7c543bdce5f6463062e35d85c32aee6bdb70c415
15
+
16
+ test:
17
+ secret_key_base: ec68dfd878a9d06b78dcb52da59f1ffb32077be692b22e1c93e2354a43b8cf637164f0d8feb432f17bc8cc5fd224e2b242cd3bdb42917ab1390a9637770e2674
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"] %>
Binary file
@@ -0,0 +1,11 @@
1
+ class CreateUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table :users do |t|
4
+ t.string :name
5
+ t.string :email
6
+ t.string :password
7
+
8
+ t.timestamps null: false
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,24 @@
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: 20151028005827) do
15
+
16
+ create_table "users", force: :cascade do |t|
17
+ t.string "name"
18
+ t.string "email"
19
+ t.string "password"
20
+ t.datetime "created_at", null: false
21
+ t.datetime "updated_at", null: false
22
+ end
23
+
24
+ end
Binary file
@@ -0,0 +1,10 @@
1
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+ Migrating to CreateUsers (20151028005827)
6
+  (0.1ms) begin transaction
7
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "password" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
8
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151028005827"]]
9
+  (0.8ms) commit transaction
10
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
@@ -0,0 +1,1408 @@
1
+  (0.1ms) begin transaction
2
+ -------------------------------------------------------------------
3
+ Bootstrap4FormBuilderTest: test_password_field_is_wrapped_correctly
4
+ -------------------------------------------------------------------
5
+  (0.0ms) rollback transaction
6
+  (0.0ms) begin transaction
7
+ -----------------------------------------------------------------------
8
+ Bootstrap4FormBuilderTest: test_gridded_form_field_is_wrapped_correctly
9
+ -----------------------------------------------------------------------
10
+  (0.0ms) rollback transaction
11
+  (0.0ms) begin transaction
12
+ -----------------------------------------------------------------
13
+ Bootstrap4FormBuilderTest: test_number_field_is_wrapped_correctly
14
+ -----------------------------------------------------------------
15
+  (0.0ms) rollback transaction
16
+  (0.0ms) begin transaction
17
+ ---------------------------------------------------------------
18
+ Bootstrap4FormBuilderTest: test_week_field_is_wrapped_correctly
19
+ ---------------------------------------------------------------
20
+  (0.1ms) rollback transaction
21
+  (0.0ms) begin transaction
22
+ ---------------------------------------------------------------
23
+ Bootstrap4FormBuilderTest: test_time_field_is_wrapped_correctly
24
+ ---------------------------------------------------------------
25
+  (0.0ms) rollback transaction
26
+  (0.0ms) begin transaction
27
+ --------------------------------------------------------------
28
+ Bootstrap4FormBuilderTest: test_text_area_is_wrapped_correctly
29
+ --------------------------------------------------------------
30
+  (0.0ms) rollback transaction
31
+  (0.0ms) begin transaction
32
+ -----------------------------------------------------------
33
+ Bootstrap4FormBuilderTest: test_submit_is_classed_correctly
34
+ -----------------------------------------------------------
35
+  (0.0ms) rollback transaction
36
+  (0.0ms) begin transaction
37
+ ----------------------------------------------------------------
38
+ Bootstrap4FormBuilderTest: test_phone_field_is_wrapped_correctly
39
+ ----------------------------------------------------------------
40
+  (0.0ms) rollback transaction
41
+  (0.0ms) begin transaction
42
+ --------------------------------------------------------------
43
+ Bootstrap4FormBuilderTest: test_custom_label_class_is_included
44
+ --------------------------------------------------------------
45
+  (0.0ms) rollback transaction
46
+  (0.0ms) begin transaction
47
+ --------------------------------------------------------------
48
+ Bootstrap4FormBuilderTest: test_label_is_hidden_when_requested
49
+ --------------------------------------------------------------
50
+  (0.0ms) rollback transaction
51
+  (0.0ms) begin transaction
52
+ -----------------------------------------------------------------
53
+ Bootstrap4FormBuilderTest: test_search_field_is_wrapped_correctly
54
+ -----------------------------------------------------------------
55
+  (0.0ms) rollback transaction
56
+  (0.0ms) begin transaction
57
+ --------------------------------------------------------------------
58
+ Bootstrap4FormBuilderTest: test_telephone_field_is_wrapped_correctly
59
+ --------------------------------------------------------------------
60
+  (0.0ms) rollback transaction
61
+  (0.0ms) begin transaction
62
+ -------------------------------------------------------------
63
+ Bootstrap4FormBuilderTest: test_custom_label_text_is_included
64
+ -------------------------------------------------------------
65
+  (0.0ms) rollback transaction
66
+  (0.1ms) begin transaction
67
+ ----------------------------------------------------------------------
68
+ Bootstrap4FormBuilderTest: test_inline_text_field_is_wrapped_correctly
69
+ ----------------------------------------------------------------------
70
+  (0.0ms) rollback transaction
71
+  (0.0ms) begin transaction
72
+ --------------------------------------------------------------
73
+ Bootstrap4FormBuilderTest: test_url_field_is_wrapped_correctly
74
+ --------------------------------------------------------------
75
+  (0.0ms) rollback transaction
76
+  (0.0ms) begin transaction
77
+ -------------------------------------------------------------------------
78
+ Bootstrap4FormBuilderTest: test_datetime_local_field_is_wrapped_correctly
79
+ -------------------------------------------------------------------------
80
+  (0.0ms) rollback transaction
81
+  (0.0ms) begin transaction
82
+ -----------------------------------------------------------------
83
+ Bootstrap4FormBuilderTest: test_custom_container_class_is_include
84
+ -----------------------------------------------------------------
85
+  (0.0ms) rollback transaction
86
+  (0.0ms) begin transaction
87
+ ----------------------------------------------------------------
88
+ Bootstrap4FormBuilderTest: test_range_field_is_wrapped_correctly
89
+ ----------------------------------------------------------------
90
+  (0.0ms) rollback transaction
91
+  (0.0ms) begin transaction
92
+ ------------------------------------------------------------
93
+ Bootstrap4FormBuilderTest: test_primary_is_classed_correctly
94
+ ------------------------------------------------------------
95
+  (0.0ms) rollback transaction
96
+  (0.0ms) begin transaction
97
+ ---------------------------------------------------------------
98
+ Bootstrap4FormBuilderTest: test_text_field_is_wrapped_correctly
99
+ ---------------------------------------------------------------
100
+  (0.0ms) rollback transaction
101
+  (0.0ms) begin transaction
102
+ ----------------------------------------------------------------
103
+ Bootstrap4FormBuilderTest: test_month_field_is_wrapped_correctly
104
+ ----------------------------------------------------------------
105
+  (0.0ms) rollback transaction
106
+  (0.0ms) begin transaction
107
+ ----------------------------------------------------------------
108
+ Bootstrap4FormBuilderTest: test_email_field_is_wrapped_correctly
109
+ ----------------------------------------------------------------
110
+  (0.0ms) rollback transaction
111
+  (0.0ms) begin transaction
112
+ ---------------------------------------------------------------
113
+ Bootstrap4FormBuilderTest: test_date_field_is_wrapped_correctly
114
+ ---------------------------------------------------------------
115
+  (0.0ms) rollback transaction
116
+  (0.0ms) begin transaction
117
+ ----------------------------------------------------------------
118
+ Bootstrap4FormBuilderTest: test_color_field_is_wrapped_correctly
119
+ ----------------------------------------------------------------
120
+  (0.0ms) rollback transaction
121
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
122
+  (0.5ms) select sqlite_version(*)
123
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
124
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
125
+ Migrating to CreateUsers (20151028005827)
126
+  (0.0ms) begin transaction
127
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "password" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
128
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151028005827"]]
129
+  (0.8ms) commit transaction
130
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
131
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
132
+  (0.1ms) begin transaction
133
+ -----------------------------------------------------------------
134
+ Bootstrap4FormBuilderTest: test_number_field_is_wrapped_correctly
135
+ -----------------------------------------------------------------
136
+  (0.1ms) rollback transaction
137
+  (0.0ms) begin transaction
138
+ ----------------------------------------------------------------------
139
+ Bootstrap4FormBuilderTest: test_inline_text_field_is_wrapped_correctly
140
+ ----------------------------------------------------------------------
141
+  (0.0ms) rollback transaction
142
+  (0.0ms) begin transaction
143
+ -----------------------------------------------------------------
144
+ Bootstrap4FormBuilderTest: test_search_field_is_wrapped_correctly
145
+ -----------------------------------------------------------------
146
+  (0.0ms) rollback transaction
147
+  (0.0ms) begin transaction
148
+ --------------------------------------------------------------
149
+ Bootstrap4FormBuilderTest: test_label_is_hidden_when_requested
150
+ --------------------------------------------------------------
151
+  (0.0ms) rollback transaction
152
+  (0.0ms) begin transaction
153
+ ------------------------------------------------------------
154
+ Bootstrap4FormBuilderTest: test_primary_is_classed_correctly
155
+ ------------------------------------------------------------
156
+  (0.0ms) rollback transaction
157
+  (0.0ms) begin transaction
158
+ ----------------------------------------------------------------
159
+ Bootstrap4FormBuilderTest: test_phone_field_is_wrapped_correctly
160
+ ----------------------------------------------------------------
161
+  (0.0ms) rollback transaction
162
+  (0.0ms) begin transaction
163
+ -------------------------------------------------------------------------
164
+ Bootstrap4FormBuilderTest: test_datetime_local_field_is_wrapped_correctly
165
+ -------------------------------------------------------------------------
166
+  (0.0ms) rollback transaction
167
+  (0.0ms) begin transaction
168
+ --------------------------------------------------------------------
169
+ Bootstrap4FormBuilderTest: test_telephone_field_is_wrapped_correctly
170
+ --------------------------------------------------------------------
171
+  (0.0ms) rollback transaction
172
+  (0.0ms) begin transaction
173
+ ---------------------------------------------------------------
174
+ Bootstrap4FormBuilderTest: test_date_field_is_wrapped_correctly
175
+ ---------------------------------------------------------------
176
+  (0.0ms) rollback transaction
177
+  (0.0ms) begin transaction
178
+ ---------------------------------------------------------------
179
+ Bootstrap4FormBuilderTest: test_text_field_is_wrapped_correctly
180
+ ---------------------------------------------------------------
181
+  (0.0ms) rollback transaction
182
+  (0.0ms) begin transaction
183
+ ----------------------------------------------------------------
184
+ Bootstrap4FormBuilderTest: test_range_field_is_wrapped_correctly
185
+ ----------------------------------------------------------------
186
+  (0.0ms) rollback transaction
187
+  (0.0ms) begin transaction
188
+ -------------------------------------------------------------
189
+ Bootstrap4FormBuilderTest: test_custom_label_text_is_included
190
+ -------------------------------------------------------------
191
+  (0.0ms) rollback transaction
192
+  (0.0ms) begin transaction
193
+ -------------------------------------------------------------------
194
+ Bootstrap4FormBuilderTest: test_password_field_is_wrapped_correctly
195
+ -------------------------------------------------------------------
196
+  (0.0ms) rollback transaction
197
+  (0.0ms) begin transaction
198
+ ----------------------------------------------------------------
199
+ Bootstrap4FormBuilderTest: test_color_field_is_wrapped_correctly
200
+ ----------------------------------------------------------------
201
+  (0.0ms) rollback transaction
202
+  (0.0ms) begin transaction
203
+ -----------------------------------------------------------------
204
+ Bootstrap4FormBuilderTest: test_custom_container_class_is_include
205
+ -----------------------------------------------------------------
206
+  (0.0ms) rollback transaction
207
+  (0.0ms) begin transaction
208
+ ---------------------------------------------------------------
209
+ Bootstrap4FormBuilderTest: test_time_field_is_wrapped_correctly
210
+ ---------------------------------------------------------------
211
+  (0.0ms) rollback transaction
212
+  (0.0ms) begin transaction
213
+ ----------------------------------------------------------------
214
+ Bootstrap4FormBuilderTest: test_month_field_is_wrapped_correctly
215
+ ----------------------------------------------------------------
216
+  (0.0ms) rollback transaction
217
+  (0.1ms) begin transaction
218
+ ---------------------------------------------------------------
219
+ Bootstrap4FormBuilderTest: test_week_field_is_wrapped_correctly
220
+ ---------------------------------------------------------------
221
+  (0.1ms) rollback transaction
222
+  (0.0ms) begin transaction
223
+ --------------------------------------------------------------
224
+ Bootstrap4FormBuilderTest: test_custom_label_class_is_included
225
+ --------------------------------------------------------------
226
+  (0.0ms) rollback transaction
227
+  (0.0ms) begin transaction
228
+ --------------------------------------------------------------
229
+ Bootstrap4FormBuilderTest: test_url_field_is_wrapped_correctly
230
+ --------------------------------------------------------------
231
+  (0.0ms) rollback transaction
232
+  (0.0ms) begin transaction
233
+ -----------------------------------------------------------------------
234
+ Bootstrap4FormBuilderTest: test_gridded_form_field_is_wrapped_correctly
235
+ -----------------------------------------------------------------------
236
+  (0.0ms) rollback transaction
237
+  (0.0ms) begin transaction
238
+ --------------------------------------------------------------
239
+ Bootstrap4FormBuilderTest: test_text_area_is_wrapped_correctly
240
+ --------------------------------------------------------------
241
+  (0.0ms) rollback transaction
242
+  (0.1ms) begin transaction
243
+ -----------------------------------------------------------
244
+ Bootstrap4FormBuilderTest: test_submit_is_classed_correctly
245
+ -----------------------------------------------------------
246
+  (0.0ms) rollback transaction
247
+  (0.0ms) begin transaction
248
+ ----------------------------------------------------------------
249
+ Bootstrap4FormBuilderTest: test_email_field_is_wrapped_correctly
250
+ ----------------------------------------------------------------
251
+  (0.0ms) rollback transaction
252
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
253
+  (0.1ms) begin transaction
254
+ --------------------------------------------------
255
+ Bootstap4FormBuilderHelperTest: test_default_forms
256
+ --------------------------------------------------
257
+  (0.0ms) rollback transaction
258
+  (0.0ms) begin transaction
259
+ -------------------------------------------------
260
+ Bootstap4FormBuilderHelperTest: test_inline_forms
261
+ -------------------------------------------------
262
+  (0.0ms) rollback transaction
263
+  (0.0ms) begin transaction
264
+ --------------------------------------------------
265
+ Bootstap4FormBuilderHelperTest: test_gridded_forms
266
+ --------------------------------------------------
267
+  (0.0ms) rollback transaction
268
+  (0.0ms) begin transaction
269
+ ----------------------------------------------------------------
270
+ Bootstrap4FormBuilderTest: test_range_field_is_wrapped_correctly
271
+ ----------------------------------------------------------------
272
+  (0.0ms) rollback transaction
273
+  (0.0ms) begin transaction
274
+ ----------------------------------------------------------------
275
+ Bootstrap4FormBuilderTest: test_color_field_is_wrapped_correctly
276
+ ----------------------------------------------------------------
277
+  (0.0ms) rollback transaction
278
+  (0.0ms) begin transaction
279
+ -------------------------------------------------------------------------
280
+ Bootstrap4FormBuilderTest: test_datetime_local_field_is_wrapped_correctly
281
+ -------------------------------------------------------------------------
282
+  (0.0ms) rollback transaction
283
+  (0.0ms) begin transaction
284
+ ---------------------------------------------------------------
285
+ Bootstrap4FormBuilderTest: test_time_field_is_wrapped_correctly
286
+ ---------------------------------------------------------------
287
+  (0.0ms) rollback transaction
288
+  (0.0ms) begin transaction
289
+ -----------------------------------------------------------------
290
+ Bootstrap4FormBuilderTest: test_custom_container_class_is_include
291
+ -----------------------------------------------------------------
292
+  (0.0ms) rollback transaction
293
+  (0.0ms) begin transaction
294
+ --------------------------------------------------------------------
295
+ Bootstrap4FormBuilderTest: test_telephone_field_is_wrapped_correctly
296
+ --------------------------------------------------------------------
297
+  (0.0ms) rollback transaction
298
+  (0.0ms) begin transaction
299
+ -----------------------------------------------------------------
300
+ Bootstrap4FormBuilderTest: test_number_field_is_wrapped_correctly
301
+ -----------------------------------------------------------------
302
+  (0.0ms) rollback transaction
303
+  (0.0ms) begin transaction
304
+ -----------------------------------------------------------
305
+ Bootstrap4FormBuilderTest: test_submit_is_classed_correctly
306
+ -----------------------------------------------------------
307
+  (0.0ms) rollback transaction
308
+  (0.0ms) begin transaction
309
+ --------------------------------------------------------------
310
+ Bootstrap4FormBuilderTest: test_custom_label_class_is_included
311
+ --------------------------------------------------------------
312
+  (0.0ms) rollback transaction
313
+  (0.0ms) begin transaction
314
+ -----------------------------------------------------------------
315
+ Bootstrap4FormBuilderTest: test_search_field_is_wrapped_correctly
316
+ -----------------------------------------------------------------
317
+  (0.0ms) rollback transaction
318
+  (0.0ms) begin transaction
319
+ --------------------------------------------------------------
320
+ Bootstrap4FormBuilderTest: test_url_field_is_wrapped_correctly
321
+ --------------------------------------------------------------
322
+  (0.1ms) rollback transaction
323
+  (0.0ms) begin transaction
324
+ ----------------------------------------------------------------
325
+ Bootstrap4FormBuilderTest: test_email_field_is_wrapped_correctly
326
+ ----------------------------------------------------------------
327
+  (0.0ms) rollback transaction
328
+  (0.0ms) begin transaction
329
+ ----------------------------------------------------------------------
330
+ Bootstrap4FormBuilderTest: test_inline_text_field_is_wrapped_correctly
331
+ ----------------------------------------------------------------------
332
+  (0.0ms) rollback transaction
333
+  (0.0ms) begin transaction
334
+ ---------------------------------------------------------------
335
+ Bootstrap4FormBuilderTest: test_text_field_is_wrapped_correctly
336
+ ---------------------------------------------------------------
337
+  (0.0ms) rollback transaction
338
+  (0.0ms) begin transaction
339
+ ---------------------------------------------------------------
340
+ Bootstrap4FormBuilderTest: test_date_field_is_wrapped_correctly
341
+ ---------------------------------------------------------------
342
+  (0.0ms) rollback transaction
343
+  (0.0ms) begin transaction
344
+ -------------------------------------------------------------------
345
+ Bootstrap4FormBuilderTest: test_password_field_is_wrapped_correctly
346
+ -------------------------------------------------------------------
347
+  (0.0ms) rollback transaction
348
+  (0.0ms) begin transaction
349
+ ------------------------------------------------------------
350
+ Bootstrap4FormBuilderTest: test_primary_is_classed_correctly
351
+ ------------------------------------------------------------
352
+  (0.0ms) rollback transaction
353
+  (0.0ms) begin transaction
354
+ ----------------------------------------------------------------
355
+ Bootstrap4FormBuilderTest: test_phone_field_is_wrapped_correctly
356
+ ----------------------------------------------------------------
357
+  (0.0ms) rollback transaction
358
+  (0.0ms) begin transaction
359
+ -------------------------------------------------------------
360
+ Bootstrap4FormBuilderTest: test_custom_label_text_is_included
361
+ -------------------------------------------------------------
362
+  (0.0ms) rollback transaction
363
+  (0.0ms) begin transaction
364
+ -----------------------------------------------------------------------
365
+ Bootstrap4FormBuilderTest: test_gridded_form_field_is_wrapped_correctly
366
+ -----------------------------------------------------------------------
367
+  (0.0ms) rollback transaction
368
+  (0.0ms) begin transaction
369
+ --------------------------------------------------------------
370
+ Bootstrap4FormBuilderTest: test_label_is_hidden_when_requested
371
+ --------------------------------------------------------------
372
+  (0.0ms) rollback transaction
373
+  (0.0ms) begin transaction
374
+ --------------------------------------------------------------
375
+ Bootstrap4FormBuilderTest: test_text_area_is_wrapped_correctly
376
+ --------------------------------------------------------------
377
+  (0.0ms) rollback transaction
378
+  (0.0ms) begin transaction
379
+ ----------------------------------------------------------------
380
+ Bootstrap4FormBuilderTest: test_month_field_is_wrapped_correctly
381
+ ----------------------------------------------------------------
382
+  (0.0ms) rollback transaction
383
+  (0.0ms) begin transaction
384
+ ---------------------------------------------------------------
385
+ Bootstrap4FormBuilderTest: test_week_field_is_wrapped_correctly
386
+ ---------------------------------------------------------------
387
+  (0.0ms) rollback transaction
388
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
389
+  (0.1ms) begin transaction
390
+ --------------------------------------------------
391
+ Bootstap4FormBuilderHelperTest: test_default_forms
392
+ --------------------------------------------------
393
+  (0.0ms) rollback transaction
394
+  (0.0ms) begin transaction
395
+ --------------------------------------------------
396
+ Bootstap4FormBuilderHelperTest: test_gridded_forms
397
+ --------------------------------------------------
398
+  (0.0ms) rollback transaction
399
+  (0.0ms) begin transaction
400
+ -------------------------------------------------
401
+ Bootstap4FormBuilderHelperTest: test_inline_forms
402
+ -------------------------------------------------
403
+  (0.0ms) rollback transaction
404
+  (0.0ms) begin transaction
405
+ -------------------------------------------------------------------------
406
+ Bootstrap4FormBuilderTest: test_datetime_local_field_is_wrapped_correctly
407
+ -------------------------------------------------------------------------
408
+  (0.0ms) rollback transaction
409
+  (0.0ms) begin transaction
410
+ ----------------------------------------------------------------------
411
+ Bootstrap4FormBuilderTest: test_inline_text_field_is_wrapped_correctly
412
+ ----------------------------------------------------------------------
413
+  (0.0ms) rollback transaction
414
+  (0.0ms) begin transaction
415
+ ---------------------------------------------------------------
416
+ Bootstrap4FormBuilderTest: test_text_field_is_wrapped_correctly
417
+ ---------------------------------------------------------------
418
+  (0.1ms) rollback transaction
419
+  (0.0ms) begin transaction
420
+ -------------------------------------------------------------------
421
+ Bootstrap4FormBuilderTest: test_password_field_is_wrapped_correctly
422
+ -------------------------------------------------------------------
423
+  (0.0ms) rollback transaction
424
+  (0.0ms) begin transaction
425
+ ----------------------------------------------------------------
426
+ Bootstrap4FormBuilderTest: test_range_field_is_wrapped_correctly
427
+ ----------------------------------------------------------------
428
+  (0.0ms) rollback transaction
429
+  (0.0ms) begin transaction
430
+ ---------------------------------------------------------------
431
+ Bootstrap4FormBuilderTest: test_date_field_is_wrapped_correctly
432
+ ---------------------------------------------------------------
433
+  (0.0ms) rollback transaction
434
+  (0.0ms) begin transaction
435
+ --------------------------------------------------------------
436
+ Bootstrap4FormBuilderTest: test_text_area_is_wrapped_correctly
437
+ --------------------------------------------------------------
438
+  (0.0ms) rollback transaction
439
+  (0.0ms) begin transaction
440
+ ------------------------------------------------------------
441
+ Bootstrap4FormBuilderTest: test_primary_is_classed_correctly
442
+ ------------------------------------------------------------
443
+  (0.0ms) rollback transaction
444
+  (0.0ms) begin transaction
445
+ --------------------------------------------------------------
446
+ Bootstrap4FormBuilderTest: test_label_is_hidden_when_requested
447
+ --------------------------------------------------------------
448
+  (0.0ms) rollback transaction
449
+  (0.0ms) begin transaction
450
+ -----------------------------------------------------------------
451
+ Bootstrap4FormBuilderTest: test_number_field_is_wrapped_correctly
452
+ -----------------------------------------------------------------
453
+  (0.0ms) rollback transaction
454
+  (0.0ms) begin transaction
455
+ ---------------------------------------------------------------
456
+ Bootstrap4FormBuilderTest: test_week_field_is_wrapped_correctly
457
+ ---------------------------------------------------------------
458
+  (0.0ms) rollback transaction
459
+  (0.0ms) begin transaction
460
+ -----------------------------------------------------------------
461
+ Bootstrap4FormBuilderTest: test_custom_container_class_is_include
462
+ -----------------------------------------------------------------
463
+  (0.0ms) rollback transaction
464
+  (0.0ms) begin transaction
465
+ --------------------------------------------------------------
466
+ Bootstrap4FormBuilderTest: test_url_field_is_wrapped_correctly
467
+ --------------------------------------------------------------
468
+  (0.0ms) rollback transaction
469
+  (0.0ms) begin transaction
470
+ ----------------------------------------------------------------
471
+ Bootstrap4FormBuilderTest: test_color_field_is_wrapped_correctly
472
+ ----------------------------------------------------------------
473
+  (0.0ms) rollback transaction
474
+  (0.0ms) begin transaction
475
+ ---------------------------------------------------------------
476
+ Bootstrap4FormBuilderTest: test_time_field_is_wrapped_correctly
477
+ ---------------------------------------------------------------
478
+  (0.0ms) rollback transaction
479
+  (0.0ms) begin transaction
480
+ ----------------------------------------------------------------
481
+ Bootstrap4FormBuilderTest: test_email_field_is_wrapped_correctly
482
+ ----------------------------------------------------------------
483
+  (0.0ms) rollback transaction
484
+  (0.0ms) begin transaction
485
+ -----------------------------------------------------------------
486
+ Bootstrap4FormBuilderTest: test_search_field_is_wrapped_correctly
487
+ -----------------------------------------------------------------
488
+  (0.0ms) rollback transaction
489
+  (0.0ms) begin transaction
490
+ ----------------------------------------------------------------
491
+ Bootstrap4FormBuilderTest: test_month_field_is_wrapped_correctly
492
+ ----------------------------------------------------------------
493
+  (0.0ms) rollback transaction
494
+  (0.0ms) begin transaction
495
+ --------------------------------------------------------------
496
+ Bootstrap4FormBuilderTest: test_custom_label_class_is_included
497
+ --------------------------------------------------------------
498
+  (0.0ms) rollback transaction
499
+  (0.0ms) begin transaction
500
+ ----------------------------------------------------------------
501
+ Bootstrap4FormBuilderTest: test_phone_field_is_wrapped_correctly
502
+ ----------------------------------------------------------------
503
+  (0.0ms) rollback transaction
504
+  (0.0ms) begin transaction
505
+ -----------------------------------------------------------
506
+ Bootstrap4FormBuilderTest: test_submit_is_classed_correctly
507
+ -----------------------------------------------------------
508
+  (0.0ms) rollback transaction
509
+  (0.0ms) begin transaction
510
+ --------------------------------------------------------------------
511
+ Bootstrap4FormBuilderTest: test_telephone_field_is_wrapped_correctly
512
+ --------------------------------------------------------------------
513
+  (0.0ms) rollback transaction
514
+  (0.0ms) begin transaction
515
+ -----------------------------------------------------------------------
516
+ Bootstrap4FormBuilderTest: test_gridded_form_field_is_wrapped_correctly
517
+ -----------------------------------------------------------------------
518
+  (0.0ms) rollback transaction
519
+  (0.0ms) begin transaction
520
+ -------------------------------------------------------------
521
+ Bootstrap4FormBuilderTest: test_custom_label_text_is_included
522
+ -------------------------------------------------------------
523
+  (0.0ms) rollback transaction
524
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
525
+  (0.1ms) begin transaction
526
+ -----------------------------------------------------------------
527
+ Bootstrap4FormBuilderTest: test_custom_container_class_is_include
528
+ -----------------------------------------------------------------
529
+  (0.0ms) rollback transaction
530
+  (0.0ms) begin transaction
531
+ ---------------------------------------------------------------
532
+ Bootstrap4FormBuilderTest: test_time_field_is_wrapped_correctly
533
+ ---------------------------------------------------------------
534
+  (0.0ms) rollback transaction
535
+  (0.0ms) begin transaction
536
+ -------------------------------------------------------------------
537
+ Bootstrap4FormBuilderTest: test_password_field_is_wrapped_correctly
538
+ -------------------------------------------------------------------
539
+  (0.0ms) rollback transaction
540
+  (0.0ms) begin transaction
541
+ -----------------------------------------------------------------
542
+ Bootstrap4FormBuilderTest: test_search_field_is_wrapped_correctly
543
+ -----------------------------------------------------------------
544
+  (0.0ms) rollback transaction
545
+  (0.0ms) begin transaction
546
+ --------------------------------------------------------------
547
+ Bootstrap4FormBuilderTest: test_custom_label_class_is_included
548
+ --------------------------------------------------------------
549
+  (0.0ms) rollback transaction
550
+  (0.0ms) begin transaction
551
+ -----------------------------------------------------------------
552
+ Bootstrap4FormBuilderTest: test_number_field_is_wrapped_correctly
553
+ -----------------------------------------------------------------
554
+  (0.0ms) rollback transaction
555
+  (0.1ms) begin transaction
556
+ -----------------------------------------------------------------------
557
+ Bootstrap4FormBuilderTest: test_gridded_form_field_is_wrapped_correctly
558
+ -----------------------------------------------------------------------
559
+  (0.0ms) rollback transaction
560
+  (0.0ms) begin transaction
561
+ -------------------------------------------------------------------------
562
+ Bootstrap4FormBuilderTest: test_datetime_local_field_is_wrapped_correctly
563
+ -------------------------------------------------------------------------
564
+  (0.0ms) rollback transaction
565
+  (0.0ms) begin transaction
566
+ ----------------------------------------------------------------
567
+ Bootstrap4FormBuilderTest: test_range_field_is_wrapped_correctly
568
+ ----------------------------------------------------------------
569
+  (0.0ms) rollback transaction
570
+  (0.1ms) begin transaction
571
+ ----------------------------------------------------------------
572
+ Bootstrap4FormBuilderTest: test_color_field_is_wrapped_correctly
573
+ ----------------------------------------------------------------
574
+  (0.1ms) rollback transaction
575
+  (0.0ms) begin transaction
576
+ -------------------------------------------------------------
577
+ Bootstrap4FormBuilderTest: test_custom_label_text_is_included
578
+ -------------------------------------------------------------
579
+  (0.0ms) rollback transaction
580
+  (0.0ms) begin transaction
581
+ ----------------------------------------------------------------------
582
+ Bootstrap4FormBuilderTest: test_inline_text_field_is_wrapped_correctly
583
+ ----------------------------------------------------------------------
584
+  (0.0ms) rollback transaction
585
+  (0.0ms) begin transaction
586
+ --------------------------------------------------------------
587
+ Bootstrap4FormBuilderTest: test_url_field_is_wrapped_correctly
588
+ --------------------------------------------------------------
589
+  (0.0ms) rollback transaction
590
+  (0.0ms) begin transaction
591
+ ---------------------------------------------------------------
592
+ Bootstrap4FormBuilderTest: test_week_field_is_wrapped_correctly
593
+ ---------------------------------------------------------------
594
+  (0.0ms) rollback transaction
595
+  (0.0ms) begin transaction
596
+ --------------------------------------------------------------
597
+ Bootstrap4FormBuilderTest: test_text_area_is_wrapped_correctly
598
+ --------------------------------------------------------------
599
+  (0.0ms) rollback transaction
600
+  (0.0ms) begin transaction
601
+ --------------------------------------------------------------------
602
+ Bootstrap4FormBuilderTest: test_telephone_field_is_wrapped_correctly
603
+ --------------------------------------------------------------------
604
+  (0.0ms) rollback transaction
605
+  (0.0ms) begin transaction
606
+ ----------------------------------------------------------------
607
+ Bootstrap4FormBuilderTest: test_month_field_is_wrapped_correctly
608
+ ----------------------------------------------------------------
609
+  (0.0ms) rollback transaction
610
+  (0.0ms) begin transaction
611
+ ---------------------------------------------------------------
612
+ Bootstrap4FormBuilderTest: test_date_field_is_wrapped_correctly
613
+ ---------------------------------------------------------------
614
+  (0.0ms) rollback transaction
615
+  (0.0ms) begin transaction
616
+ ---------------------------------------------------------------
617
+ Bootstrap4FormBuilderTest: test_text_field_is_wrapped_correctly
618
+ ---------------------------------------------------------------
619
+  (0.0ms) rollback transaction
620
+  (0.0ms) begin transaction
621
+ ----------------------------------------------------------------
622
+ Bootstrap4FormBuilderTest: test_email_field_is_wrapped_correctly
623
+ ----------------------------------------------------------------
624
+  (0.0ms) rollback transaction
625
+  (0.0ms) begin transaction
626
+ -----------------------------------------------------------
627
+ Bootstrap4FormBuilderTest: test_submit_is_classed_correctly
628
+ -----------------------------------------------------------
629
+  (0.0ms) rollback transaction
630
+  (0.0ms) begin transaction
631
+ ----------------------------------------------------------------
632
+ Bootstrap4FormBuilderTest: test_phone_field_is_wrapped_correctly
633
+ ----------------------------------------------------------------
634
+  (0.0ms) rollback transaction
635
+  (0.0ms) begin transaction
636
+ ------------------------------------------------------------
637
+ Bootstrap4FormBuilderTest: test_primary_is_classed_correctly
638
+ ------------------------------------------------------------
639
+  (0.0ms) rollback transaction
640
+  (0.0ms) begin transaction
641
+ --------------------------------------------------------------
642
+ Bootstrap4FormBuilderTest: test_label_is_hidden_when_requested
643
+ --------------------------------------------------------------
644
+  (0.0ms) rollback transaction
645
+  (0.0ms) begin transaction
646
+ -------------------------------------------------
647
+ Bootstap4FormBuilderHelperTest: test_inline_forms
648
+ -------------------------------------------------
649
+  (0.0ms) rollback transaction
650
+  (0.0ms) begin transaction
651
+ --------------------------------------------------
652
+ Bootstap4FormBuilderHelperTest: test_gridded_forms
653
+ --------------------------------------------------
654
+  (0.0ms) rollback transaction
655
+  (0.1ms) begin transaction
656
+ --------------------------------------------------
657
+ Bootstap4FormBuilderHelperTest: test_default_forms
658
+ --------------------------------------------------
659
+  (0.0ms) rollback transaction
660
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
661
+  (0.1ms) begin transaction
662
+ ---------------------------------------------------------------------------------------
663
+ Bootstrap4FormBuilderRadioCheckTest: test_form_group_label_and_label_class_are_included
664
+ ---------------------------------------------------------------------------------------
665
+  (0.0ms) rollback transaction
666
+  (0.0ms) begin transaction
667
+ ------------------------------------------------------------------------
668
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_is_wrapped_correctly
669
+ ------------------------------------------------------------------------
670
+  (0.0ms) rollback transaction
671
+  (0.0ms) begin transaction
672
+ ----------------------------------------------------------------------------------
673
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_inline_is_wrapped_correctly
674
+ ----------------------------------------------------------------------------------
675
+  (0.0ms) rollback transaction
676
+  (0.0ms) begin transaction
677
+ ---------------------------------------------------------------------------
678
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_is_wrapped_correctly
679
+ ---------------------------------------------------------------------------
680
+  (0.0ms) rollback transaction
681
+  (0.0ms) begin transaction
682
+ -------------------------------------------------------------------------------
683
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_inline_is_wrapped_correctly
684
+ -------------------------------------------------------------------------------
685
+  (0.0ms) rollback transaction
686
+  (0.0ms) begin transaction
687
+ --------------------------------------------------------------
688
+ Bootstrap4FormBuilderTest: test_url_field_is_wrapped_correctly
689
+ --------------------------------------------------------------
690
+  (0.0ms) rollback transaction
691
+  (0.0ms) begin transaction
692
+ ---------------------------------------------------------------
693
+ Bootstrap4FormBuilderTest: test_time_field_is_wrapped_correctly
694
+ ---------------------------------------------------------------
695
+  (0.0ms) rollback transaction
696
+  (0.0ms) begin transaction
697
+ ----------------------------------------------------------------------
698
+ Bootstrap4FormBuilderTest: test_inline_text_field_is_wrapped_correctly
699
+ ----------------------------------------------------------------------
700
+  (0.0ms) rollback transaction
701
+  (0.0ms) begin transaction
702
+ ----------------------------------------------------------------
703
+ Bootstrap4FormBuilderTest: test_phone_field_is_wrapped_correctly
704
+ ----------------------------------------------------------------
705
+  (0.0ms) rollback transaction
706
+  (0.0ms) begin transaction
707
+ --------------------------------------------------------------
708
+ Bootstrap4FormBuilderTest: test_label_is_hidden_when_requested
709
+ --------------------------------------------------------------
710
+  (0.0ms) rollback transaction
711
+  (0.0ms) begin transaction
712
+ ---------------------------------------------------------------
713
+ Bootstrap4FormBuilderTest: test_week_field_is_wrapped_correctly
714
+ ---------------------------------------------------------------
715
+  (0.0ms) rollback transaction
716
+  (0.0ms) begin transaction
717
+ --------------------------------------------------------------
718
+ Bootstrap4FormBuilderTest: test_custom_label_class_is_included
719
+ --------------------------------------------------------------
720
+  (0.0ms) rollback transaction
721
+  (0.0ms) begin transaction
722
+ -------------------------------------------------------------------------
723
+ Bootstrap4FormBuilderTest: test_datetime_local_field_is_wrapped_correctly
724
+ -------------------------------------------------------------------------
725
+  (0.0ms) rollback transaction
726
+  (0.0ms) begin transaction
727
+ ----------------------------------------------------------------
728
+ Bootstrap4FormBuilderTest: test_email_field_is_wrapped_correctly
729
+ ----------------------------------------------------------------
730
+  (0.0ms) rollback transaction
731
+  (0.0ms) begin transaction
732
+ ---------------------------------------------------------------
733
+ Bootstrap4FormBuilderTest: test_date_field_is_wrapped_correctly
734
+ ---------------------------------------------------------------
735
+  (0.0ms) rollback transaction
736
+  (0.0ms) begin transaction
737
+ -----------------------------------------------------------------
738
+ Bootstrap4FormBuilderTest: test_number_field_is_wrapped_correctly
739
+ -----------------------------------------------------------------
740
+  (0.0ms) rollback transaction
741
+  (0.0ms) begin transaction
742
+ ----------------------------------------------------------------
743
+ Bootstrap4FormBuilderTest: test_month_field_is_wrapped_correctly
744
+ ----------------------------------------------------------------
745
+  (0.0ms) rollback transaction
746
+  (0.0ms) begin transaction
747
+ -----------------------------------------------------------
748
+ Bootstrap4FormBuilderTest: test_submit_is_classed_correctly
749
+ -----------------------------------------------------------
750
+  (0.0ms) rollback transaction
751
+  (0.0ms) begin transaction
752
+ --------------------------------------------------------------
753
+ Bootstrap4FormBuilderTest: test_text_area_is_wrapped_correctly
754
+ --------------------------------------------------------------
755
+  (0.0ms) rollback transaction
756
+  (0.0ms) begin transaction
757
+ -------------------------------------------------------------
758
+ Bootstrap4FormBuilderTest: test_custom_label_text_is_included
759
+ -------------------------------------------------------------
760
+  (0.0ms) rollback transaction
761
+  (0.0ms) begin transaction
762
+ -----------------------------------------------------------------
763
+ Bootstrap4FormBuilderTest: test_custom_container_class_is_include
764
+ -----------------------------------------------------------------
765
+  (0.0ms) rollback transaction
766
+  (0.0ms) begin transaction
767
+ -----------------------------------------------------------------
768
+ Bootstrap4FormBuilderTest: test_search_field_is_wrapped_correctly
769
+ -----------------------------------------------------------------
770
+  (0.0ms) rollback transaction
771
+  (0.0ms) begin transaction
772
+ ---------------------------------------------------------------
773
+ Bootstrap4FormBuilderTest: test_text_field_is_wrapped_correctly
774
+ ---------------------------------------------------------------
775
+  (0.0ms) rollback transaction
776
+  (0.0ms) begin transaction
777
+ ----------------------------------------------------------------
778
+ Bootstrap4FormBuilderTest: test_range_field_is_wrapped_correctly
779
+ ----------------------------------------------------------------
780
+  (0.0ms) rollback transaction
781
+  (0.0ms) begin transaction
782
+ -------------------------------------------------------------------
783
+ Bootstrap4FormBuilderTest: test_password_field_is_wrapped_correctly
784
+ -------------------------------------------------------------------
785
+  (0.0ms) rollback transaction
786
+  (0.0ms) begin transaction
787
+ ------------------------------------------------------------
788
+ Bootstrap4FormBuilderTest: test_primary_is_classed_correctly
789
+ ------------------------------------------------------------
790
+  (0.0ms) rollback transaction
791
+  (0.0ms) begin transaction
792
+ -----------------------------------------------------------------------
793
+ Bootstrap4FormBuilderTest: test_gridded_form_field_is_wrapped_correctly
794
+ -----------------------------------------------------------------------
795
+  (0.0ms) rollback transaction
796
+  (0.0ms) begin transaction
797
+ --------------------------------------------------------------------
798
+ Bootstrap4FormBuilderTest: test_telephone_field_is_wrapped_correctly
799
+ --------------------------------------------------------------------
800
+  (0.0ms) rollback transaction
801
+  (0.0ms) begin transaction
802
+ ----------------------------------------------------------------
803
+ Bootstrap4FormBuilderTest: test_color_field_is_wrapped_correctly
804
+ ----------------------------------------------------------------
805
+  (0.0ms) rollback transaction
806
+  (0.0ms) begin transaction
807
+ --------------------------------------------------
808
+ Bootstap4FormBuilderHelperTest: test_gridded_forms
809
+ --------------------------------------------------
810
+  (0.1ms) rollback transaction
811
+  (0.0ms) begin transaction
812
+ --------------------------------------------------
813
+ Bootstap4FormBuilderHelperTest: test_default_forms
814
+ --------------------------------------------------
815
+  (0.0ms) rollback transaction
816
+  (0.0ms) begin transaction
817
+ -------------------------------------------------
818
+ Bootstap4FormBuilderHelperTest: test_inline_forms
819
+ -------------------------------------------------
820
+  (0.0ms) rollback transaction
821
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
822
+  (0.1ms) begin transaction
823
+ --------------------------------------------------------------------
824
+ BootstrapFormErrorTest: test_alert_message_produces_the_correct_html
825
+ --------------------------------------------------------------------
826
+  (0.0ms) rollback transaction
827
+  (0.0ms) begin transaction
828
+ -------------------------------------------------------------------------
829
+ BootstrapFormErrorTest: test_email_field_with_errors_is_wrapped_correctly
830
+ -------------------------------------------------------------------------
831
+  (0.0ms) rollback transaction
832
+  (0.0ms) begin transaction
833
+ -----------------------------------------------------------------------------------------------
834
+ BootstrapFormErrorTest: test_text_field_with_errors,_without_inline_errors_is_wrapped_correctly
835
+ -----------------------------------------------------------------------------------------------
836
+  (0.0ms) rollback transaction
837
+  (0.0ms) begin transaction
838
+ -------------------------------------------------------------------------------
839
+ BootstrapFormErrorTest: test_text_field_with_errors_includes_inline-error-class
840
+ -------------------------------------------------------------------------------
841
+  (0.0ms) rollback transaction
842
+  (0.0ms) begin transaction
843
+ ------------------------------------------------------------------------
844
+ BootstrapFormErrorTest: test_text_field_with_errors_is_wrapped_correctly
845
+ ------------------------------------------------------------------------
846
+  (0.0ms) rollback transaction
847
+  (0.0ms) begin transaction
848
+ ---------------------------------------------------------------------------------------
849
+ BootstrapFormErrorTest: test_alert_message_with_error_summary_produces_the_correct_html
850
+ ---------------------------------------------------------------------------------------
851
+  (0.0ms) rollback transaction
852
+  (0.0ms) begin transaction
853
+ --------------------------------------------------------------------
854
+ BootstrapFormErrorTest: test_error_summary_produces_the_correct_html
855
+ --------------------------------------------------------------------
856
+  (0.0ms) rollback transaction
857
+  (0.1ms) begin transaction
858
+ -------------------------------------------------
859
+ Bootstap4FormBuilderHelperTest: test_inline_forms
860
+ -------------------------------------------------
861
+  (0.0ms) rollback transaction
862
+  (0.0ms) begin transaction
863
+ --------------------------------------------------
864
+ Bootstap4FormBuilderHelperTest: test_gridded_forms
865
+ --------------------------------------------------
866
+  (0.0ms) rollback transaction
867
+  (0.1ms) begin transaction
868
+ --------------------------------------------------
869
+ Bootstap4FormBuilderHelperTest: test_default_forms
870
+ --------------------------------------------------
871
+  (0.0ms) rollback transaction
872
+  (0.0ms) begin transaction
873
+ ---------------------------------------------------------------------------
874
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_is_wrapped_correctly
875
+ ---------------------------------------------------------------------------
876
+  (0.0ms) rollback transaction
877
+  (0.0ms) begin transaction
878
+ ------------------------------------------------------------------------
879
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_is_wrapped_correctly
880
+ ------------------------------------------------------------------------
881
+  (0.0ms) rollback transaction
882
+  (0.0ms) begin transaction
883
+ ----------------------------------------------------------------------------------
884
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_inline_is_wrapped_correctly
885
+ ----------------------------------------------------------------------------------
886
+  (0.0ms) rollback transaction
887
+  (0.0ms) begin transaction
888
+ ---------------------------------------------------------------------------------------
889
+ Bootstrap4FormBuilderRadioCheckTest: test_form_group_label_and_label_class_are_included
890
+ ---------------------------------------------------------------------------------------
891
+  (0.0ms) rollback transaction
892
+  (0.0ms) begin transaction
893
+ -------------------------------------------------------------------------------
894
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_inline_is_wrapped_correctly
895
+ -------------------------------------------------------------------------------
896
+  (0.0ms) rollback transaction
897
+  (0.0ms) begin transaction
898
+ ----------------------------------------------------------------
899
+ Bootstrap4FormBuilderTest: test_phone_field_is_wrapped_correctly
900
+ ----------------------------------------------------------------
901
+  (0.0ms) rollback transaction
902
+  (0.3ms) begin transaction
903
+ -----------------------------------------------------------
904
+ Bootstrap4FormBuilderTest: test_submit_is_classed_correctly
905
+ -----------------------------------------------------------
906
+  (0.0ms) rollback transaction
907
+  (0.0ms) begin transaction
908
+ ------------------------------------------------------------
909
+ Bootstrap4FormBuilderTest: test_primary_is_classed_correctly
910
+ ------------------------------------------------------------
911
+  (0.0ms) rollback transaction
912
+  (0.0ms) begin transaction
913
+ --------------------------------------------------------------
914
+ Bootstrap4FormBuilderTest: test_text_area_is_wrapped_correctly
915
+ --------------------------------------------------------------
916
+  (0.0ms) rollback transaction
917
+  (0.0ms) begin transaction
918
+ --------------------------------------------------------------------
919
+ Bootstrap4FormBuilderTest: test_telephone_field_is_wrapped_correctly
920
+ --------------------------------------------------------------------
921
+  (0.0ms) rollback transaction
922
+  (0.0ms) begin transaction
923
+ --------------------------------------------------------------
924
+ Bootstrap4FormBuilderTest: test_url_field_is_wrapped_correctly
925
+ --------------------------------------------------------------
926
+  (0.0ms) rollback transaction
927
+  (0.0ms) begin transaction
928
+ -------------------------------------------------------------------
929
+ Bootstrap4FormBuilderTest: test_password_field_is_wrapped_correctly
930
+ -------------------------------------------------------------------
931
+  (0.0ms) rollback transaction
932
+  (0.0ms) begin transaction
933
+ ---------------------------------------------------------------
934
+ Bootstrap4FormBuilderTest: test_time_field_is_wrapped_correctly
935
+ ---------------------------------------------------------------
936
+  (0.0ms) rollback transaction
937
+  (0.0ms) begin transaction
938
+ -----------------------------------------------------------------------
939
+ Bootstrap4FormBuilderTest: test_gridded_form_field_is_wrapped_correctly
940
+ -----------------------------------------------------------------------
941
+  (0.0ms) rollback transaction
942
+  (0.0ms) begin transaction
943
+ ---------------------------------------------------------------
944
+ Bootstrap4FormBuilderTest: test_date_field_is_wrapped_correctly
945
+ ---------------------------------------------------------------
946
+  (0.0ms) rollback transaction
947
+  (0.0ms) begin transaction
948
+ ----------------------------------------------------------------
949
+ Bootstrap4FormBuilderTest: test_email_field_is_wrapped_correctly
950
+ ----------------------------------------------------------------
951
+  (0.0ms) rollback transaction
952
+  (0.0ms) begin transaction
953
+ -----------------------------------------------------------------
954
+ Bootstrap4FormBuilderTest: test_number_field_is_wrapped_correctly
955
+ -----------------------------------------------------------------
956
+  (0.0ms) rollback transaction
957
+  (0.0ms) begin transaction
958
+ ----------------------------------------------------------------
959
+ Bootstrap4FormBuilderTest: test_range_field_is_wrapped_correctly
960
+ ----------------------------------------------------------------
961
+  (0.0ms) rollback transaction
962
+  (0.0ms) begin transaction
963
+ -------------------------------------------------------------
964
+ Bootstrap4FormBuilderTest: test_custom_label_text_is_included
965
+ -------------------------------------------------------------
966
+  (0.0ms) rollback transaction
967
+  (0.0ms) begin transaction
968
+ -----------------------------------------------------------------
969
+ Bootstrap4FormBuilderTest: test_custom_container_class_is_include
970
+ -----------------------------------------------------------------
971
+  (0.0ms) rollback transaction
972
+  (0.1ms) begin transaction
973
+ ---------------------------------------------------------------
974
+ Bootstrap4FormBuilderTest: test_text_field_is_wrapped_correctly
975
+ ---------------------------------------------------------------
976
+  (0.0ms) rollback transaction
977
+  (0.0ms) begin transaction
978
+ ----------------------------------------------------------------------
979
+ Bootstrap4FormBuilderTest: test_inline_text_field_is_wrapped_correctly
980
+ ----------------------------------------------------------------------
981
+  (0.0ms) rollback transaction
982
+  (0.0ms) begin transaction
983
+ ----------------------------------------------------------------
984
+ Bootstrap4FormBuilderTest: test_color_field_is_wrapped_correctly
985
+ ----------------------------------------------------------------
986
+  (0.0ms) rollback transaction
987
+  (0.0ms) begin transaction
988
+ -----------------------------------------------------------------
989
+ Bootstrap4FormBuilderTest: test_search_field_is_wrapped_correctly
990
+ -----------------------------------------------------------------
991
+  (0.0ms) rollback transaction
992
+  (0.0ms) begin transaction
993
+ --------------------------------------------------------------
994
+ Bootstrap4FormBuilderTest: test_label_is_hidden_when_requested
995
+ --------------------------------------------------------------
996
+  (0.0ms) rollback transaction
997
+  (0.0ms) begin transaction
998
+ ----------------------------------------------------------------
999
+ Bootstrap4FormBuilderTest: test_month_field_is_wrapped_correctly
1000
+ ----------------------------------------------------------------
1001
+  (0.0ms) rollback transaction
1002
+  (0.0ms) begin transaction
1003
+ --------------------------------------------------------------
1004
+ Bootstrap4FormBuilderTest: test_custom_label_class_is_included
1005
+ --------------------------------------------------------------
1006
+  (0.0ms) rollback transaction
1007
+  (0.0ms) begin transaction
1008
+ ---------------------------------------------------------------
1009
+ Bootstrap4FormBuilderTest: test_week_field_is_wrapped_correctly
1010
+ ---------------------------------------------------------------
1011
+  (0.0ms) rollback transaction
1012
+  (0.0ms) begin transaction
1013
+ -------------------------------------------------------------------------
1014
+ Bootstrap4FormBuilderTest: test_datetime_local_field_is_wrapped_correctly
1015
+ -------------------------------------------------------------------------
1016
+  (0.0ms) rollback transaction
1017
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1018
+  (0.1ms) begin transaction
1019
+ -------------------------------------------------------------------------
1020
+ Bootstrap4FormErrorTest: test_text_field_with_errors_is_wrapped_correctly
1021
+ -------------------------------------------------------------------------
1022
+  (0.1ms) rollback transaction
1023
+  (0.1ms) begin transaction
1024
+ ----------------------------------------------------------------------------------------
1025
+ Bootstrap4FormErrorTest: test_alert_message_with_error_summary_produces_the_correct_html
1026
+ ----------------------------------------------------------------------------------------
1027
+  (0.0ms) rollback transaction
1028
+  (0.0ms) begin transaction
1029
+ ---------------------------------------------------------------------
1030
+ Bootstrap4FormErrorTest: test_error_summary_produces_the_correct_html
1031
+ ---------------------------------------------------------------------
1032
+  (0.0ms) rollback transaction
1033
+  (0.0ms) begin transaction
1034
+ --------------------------------------------------------------------------------
1035
+ Bootstrap4FormErrorTest: test_text_field_with_errors_includes_inline-error-class
1036
+ --------------------------------------------------------------------------------
1037
+  (0.0ms) rollback transaction
1038
+  (0.0ms) begin transaction
1039
+ --------------------------------------------------------------------------
1040
+ Bootstrap4FormErrorTest: test_email_field_with_errors_is_wrapped_correctly
1041
+ --------------------------------------------------------------------------
1042
+  (0.0ms) rollback transaction
1043
+  (0.0ms) begin transaction
1044
+ ---------------------------------------------------------------------
1045
+ Bootstrap4FormErrorTest: test_alert_message_produces_the_correct_html
1046
+ ---------------------------------------------------------------------
1047
+  (0.0ms) rollback transaction
1048
+  (0.0ms) begin transaction
1049
+ ------------------------------------------------------------------------------------------------
1050
+ Bootstrap4FormErrorTest: test_text_field_with_errors,_without_inline_errors_is_wrapped_correctly
1051
+ ------------------------------------------------------------------------------------------------
1052
+  (0.0ms) rollback transaction
1053
+  (0.0ms) begin transaction
1054
+ ------------------------------------------------------------
1055
+ Bootstrap4FormBuilderTest: test_primary_is_classed_correctly
1056
+ ------------------------------------------------------------
1057
+  (0.0ms) rollback transaction
1058
+  (0.0ms) begin transaction
1059
+ ----------------------------------------------------------------
1060
+ Bootstrap4FormBuilderTest: test_phone_field_is_wrapped_correctly
1061
+ ----------------------------------------------------------------
1062
+  (0.0ms) rollback transaction
1063
+  (0.0ms) begin transaction
1064
+ -----------------------------------------------------------------
1065
+ Bootstrap4FormBuilderTest: test_search_field_is_wrapped_correctly
1066
+ -----------------------------------------------------------------
1067
+  (0.0ms) rollback transaction
1068
+  (0.0ms) begin transaction
1069
+ ---------------------------------------------------------------
1070
+ Bootstrap4FormBuilderTest: test_date_field_is_wrapped_correctly
1071
+ ---------------------------------------------------------------
1072
+  (0.0ms) rollback transaction
1073
+  (0.0ms) begin transaction
1074
+ ---------------------------------------------------------------
1075
+ Bootstrap4FormBuilderTest: test_week_field_is_wrapped_correctly
1076
+ ---------------------------------------------------------------
1077
+  (0.0ms) rollback transaction
1078
+  (0.0ms) begin transaction
1079
+ --------------------------------------------------------------
1080
+ Bootstrap4FormBuilderTest: test_custom_label_class_is_included
1081
+ --------------------------------------------------------------
1082
+  (0.0ms) rollback transaction
1083
+  (0.0ms) begin transaction
1084
+ --------------------------------------------------------------------
1085
+ Bootstrap4FormBuilderTest: test_telephone_field_is_wrapped_correctly
1086
+ --------------------------------------------------------------------
1087
+  (0.0ms) rollback transaction
1088
+  (0.0ms) begin transaction
1089
+ ----------------------------------------------------------------
1090
+ Bootstrap4FormBuilderTest: test_range_field_is_wrapped_correctly
1091
+ ----------------------------------------------------------------
1092
+  (0.0ms) rollback transaction
1093
+  (0.1ms) begin transaction
1094
+ -------------------------------------------------------------
1095
+ Bootstrap4FormBuilderTest: test_custom_label_text_is_included
1096
+ -------------------------------------------------------------
1097
+  (0.0ms) rollback transaction
1098
+  (0.0ms) begin transaction
1099
+ -----------------------------------------------------------
1100
+ Bootstrap4FormBuilderTest: test_submit_is_classed_correctly
1101
+ -----------------------------------------------------------
1102
+  (0.0ms) rollback transaction
1103
+  (0.0ms) begin transaction
1104
+ --------------------------------------------------------------
1105
+ Bootstrap4FormBuilderTest: test_label_is_hidden_when_requested
1106
+ --------------------------------------------------------------
1107
+  (0.0ms) rollback transaction
1108
+  (0.0ms) begin transaction
1109
+ -----------------------------------------------------------------
1110
+ Bootstrap4FormBuilderTest: test_number_field_is_wrapped_correctly
1111
+ -----------------------------------------------------------------
1112
+  (0.0ms) rollback transaction
1113
+  (0.0ms) begin transaction
1114
+ ----------------------------------------------------------------
1115
+ Bootstrap4FormBuilderTest: test_color_field_is_wrapped_correctly
1116
+ ----------------------------------------------------------------
1117
+  (0.0ms) rollback transaction
1118
+  (0.0ms) begin transaction
1119
+ -------------------------------------------------------------------------
1120
+ Bootstrap4FormBuilderTest: test_datetime_local_field_is_wrapped_correctly
1121
+ -------------------------------------------------------------------------
1122
+  (0.0ms) rollback transaction
1123
+  (0.1ms) begin transaction
1124
+ --------------------------------------------------------------
1125
+ Bootstrap4FormBuilderTest: test_url_field_is_wrapped_correctly
1126
+ --------------------------------------------------------------
1127
+  (0.0ms) rollback transaction
1128
+  (0.0ms) begin transaction
1129
+ -----------------------------------------------------------------
1130
+ Bootstrap4FormBuilderTest: test_custom_container_class_is_include
1131
+ -----------------------------------------------------------------
1132
+  (0.0ms) rollback transaction
1133
+  (0.1ms) begin transaction
1134
+ ----------------------------------------------------------------------
1135
+ Bootstrap4FormBuilderTest: test_inline_text_field_is_wrapped_correctly
1136
+ ----------------------------------------------------------------------
1137
+  (0.0ms) rollback transaction
1138
+  (0.0ms) begin transaction
1139
+ ----------------------------------------------------------------
1140
+ Bootstrap4FormBuilderTest: test_month_field_is_wrapped_correctly
1141
+ ----------------------------------------------------------------
1142
+  (0.0ms) rollback transaction
1143
+  (0.0ms) begin transaction
1144
+ -----------------------------------------------------------------------
1145
+ Bootstrap4FormBuilderTest: test_gridded_form_field_is_wrapped_correctly
1146
+ -----------------------------------------------------------------------
1147
+  (0.0ms) rollback transaction
1148
+  (0.0ms) begin transaction
1149
+ --------------------------------------------------------------
1150
+ Bootstrap4FormBuilderTest: test_text_area_is_wrapped_correctly
1151
+ --------------------------------------------------------------
1152
+  (0.0ms) rollback transaction
1153
+  (0.0ms) begin transaction
1154
+ ---------------------------------------------------------------
1155
+ Bootstrap4FormBuilderTest: test_text_field_is_wrapped_correctly
1156
+ ---------------------------------------------------------------
1157
+  (0.0ms) rollback transaction
1158
+  (0.0ms) begin transaction
1159
+ ---------------------------------------------------------------
1160
+ Bootstrap4FormBuilderTest: test_time_field_is_wrapped_correctly
1161
+ ---------------------------------------------------------------
1162
+  (0.0ms) rollback transaction
1163
+  (0.0ms) begin transaction
1164
+ ----------------------------------------------------------------
1165
+ Bootstrap4FormBuilderTest: test_email_field_is_wrapped_correctly
1166
+ ----------------------------------------------------------------
1167
+  (0.0ms) rollback transaction
1168
+  (0.0ms) begin transaction
1169
+ -------------------------------------------------------------------
1170
+ Bootstrap4FormBuilderTest: test_password_field_is_wrapped_correctly
1171
+ -------------------------------------------------------------------
1172
+  (0.0ms) rollback transaction
1173
+  (0.0ms) begin transaction
1174
+ ---------------------------------------------------------------------------
1175
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_is_wrapped_correctly
1176
+ ---------------------------------------------------------------------------
1177
+  (0.0ms) rollback transaction
1178
+  (0.0ms) begin transaction
1179
+ ----------------------------------------------------------------------------------
1180
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_inline_is_wrapped_correctly
1181
+ ----------------------------------------------------------------------------------
1182
+  (0.0ms) rollback transaction
1183
+  (0.0ms) begin transaction
1184
+ ---------------------------------------------------------------------------------------
1185
+ Bootstrap4FormBuilderRadioCheckTest: test_form_group_label_and_label_class_are_included
1186
+ ---------------------------------------------------------------------------------------
1187
+  (0.0ms) rollback transaction
1188
+  (0.0ms) begin transaction
1189
+ ------------------------------------------------------------------------
1190
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_is_wrapped_correctly
1191
+ ------------------------------------------------------------------------
1192
+  (0.0ms) rollback transaction
1193
+  (0.0ms) begin transaction
1194
+ -------------------------------------------------------------------------------
1195
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_inline_is_wrapped_correctly
1196
+ -------------------------------------------------------------------------------
1197
+  (0.0ms) rollback transaction
1198
+  (0.0ms) begin transaction
1199
+ --------------------------------------------------
1200
+ Bootstap4FormBuilderHelperTest: test_default_forms
1201
+ --------------------------------------------------
1202
+  (0.0ms) rollback transaction
1203
+  (0.0ms) begin transaction
1204
+ --------------------------------------------------
1205
+ Bootstap4FormBuilderHelperTest: test_gridded_forms
1206
+ --------------------------------------------------
1207
+  (0.0ms) rollback transaction
1208
+  (0.0ms) begin transaction
1209
+ -------------------------------------------------
1210
+ Bootstap4FormBuilderHelperTest: test_inline_forms
1211
+ -------------------------------------------------
1212
+  (0.0ms) rollback transaction
1213
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1214
+  (0.1ms) begin transaction
1215
+ ----------------------------------------------------------------------------------------
1216
+ Bootstrap4FormErrorTest: test_alert_message_with_error_summary_produces_the_correct_html
1217
+ ----------------------------------------------------------------------------------------
1218
+  (0.0ms) rollback transaction
1219
+  (0.0ms) begin transaction
1220
+ -------------------------------------------------------------------------
1221
+ Bootstrap4FormErrorTest: test_text_field_with_errors_is_wrapped_correctly
1222
+ -------------------------------------------------------------------------
1223
+  (0.0ms) rollback transaction
1224
+  (0.0ms) begin transaction
1225
+ ------------------------------------------------------------------------------------------------
1226
+ Bootstrap4FormErrorTest: test_text_field_with_errors,_without_inline_errors_is_wrapped_correctly
1227
+ ------------------------------------------------------------------------------------------------
1228
+  (0.0ms) rollback transaction
1229
+  (0.0ms) begin transaction
1230
+ ---------------------------------------------------------------------
1231
+ Bootstrap4FormErrorTest: test_error_summary_produces_the_correct_html
1232
+ ---------------------------------------------------------------------
1233
+  (0.0ms) rollback transaction
1234
+  (0.0ms) begin transaction
1235
+ --------------------------------------------------------------------------
1236
+ Bootstrap4FormErrorTest: test_email_field_with_errors_is_wrapped_correctly
1237
+ --------------------------------------------------------------------------
1238
+  (0.0ms) rollback transaction
1239
+  (0.0ms) begin transaction
1240
+ ---------------------------------------------------------------------
1241
+ Bootstrap4FormErrorTest: test_alert_message_produces_the_correct_html
1242
+ ---------------------------------------------------------------------
1243
+  (0.0ms) rollback transaction
1244
+  (0.0ms) begin transaction
1245
+ --------------------------------------------------------------------------------
1246
+ Bootstrap4FormErrorTest: test_text_field_with_errors_includes_inline-error-class
1247
+ --------------------------------------------------------------------------------
1248
+  (0.0ms) rollback transaction
1249
+  (0.0ms) begin transaction
1250
+ ------------------------------------------------------------
1251
+ Bootstrap4FormBuilderTest: test_primary_is_classed_correctly
1252
+ ------------------------------------------------------------
1253
+  (0.0ms) rollback transaction
1254
+  (0.0ms) begin transaction
1255
+ ----------------------------------------------------------------
1256
+ Bootstrap4FormBuilderTest: test_range_field_is_wrapped_correctly
1257
+ ----------------------------------------------------------------
1258
+  (0.0ms) rollback transaction
1259
+  (0.0ms) begin transaction
1260
+ ---------------------------------------------------------------
1261
+ Bootstrap4FormBuilderTest: test_week_field_is_wrapped_correctly
1262
+ ---------------------------------------------------------------
1263
+  (0.0ms) rollback transaction
1264
+  (0.0ms) begin transaction
1265
+ ----------------------------------------------------------------
1266
+ Bootstrap4FormBuilderTest: test_color_field_is_wrapped_correctly
1267
+ ----------------------------------------------------------------
1268
+  (0.0ms) rollback transaction
1269
+  (0.0ms) begin transaction
1270
+ ---------------------------------------------------------------
1271
+ Bootstrap4FormBuilderTest: test_time_field_is_wrapped_correctly
1272
+ ---------------------------------------------------------------
1273
+  (0.0ms) rollback transaction
1274
+  (0.0ms) begin transaction
1275
+ ---------------------------------------------------------------
1276
+ Bootstrap4FormBuilderTest: test_date_field_is_wrapped_correctly
1277
+ ---------------------------------------------------------------
1278
+  (0.0ms) rollback transaction
1279
+  (0.0ms) begin transaction
1280
+ ---------------------------------------------------------------
1281
+ Bootstrap4FormBuilderTest: test_text_field_is_wrapped_correctly
1282
+ ---------------------------------------------------------------
1283
+  (0.0ms) rollback transaction
1284
+  (0.0ms) begin transaction
1285
+ ----------------------------------------------------------------
1286
+ Bootstrap4FormBuilderTest: test_month_field_is_wrapped_correctly
1287
+ ----------------------------------------------------------------
1288
+  (0.0ms) rollback transaction
1289
+  (0.0ms) begin transaction
1290
+ ----------------------------------------------------------------------
1291
+ Bootstrap4FormBuilderTest: test_inline_text_field_is_wrapped_correctly
1292
+ ----------------------------------------------------------------------
1293
+  (0.0ms) rollback transaction
1294
+  (0.0ms) begin transaction
1295
+ -----------------------------------------------------------------
1296
+ Bootstrap4FormBuilderTest: test_search_field_is_wrapped_correctly
1297
+ -----------------------------------------------------------------
1298
+  (0.0ms) rollback transaction
1299
+  (0.0ms) begin transaction
1300
+ -------------------------------------------------------------
1301
+ Bootstrap4FormBuilderTest: test_custom_label_text_is_included
1302
+ -------------------------------------------------------------
1303
+  (0.0ms) rollback transaction
1304
+  (0.0ms) begin transaction
1305
+ --------------------------------------------------------------
1306
+ Bootstrap4FormBuilderTest: test_custom_label_class_is_included
1307
+ --------------------------------------------------------------
1308
+  (0.0ms) rollback transaction
1309
+  (0.0ms) begin transaction
1310
+ -------------------------------------------------------------------
1311
+ Bootstrap4FormBuilderTest: test_password_field_is_wrapped_correctly
1312
+ -------------------------------------------------------------------
1313
+  (0.0ms) rollback transaction
1314
+  (0.1ms) begin transaction
1315
+ ----------------------------------------------------------------
1316
+ Bootstrap4FormBuilderTest: test_phone_field_is_wrapped_correctly
1317
+ ----------------------------------------------------------------
1318
+  (0.0ms) rollback transaction
1319
+  (0.0ms) begin transaction
1320
+ --------------------------------------------------------------
1321
+ Bootstrap4FormBuilderTest: test_label_is_hidden_when_requested
1322
+ --------------------------------------------------------------
1323
+  (0.0ms) rollback transaction
1324
+  (0.0ms) begin transaction
1325
+ --------------------------------------------------------------
1326
+ Bootstrap4FormBuilderTest: test_url_field_is_wrapped_correctly
1327
+ --------------------------------------------------------------
1328
+  (0.0ms) rollback transaction
1329
+  (0.0ms) begin transaction
1330
+ -----------------------------------------------------------------------
1331
+ Bootstrap4FormBuilderTest: test_gridded_form_field_is_wrapped_correctly
1332
+ -----------------------------------------------------------------------
1333
+  (0.0ms) rollback transaction
1334
+  (0.0ms) begin transaction
1335
+ --------------------------------------------------------------
1336
+ Bootstrap4FormBuilderTest: test_text_area_is_wrapped_correctly
1337
+ --------------------------------------------------------------
1338
+  (0.0ms) rollback transaction
1339
+  (0.0ms) begin transaction
1340
+ ----------------------------------------------------------------
1341
+ Bootstrap4FormBuilderTest: test_email_field_is_wrapped_correctly
1342
+ ----------------------------------------------------------------
1343
+  (0.0ms) rollback transaction
1344
+  (0.0ms) begin transaction
1345
+ -------------------------------------------------------------------------
1346
+ Bootstrap4FormBuilderTest: test_datetime_local_field_is_wrapped_correctly
1347
+ -------------------------------------------------------------------------
1348
+  (0.0ms) rollback transaction
1349
+  (0.0ms) begin transaction
1350
+ -----------------------------------------------------------------
1351
+ Bootstrap4FormBuilderTest: test_number_field_is_wrapped_correctly
1352
+ -----------------------------------------------------------------
1353
+  (0.0ms) rollback transaction
1354
+  (0.0ms) begin transaction
1355
+ -----------------------------------------------------------
1356
+ Bootstrap4FormBuilderTest: test_submit_is_classed_correctly
1357
+ -----------------------------------------------------------
1358
+  (0.0ms) rollback transaction
1359
+  (0.0ms) begin transaction
1360
+ -----------------------------------------------------------------
1361
+ Bootstrap4FormBuilderTest: test_custom_container_class_is_include
1362
+ -----------------------------------------------------------------
1363
+  (0.0ms) rollback transaction
1364
+  (0.0ms) begin transaction
1365
+ --------------------------------------------------------------------
1366
+ Bootstrap4FormBuilderTest: test_telephone_field_is_wrapped_correctly
1367
+ --------------------------------------------------------------------
1368
+  (0.0ms) rollback transaction
1369
+  (0.0ms) begin transaction
1370
+ ----------------------------------------------------------------------------------
1371
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_inline_is_wrapped_correctly
1372
+ ----------------------------------------------------------------------------------
1373
+  (0.0ms) rollback transaction
1374
+  (0.0ms) begin transaction
1375
+ ---------------------------------------------------------------------------
1376
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_is_wrapped_correctly
1377
+ ---------------------------------------------------------------------------
1378
+  (0.1ms) rollback transaction
1379
+  (0.0ms) begin transaction
1380
+ ---------------------------------------------------------------------------------------
1381
+ Bootstrap4FormBuilderRadioCheckTest: test_form_group_label_and_label_class_are_included
1382
+ ---------------------------------------------------------------------------------------
1383
+  (0.0ms) rollback transaction
1384
+  (0.0ms) begin transaction
1385
+ ------------------------------------------------------------------------
1386
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_is_wrapped_correctly
1387
+ ------------------------------------------------------------------------
1388
+  (0.0ms) rollback transaction
1389
+  (0.0ms) begin transaction
1390
+ -------------------------------------------------------------------------------
1391
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_inline_is_wrapped_correctly
1392
+ -------------------------------------------------------------------------------
1393
+  (0.0ms) rollback transaction
1394
+  (0.0ms) begin transaction
1395
+ --------------------------------------------------
1396
+ Bootstap4FormBuilderHelperTest: test_default_forms
1397
+ --------------------------------------------------
1398
+  (0.0ms) rollback transaction
1399
+  (0.0ms) begin transaction
1400
+ --------------------------------------------------
1401
+ Bootstap4FormBuilderHelperTest: test_gridded_forms
1402
+ --------------------------------------------------
1403
+  (0.0ms) rollback transaction
1404
+  (0.0ms) begin transaction
1405
+ -------------------------------------------------
1406
+ Bootstap4FormBuilderHelperTest: test_inline_forms
1407
+ -------------------------------------------------
1408
+  (0.0ms) rollback transaction