bootstrap_form 2.4.0 → 2.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fe60ca26767d3411f6ab4560bfd8d05b28fed7f8
4
- data.tar.gz: 9af94d0bbd4bfafa9aef2882ea99d62c1f964f44
3
+ metadata.gz: 98448ee25ed71bb909e13459c79654ed91632613
4
+ data.tar.gz: 04293a32b4f4f4df867912bc5b4a5f15761f34ab
5
5
  SHA512:
6
- metadata.gz: 99b27dd6a7278b1dd1f59db4fdf09c30d32ce7ebf292623287ee1014543e857eb208060a524db81434475c05b1aa6350fecdc1e374cc2332054415bdf4bc54fb
7
- data.tar.gz: 0aaf0b5a28ecf27f2cb51a6792bdb80bf15bda58774300236d4b3afa522e21ff4535073913cc6b1735f6c0b5358c2e8619eaa459d7754db8cd37203c6580d90c
6
+ metadata.gz: 84ce61f0bb04a14653410dfccead54b37aab0bb42dd98f44c35ad02c11d404b8dde1ead292081501f9c63dacb2e7494d548f318e30c71c76741f30cd455fb1e7
7
+ data.tar.gz: d1b0cd799afb0999f5dd965a128bade9f808e68660084d29abcf60f04012f06101802127908a0c0ddf15f20dd676200b9c1e705a3c594a6c9068c9119ad74229
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- [![Build Status](https://travis-ci.org/bootstrap-ruby/rails-bootstrap-forms.png)](https://travis-ci.org/bootstrap-ruby/rails-bootstrap-forms)
1
+ [![Build Status](https://travis-ci.org/bootstrap-ruby/rails-bootstrap-forms.svg?branch=master)](https://travis-ci.org/bootstrap-ruby/rails-bootstrap-forms)
2
2
  [![Gem Version](https://badge.fury.io/rb/bootstrap_form.svg)](http://badge.fury.io/rb/bootstrap_form)
3
3
 
4
4
  # Rails Bootstrap Forms
@@ -143,7 +143,7 @@ To add custom classes to the field's label:
143
143
  #### Required Fields
144
144
 
145
145
  A label that is associated with a required field is automatically annotated with
146
- a `required` CSS class. You are free to add any appropriate CSS to style
146
+ a `required` CSS class. You are free to add any appropriate CSS to style
147
147
  required fields as desired. One example would be to automatically add an
148
148
  asterisk to the end of the label:
149
149
 
@@ -158,6 +158,20 @@ validator with the associated model attribute. Presently this is one of:
158
158
  ActiveRecord::Validations::PresenceValidator or
159
159
  ActiveModel::Validations::PresenceValidator.
160
160
 
161
+ In cases where this behavior is undesirable, use the `skip_required` option:
162
+
163
+ ```erb
164
+ <%= f.password_field :password, label: "New Password", skip_required: true %>
165
+ ```
166
+
167
+ ### Input Elements / Controls
168
+
169
+ To specify the class of the generated input, use the `control_class` option:
170
+
171
+ ```erb
172
+ <%= f.text_field :email, control_class: "custom-class" %>
173
+ ```
174
+
161
175
  ### Help Text
162
176
 
163
177
  To add help text, use the `help` option:
@@ -216,6 +230,12 @@ You can also prepend and append buttons. Note: The buttons must contain the
216
230
  <%= f.text_field :search, append: link_to("Go", "#", class: "btn btn-default") %>
217
231
  ```
218
232
 
233
+ To add a class to the input group wrapper, use `:input_group_class` option.
234
+
235
+ ```erb
236
+ <%= f.email_field :email, append: f.primary('Subscribe'), input_group_class: 'input-group-lg' %>
237
+ ```
238
+
219
239
  ### Additional Form Group Attributes
220
240
 
221
241
  If you want to add an additional css class or any other attribute to the form group div, you can use
@@ -8,4 +8,6 @@ module BootstrapForm
8
8
  end
9
9
  end
10
10
 
11
- ActionView::Base.send :include, BootstrapForm::Helper
11
+ ActiveSupport.on_load(:action_view) do
12
+ include BootstrapForm::Helper
13
+ end
@@ -117,7 +117,13 @@ module BootstrapForm
117
117
  html.concat(" ").concat(label_content || (object && object.class.human_attribute_name(name)) || name.to_s.humanize)
118
118
 
119
119
  label_name = name
120
- label_name = "#{name}_#{checked_value}" if options[:multiple]
120
+ # label's `for` attribute needs to match checkbox tag's id,
121
+ # IE sanitized value, IE
122
+ # https://github.com/rails/rails/blob/c57e7239a8b82957bcb07534cb7c1a3dcef71864/actionview/lib/action_view/helpers/tags/base.rb#L116-L118
123
+ if options[:multiple]
124
+ label_name =
125
+ "#{name}_#{checked_value.to_s.gsub(/\s/, "_").gsub(/[^-\w]/, "").downcase}"
126
+ end
121
127
 
122
128
  disabled_class = " disabled" if options[:disabled]
123
129
  label_class = options[:label_class]
@@ -342,7 +348,8 @@ module BootstrapForm
342
348
 
343
349
  form_group_options.merge!(label: {
344
350
  text: label_text,
345
- class: label_class
351
+ class: label_class,
352
+ skip_required: options.delete(:skip_required)
346
353
  })
347
354
  end
348
355
 
@@ -361,7 +368,9 @@ module BootstrapForm
361
368
  options[:for] = id if acts_like_form_tag
362
369
  classes = [options[:class], label_class]
363
370
  classes << (custom_label_col || label_col) if get_group_layout(group_layout) == :horizontal
364
- classes << "required" if required_attribute?(object, name)
371
+ unless options.delete(:skip_required)
372
+ classes << "required" if required_attribute?(object, name)
373
+ end
365
374
 
366
375
  options[:class] = classes.compact.join(" ")
367
376
 
@@ -60,12 +60,14 @@ module BootstrapForm
60
60
  end
61
61
 
62
62
  def prepend_and_append_input(options, &block)
63
- options = options.extract!(:prepend, :append)
63
+ options = options.extract!(:prepend, :append, :input_group_class)
64
+ input_group_class = ["input-group", options[:input_group_class]].compact.join(' ')
65
+
64
66
  input = capture(&block)
65
67
 
66
68
  input = content_tag(:span, options[:prepend], class: input_group_class(options[:prepend])) + input if options[:prepend]
67
69
  input << content_tag(:span, options[:append], class: input_group_class(options[:append])) if options[:append]
68
- input = content_tag(:div, input, class: "input-group") unless options.empty?
70
+ input = content_tag(:div, input, class: input_group_class) unless options.empty?
69
71
  input
70
72
  end
71
73
 
@@ -1,3 +1,3 @@
1
1
  module BootstrapForm
2
- VERSION = "2.4.0".freeze
2
+ VERSION = "2.5.0".freeze
3
3
  end
@@ -89,6 +89,13 @@ class BootstrapCheckboxTest < ActionView::TestCase
89
89
  assert_equal expected, @builder.collection_check_boxes(:misc, collection, :id, :street, checked: collection)
90
90
  end
91
91
 
92
+ test 'collection_check_boxes sanitizes values when generating label `for`' do
93
+ collection = [Address.new(id: 1, street: 'Foo St')]
94
+ expected = %{<input id="user_misc" multiple="multiple" name="user[misc][]" type="hidden" value="" /><div class="form-group"><label class="control-label" for="user_misc">Misc</label><div class="checkbox"><label for="user_misc_foo_st"><input id="user_misc_foo_st" name="user[misc][]" type="checkbox" value="Foo St" /> Foo St</label></div></div>}
95
+
96
+ assert_equal expected, @builder.collection_check_boxes(:misc, collection, :street, :street)
97
+ end
98
+
92
99
  test 'collection_check_boxes renders multiple checkboxes with labels defined by Proc :text_method correctly' do
93
100
  collection = [Address.new(id: 1, street: 'Foo'), Address.new(id: 2, street: 'Bar')]
94
101
  expected = %{<input id="user_misc" multiple="multiple" name="user[misc][]" type="hidden" value="" /><div class="form-group"><label class="control-label" for="user_misc">Misc</label><div class="checkbox"><label for="user_misc_1"><input id="user_misc_1" name="user[misc][]" type="checkbox" value="1" /> ooF</label></div><div class="checkbox"><label for="user_misc_2"><input id="user_misc_2" name="user[misc][]" type="checkbox" value="2" /> raB</label></div></div>}
@@ -42,6 +42,11 @@ class BootstrapFormGroupTest < ActionView::TestCase
42
42
  assert_equal expected, @builder.text_field(:email, skip_label: true)
43
43
  end
44
44
 
45
+ test "preventing a label from having the required class" do
46
+ expected = %{<div class="form-group"><label class="control-label" for="user_email">Email</label><input class="form-control" id="user_email" name="user[email]" type="text" value="steve@example.com" /></div>}
47
+ assert_equal expected, @builder.text_field(:email, skip_required: true)
48
+ end
49
+
45
50
  test "adding prepend text" do
46
51
  expected = %{<div class="form-group"><label class="control-label required" for="user_email">Email</label><div class="input-group"><span class="input-group-addon">@</span><input class="form-control" id="user_email" name="user[email]" type="text" value="steve@example.com" /></div></div>}
47
52
  assert_equal expected, @builder.text_field(:email, prepend: '@')
@@ -276,4 +281,9 @@ class BootstrapFormGroupTest < ActionView::TestCase
276
281
  expected = %{<div class="form-group"><div class="col-sm-9 col-sm-offset-3">test</div></div>}
277
282
  assert_equal expected, output
278
283
  end
284
+
285
+ test ":input_group_class should apply to input-group" do
286
+ expected = %{<div class="form-group"><label class="control-label required" for="user_email">Email</label><div class="input-group input-group-lg"><input class="form-control" id="user_email" name="user[email]" type="email" value="steve@example.com" /><span class="input-group-btn"><input class="btn btn-primary" name="commit" type="submit" value="Subscribe" /></span></div></div>}
287
+ assert_equal expected, @builder.email_field(:email, append: @builder.primary('Subscribe'), input_group_class: 'input-group-lg')
288
+ end
279
289
  end
@@ -18107,5 +18107,2281 @@ BootstrapSelectsTest: test_time_selects_with_options_are_wrapped_correctly
18107
18107
   (0.0ms) begin transaction
18108
18108
  ------------------------------------------------------------------
18109
18109
  BootstrapSelectsTest: test_time_zone_selects_are_wrapped_correctly
18110
+ ------------------------------------------------------------------
18111
+  (0.1ms) rollback transaction
18112
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
18113
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
18114
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
18115
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
18116
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
18117
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
18118
+  (0.2ms) begin transaction
18119
+ -------------------------------------------------------------------------
18120
+ BootstrapCheckboxTest: test_check_box_accepts_a_block_to_define_the_label
18121
+ -------------------------------------------------------------------------
18122
+  (0.1ms) rollback transaction
18123
+  (0.1ms) begin transaction
18124
+ ------------------------------------------------------------------
18125
+ BootstrapCheckboxTest: test_check_box_accepts_a_custom_label_class
18126
+ ------------------------------------------------------------------
18127
+  (0.1ms) rollback transaction
18128
+  (0.0ms) begin transaction
18129
+ ----------------------------------------------------------
18130
+ BootstrapCheckboxTest: test_check_box_is_wrapped_correctly
18131
+ ----------------------------------------------------------
18132
+  (0.0ms) rollback transaction
18133
+  (0.0ms) begin transaction
18134
+ -------------------------------------------------------
18135
+ BootstrapCheckboxTest: test_check_box_label_allows_html
18136
+ -------------------------------------------------------
18137
+  (0.0ms) rollback transaction
18138
+  (0.0ms) begin transaction
18139
+ ---------------------------------------------------------------------------------------------
18140
+ BootstrapCheckboxTest: test_check_box_responds_to_checked_value_and_unchecked_value_arguments
18141
+ ---------------------------------------------------------------------------------------------
18142
+  (0.0ms) rollback transaction
18143
+  (0.0ms) begin transaction
18144
+ --------------------------------------------------------------------------------------
18145
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_inline_checkboxes_correctly
18146
+ --------------------------------------------------------------------------------------
18147
+  (0.1ms) rollback transaction
18148
+  (0.0ms) begin transaction
18149
+ ----------------------------------------------------------------------------------------
18150
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_correctly
18151
+ ----------------------------------------------------------------------------------------
18152
+  (0.0ms) rollback transaction
18153
+  (0.0ms) begin transaction
18154
+ ---------------------------------------------------------------------------------------------------------------------------------
18155
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_with_labels_defined_by_Proc_:text_method_correctly
18156
+ ---------------------------------------------------------------------------------------------------------------------------------
18157
+  (0.0ms) rollback transaction
18158
+  (0.0ms) begin transaction
18159
+ -----------------------------------------------------------------------------------------------------------------------------------
18160
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_with_labels_defined_by_lambda_:text_method_correctly
18161
+ -----------------------------------------------------------------------------------------------------------------------------------
18162
+  (0.0ms) rollback transaction
18163
+  (0.0ms) begin transaction
18164
+ ----------------------------------------------------------------------------------------------------------------------------------
18165
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_with_values_defined_by_Proc_:value_method_correctly
18166
+ ----------------------------------------------------------------------------------------------------------------------------------
18167
+  (0.0ms) rollback transaction
18168
+  (0.0ms) begin transaction
18169
+ ------------------------------------------------------------------------------------------------------------------------------------
18170
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_with_values_defined_by_lambda_:value_method_correctly
18171
+ ------------------------------------------------------------------------------------------------------------------------------------
18172
+  (0.0ms) rollback transaction
18173
+  (0.0ms) begin transaction
18174
+ -----------------------------------------------------------------------------------
18175
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_the_form_group_correctly
18176
+ -----------------------------------------------------------------------------------
18177
+  (0.1ms) rollback transaction
18178
+  (0.0ms) begin transaction
18179
+ ----------------------------------------------------------------------------------------
18180
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_with_checked_option_correctly
18181
+ ----------------------------------------------------------------------------------------
18182
+  (0.1ms) rollback transaction
18183
+  (0.1ms) begin transaction
18184
+ ----------------------------------------------------------------------------------------------------------------
18185
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_with_checked_option_correctly_with_Proc_:value_method
18186
+ ----------------------------------------------------------------------------------------------------------------
18187
+  (0.1ms) rollback transaction
18188
+  (0.1ms) begin transaction
18189
+ --------------------------------------------------------------------------------------------------
18190
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_with_multiple_checked_options_correctly
18191
+ --------------------------------------------------------------------------------------------------
18192
+  (0.1ms) rollback transaction
18193
+  (0.0ms) begin transaction
18194
+ ----------------------------------------------------------------------------------------------------------------------------
18195
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_with_multiple_checked_options_correctly_with_lambda_:value_method
18196
+ ----------------------------------------------------------------------------------------------------------------------------
18197
+  (0.0ms) rollback transaction
18198
+  (0.0ms) begin transaction
18199
+ -------------------------------------------------------------------------
18200
+ BootstrapCheckboxTest: test_disabled_check_box_has_proper_wrapper_classes
18201
+ -------------------------------------------------------------------------
18202
+  (0.1ms) rollback transaction
18203
+  (0.0ms) begin transaction
18204
+ -----------------------------------------------------
18205
+ BootstrapCheckboxTest: test_disabled_inline_check_box
18206
+ -----------------------------------------------------
18207
+  (0.0ms) rollback transaction
18208
+  (0.0ms) begin transaction
18209
+ ---------------------------------------------
18210
+ BootstrapCheckboxTest: test_inline_checkboxes
18211
+ ---------------------------------------------
18212
+  (0.0ms) rollback transaction
18213
+  (0.1ms) begin transaction
18214
+ ---------------------------------------------------------------------
18215
+ BootstrapCheckboxTest: test_inline_checkboxes_with_custom_label_class
18216
+ ---------------------------------------------------------------------
18217
+  (0.0ms) rollback transaction
18218
+  (0.1ms) begin transaction
18219
+ --------------------------------------------------------------------------
18220
+ BootstrapFieldsTest: test_bootstrap_form_for_helper_works_for_associations
18221
+ --------------------------------------------------------------------------
18222
+  (0.1ms) rollback transaction
18223
+  (0.0ms) begin transaction
18224
+ ----------------------------------------------------------------------------------------
18225
+ BootstrapFieldsTest: test_bootstrap_form_for_helper_works_for_serialized_hash_attributes
18226
+ ----------------------------------------------------------------------------------------
18227
+  (0.0ms) rollback transaction
18228
+  (0.0ms) begin transaction
18229
+ ------------------------------------------------------------
18230
+ BootstrapFieldsTest: test_color_fields_are_wrapped_correctly
18231
+ ------------------------------------------------------------
18232
+  (0.1ms) rollback transaction
18233
+  (0.1ms) begin transaction
18234
+ -----------------------------------------------------------
18235
+ BootstrapFieldsTest: test_date_fields_are_wrapped_correctly
18236
+ -----------------------------------------------------------
18237
+  (0.1ms) rollback transaction
18238
+  (0.0ms) begin transaction
18239
+ ----------------------------------------------------------------
18240
+ BootstrapFieldsTest: test_date_time_fields_are_wrapped_correctly
18241
+ ----------------------------------------------------------------
18242
+  (0.0ms) rollback transaction
18243
+  (0.0ms) begin transaction
18244
+ ----------------------------------------------------------------------
18245
+ BootstrapFieldsTest: test_date_time_local_fields_are_wrapped_correctly
18246
+ ----------------------------------------------------------------------
18247
+  (0.1ms) rollback transaction
18248
+  (0.0ms) begin transaction
18249
+ ------------------------------------------------------------
18250
+ BootstrapFieldsTest: test_email_fields_are_wrapped_correctly
18251
+ ------------------------------------------------------------
18252
+  (0.1ms) rollback transaction
18253
+  (0.0ms) begin transaction
18254
+ ------------------------------------------------------------------------------------------
18255
+ BootstrapFieldsTest: test_fields_for_correctly_passes_horizontal_style_from_parent_builder
18256
+ ------------------------------------------------------------------------------------------
18257
+  (0.0ms) rollback transaction
18258
+  (0.0ms) begin transaction
18259
+ --------------------------------------------------------------------------------------
18260
+ BootstrapFieldsTest: test_fields_for_correctly_passes_inline_style_from_parent_builder
18261
+ --------------------------------------------------------------------------------------
18262
+  (0.0ms) rollback transaction
18263
+  (0.0ms) begin transaction
18264
+ -----------------------------------------------------------
18265
+ BootstrapFieldsTest: test_file_fields_are_wrapped_correctly
18266
+ -----------------------------------------------------------
18267
+  (0.1ms) rollback transaction
18268
+  (0.1ms) begin transaction
18269
+ -----------------------------------------------------
18270
+ BootstrapFieldsTest: test_hidden_fields_are_supported
18271
+ -----------------------------------------------------
18272
+  (0.0ms) rollback transaction
18273
+  (0.0ms) begin transaction
18274
+ ------------------------------------------------------------------
18275
+ BootstrapFieldsTest: test_month_local_fields_are_wrapped_correctly
18276
+ ------------------------------------------------------------------
18277
+  (0.1ms) rollback transaction
18278
+  (0.0ms) begin transaction
18279
+ -------------------------------------------------------------
18280
+ BootstrapFieldsTest: test_number_fields_are_wrapped_correctly
18281
+ -------------------------------------------------------------
18282
+  (0.1ms) rollback transaction
18283
+  (0.1ms) begin transaction
18284
+ ---------------------------------------------------------------
18285
+ BootstrapFieldsTest: test_password_fields_are_wrapped_correctly
18286
+ ---------------------------------------------------------------
18287
+  (0.1ms) rollback transaction
18288
+  (0.1ms) begin transaction
18289
+ ----------------------------------------------------------------------
18290
+ BootstrapFieldsTest: test_phone/telephone_fields_are_wrapped_correctly
18291
+ ----------------------------------------------------------------------
18292
+  (0.2ms) rollback transaction
18293
+  (0.0ms) begin transaction
18294
+ ------------------------------------------------------------
18295
+ BootstrapFieldsTest: test_range_fields_are_wrapped_correctly
18296
+ ------------------------------------------------------------
18297
+  (0.0ms) rollback transaction
18298
+  (0.0ms) begin transaction
18299
+ -------------------------------------------------------------
18300
+ BootstrapFieldsTest: test_search_fields_are_wrapped_correctly
18301
+ -------------------------------------------------------------
18302
+  (0.1ms) rollback transaction
18303
+  (0.0ms) begin transaction
18304
+ ----------------------------------------------------------
18305
+ BootstrapFieldsTest: test_text_areas_are_wrapped_correctly
18306
+ ----------------------------------------------------------
18307
+  (0.1ms) rollback transaction
18308
+  (0.0ms) begin transaction
18309
+ -----------------------------------------------------------
18310
+ BootstrapFieldsTest: test_text_fields_are_wrapped_correctly
18311
+ -----------------------------------------------------------
18312
+  (0.0ms) rollback transaction
18313
+  (0.0ms) begin transaction
18314
+ -----------------------------------------------------------
18315
+ BootstrapFieldsTest: test_time_fields_are_wrapped_correctly
18316
+ -----------------------------------------------------------
18317
+  (0.1ms) rollback transaction
18318
+  (0.0ms) begin transaction
18319
+ ----------------------------------------------------------
18320
+ BootstrapFieldsTest: test_url_fields_are_wrapped_correctly
18321
+ ----------------------------------------------------------
18322
+  (0.1ms) rollback transaction
18323
+  (0.1ms) begin transaction
18324
+ -----------------------------------------------------------
18325
+ BootstrapFieldsTest: test_week_fields_are_wrapped_correctly
18326
+ -----------------------------------------------------------
18327
+  (0.1ms) rollback transaction
18328
+  (0.0ms) begin transaction
18329
+ --------------------------------------------------------------------------------------------------------------
18330
+ BootstrapFormGroupTest: test_adding_a_custom_label_and_changing_the_label_text_via_the_html_options_label_hash
18331
+ --------------------------------------------------------------------------------------------------------------
18332
+  (0.4ms) rollback transaction
18333
+  (0.0ms) begin transaction
18334
+ ----------------------------------------------------------------------------------------
18335
+ BootstrapFormGroupTest: test_adding_a_custom_label_class_via_the_html_options_label_hash
18336
+ ----------------------------------------------------------------------------------------
18337
+  (0.0ms) rollback transaction
18338
+  (0.0ms) begin transaction
18339
+ --------------------------------------------------------------------------------------
18340
+ BootstrapFormGroupTest: test_adding_a_custom_label_class_via_the_label_class_parameter
18341
+ --------------------------------------------------------------------------------------
18342
+  (0.0ms) rollback transaction
18343
+  (0.0ms) begin transaction
18344
+ ------------------------------------------------------
18345
+ BootstrapFormGroupTest: test_adding_an_icon_to_a_field
18346
+ ------------------------------------------------------
18347
+  (0.0ms) rollback transaction
18348
+  (0.0ms) begin transaction
18349
+ -----------------------------------------------
18350
+ BootstrapFormGroupTest: test_adding_append_text
18351
+ -----------------------------------------------
18352
+  (0.0ms) rollback transaction
18353
+  (0.0ms) begin transaction
18354
+ ----------------------------------------------------------------
18355
+ BootstrapFormGroupTest: test_adding_both_prepend_and_append_text
18356
+ ----------------------------------------------------------------
18357
+  (0.0ms) rollback transaction
18358
+  (0.0ms) begin transaction
18359
+ ------------------------------------------------
18360
+ BootstrapFormGroupTest: test_adding_prepend_text
18361
+ ------------------------------------------------
18362
+  (0.0ms) rollback transaction
18363
+  (0.0ms) begin transaction
18364
+ ------------------------------------------------------------------------
18365
+ BootstrapFormGroupTest: test_adds_class_to_wrapped_form_group_by_a_field
18366
+ ------------------------------------------------------------------------
18367
+  (0.0ms) rollback transaction
18368
+  (0.0ms) begin transaction
18369
+ ------------------------------------------------------------------------------------
18370
+ BootstrapFormGroupTest: test_adds_class_to_wrapped_form_group_by_a_field_with_errors
18371
+ ------------------------------------------------------------------------------------
18372
+  (0.0ms) rollback transaction
18373
+  (0.1ms) begin transaction
18374
+ --------------------------------------------------------------------------------------------------------------------
18375
+ BootstrapFormGroupTest: test_adds_class_to_wrapped_form_group_by_a_field_with_errors_when_bootstrap_form_for_is_used
18376
+ --------------------------------------------------------------------------------------------------------------------
18377
+  (0.0ms) rollback transaction
18378
+  (0.0ms) begin transaction
18379
+ -----------------------------------------------------------------------------------
18380
+ BootstrapFormGroupTest: test_adds_data-attributes_(or_any_other_options)_to_wrapper
18381
+ -----------------------------------------------------------------------------------
18382
+  (0.0ms) rollback transaction
18383
+  (0.0ms) begin transaction
18384
+ ---------------------------------------------------------------------
18385
+ BootstrapFormGroupTest: test_adds_offset_for_form_group_without_label
18386
+ ---------------------------------------------------------------------
18387
+  (0.0ms) rollback transaction
18388
+  (0.0ms) begin transaction
18389
+ --------------------------------------------------------------------------------------------
18390
+ BootstrapFormGroupTest: test_adds_offset_for_form_group_without_label_but_specific_label_col
18391
+ --------------------------------------------------------------------------------------------
18392
+  (0.0ms) rollback transaction
18393
+  (0.0ms) begin transaction
18394
+ ------------------------------------------------------
18395
+ BootstrapFormGroupTest: test_append_and_prepend_button
18396
+ ------------------------------------------------------
18397
+  (0.0ms) rollback transaction
18398
+  (0.0ms) begin transaction
18399
+ ------------------------------------------------------------------------------------
18400
+ BootstrapFormGroupTest: test_changing_the_label_text_via_the_html_options_label_hash
18401
+ ------------------------------------------------------------------------------------
18402
+  (0.0ms) rollback transaction
18403
+  (0.0ms) begin transaction
18404
+ -----------------------------------------------------------------------------------
18405
+ BootstrapFormGroupTest: test_changing_the_label_text_via_the_label_option_parameter
18406
+ -----------------------------------------------------------------------------------
18407
+  (0.0ms) rollback transaction
18408
+  (0.0ms) begin transaction
18409
+ ------------------------------------------------------------
18410
+ BootstrapFormGroupTest: test_custom_form_group_layout_option
18411
+ ------------------------------------------------------------
18412
+  (0.1ms) rollback transaction
18413
+  (0.0ms) begin transaction
18414
+ ----------------------------------------------------------------------------------------------------
18415
+ BootstrapFormGroupTest: test_doesn't_throw_undefined_method_error_when_the_content_block_returns_nil
18416
+ ----------------------------------------------------------------------------------------------------
18417
+  (0.0ms) rollback transaction
18418
+  (0.0ms) begin transaction
18419
+ --------------------------------------------------------------------------
18420
+ BootstrapFormGroupTest: test_form_group_accepts_class_thorugh_options_hash
18421
+ --------------------------------------------------------------------------
18422
+  (0.0ms) rollback transaction
18423
+  (0.0ms) begin transaction
18424
+ -------------------------------------------------------------------------------------------------
18425
+ BootstrapFormGroupTest: test_form_group_accepts_class_thorugh_options_hash_without_needing_a_name
18426
+ -------------------------------------------------------------------------------------------------
18427
+  (0.1ms) rollback transaction
18428
+  (0.0ms) begin transaction
18429
+ ------------------------------------------------------------------------------------------------
18430
+ BootstrapFormGroupTest: test_form_group_adds_a_spacer_when_no_label_exists_for_a_horizontal_form
18431
+ ------------------------------------------------------------------------------------------------
18432
+  (0.0ms) rollback transaction
18433
+  (0.0ms) begin transaction
18434
+ -------------------------------------------------------------------------------------------------------------------
18435
+ BootstrapFormGroupTest: test_form_group_creates_a_valid_structure_and_allows_arbitrary_html_to_be_added_via_a_block
18436
+ -------------------------------------------------------------------------------------------------------------------
18437
+  (0.0ms) rollback transaction
18438
+  (0.0ms) begin transaction
18439
+ ---------------------------------------------------------------------------------------------------------------
18440
+ BootstrapFormGroupTest: test_form_group_overrides_the_label's_'class'_and_'for'_attributes_if_others_are_passed
18441
+ ---------------------------------------------------------------------------------------------------------------
18442
+  (0.0ms) rollback transaction
18443
+  (0.0ms) begin transaction
18444
+ ---------------------------------------------------------------------------------------------------------------
18445
+ BootstrapFormGroupTest: test_form_group_renders_the_"error"_class_and_message_corrrectly_when_object_is_invalid
18446
+ ---------------------------------------------------------------------------------------------------------------
18447
+  (0.0ms) rollback transaction
18448
+  (0.0ms) begin transaction
18449
+ -------------------------------------------------------------------
18450
+ BootstrapFormGroupTest: test_form_group_renders_the_label_correctly
18451
+ -------------------------------------------------------------------
18452
+  (0.0ms) rollback transaction
18453
+  (0.0ms) begin transaction
18454
+ ------------------------------------------------------------
18455
+ BootstrapFormGroupTest: test_help_messages_for_default_forms
18456
+ ------------------------------------------------------------
18457
+  (0.0ms) rollback transaction
18458
+  (0.0ms) begin transaction
18459
+ ---------------------------------------------------------------
18460
+ BootstrapFormGroupTest: test_help_messages_for_horizontal_forms
18461
+ ---------------------------------------------------------------
18462
+  (0.0ms) rollback transaction
18463
+  (0.0ms) begin transaction
18464
+ ----------------------------------------------------------------------------------------
18465
+ BootstrapFormGroupTest: test_help_messages_to_ignore_translation_when_user_disables_help
18466
+ ----------------------------------------------------------------------------------------
18467
+  (0.0ms) rollback transaction
18468
+  (0.0ms) begin transaction
18469
+ ------------------------------------------------------------------------
18470
+ BootstrapFormGroupTest: test_help_messages_to_look_up_I18n_automatically
18471
+ ------------------------------------------------------------------------
18472
+  (0.0ms) rollback transaction
18473
+  (0.0ms) begin transaction
18474
+ ----------------------------------------------------------------------------
18475
+ BootstrapFormGroupTest: test_help_messages_to_warn_about_deprecated_I18n_key
18476
+ ----------------------------------------------------------------------------
18477
+  (0.1ms) rollback transaction
18478
+  (0.0ms) begin transaction
18479
+ -------------------------------------------
18480
+ BootstrapFormGroupTest: test_hiding_a_label
18481
+ -------------------------------------------
18482
+  (0.0ms) rollback transaction
18483
+  (0.0ms) begin transaction
18484
+ ---------------------------------------------------------------------------------------
18485
+ BootstrapFormGroupTest: test_non-default_column_span_on_form_is_reflected_in_form_group
18486
+ ---------------------------------------------------------------------------------------
18487
+  (0.0ms) rollback transaction
18488
+  (0.0ms) begin transaction
18489
+ --------------------------------------------------------------------------
18490
+ BootstrapFormGroupTest: test_non-default_column_span_on_form_isn't_mutated
18491
+ --------------------------------------------------------------------------
18492
+  (0.0ms) rollback transaction
18493
+  (0.0ms) begin transaction
18494
+ ---------------------------------------------------------------------------------
18495
+ BootstrapFormGroupTest: test_passing_options_to_a_form_control_get_passed_through
18496
+ ---------------------------------------------------------------------------------
18497
+  (0.0ms) rollback transaction
18498
+  (0.0ms) begin transaction
18499
+ -------------------------------------------------------------------------------------------------
18500
+ BootstrapFormGroupTest: test_single_form_group_call_in_horizontal_form_should_not_be_smash_design
18501
+ -------------------------------------------------------------------------------------------------
18502
+  (0.0ms) rollback transaction
18503
+  (0.0ms) begin transaction
18504
+ ---------------------------------------------
18505
+ BootstrapFormGroupTest: test_skipping_a_label
18506
+ ---------------------------------------------
18507
+  (0.0ms) rollback transaction
18508
+  (0.0ms) begin transaction
18509
+ -------------------------------------------------------------------------------
18510
+ BootstrapFormTest: test_alert_message_allows_the_error_summary_to_be_turned_off
18511
+ -------------------------------------------------------------------------------
18512
+  (0.0ms) rollback transaction
18513
+  (0.1ms) begin transaction
18514
+ ----------------------------------------------------------------------------------------------------------------
18515
+ BootstrapFormTest: test_alert_message_allows_the_error_summary_to_be_turned_on_with_inline_errors_also_turned_on
18516
+ ----------------------------------------------------------------------------------------------------------------
18517
+  (0.0ms) rollback transaction
18518
+  (0.0ms) begin transaction
18519
+ --------------------------------------------------------------------------------------------------
18520
+ BootstrapFormTest: test_alert_message_contains_the_error_summary_when_inline_errors_are_turned_off
18521
+ --------------------------------------------------------------------------------------------------
18522
+  (0.0ms) rollback transaction
18523
+  (0.0ms) begin transaction
18524
+ ----------------------------------------------------------
18525
+ BootstrapFormTest: test_alert_message_is_wrapped_correctly
18526
+ ----------------------------------------------------------
18527
+  (0.1ms) rollback transaction
18528
+  (0.0ms) begin transaction
18529
+ --------------------------------------------------------
18530
+ BootstrapFormTest: test_allows_the_form_object_to_be_nil
18531
+ --------------------------------------------------------
18532
+  (0.0ms) rollback transaction
18533
+  (0.0ms) begin transaction
18534
+ ---------------------------------------------------------------
18535
+ BootstrapFormTest: test_bootstrap_form_tag_acts_like_a_form_tag
18536
+ ---------------------------------------------------------------
18537
+  (0.0ms) rollback transaction
18538
+  (0.0ms) begin transaction
18539
+ ------------------------------------------------------------------------------
18540
+ BootstrapFormTest: test_bootstrap_form_tag_allows_an_empty_name_for_checkboxes
18541
+ ------------------------------------------------------------------------------
18542
+  (0.0ms) rollback transaction
18543
+  (0.0ms) begin transaction
18544
+ --------------------------------------------------------------------------
18545
+ BootstrapFormTest: test_bootstrap_form_tag_does_not_clobber_custom_options
18546
+ --------------------------------------------------------------------------
18547
+  (0.0ms) rollback transaction
18548
+  (0.0ms) begin transaction
18549
+ ---------------------------------------------------------------------
18550
+ BootstrapFormTest: test_changing_the_class_name_for_the_alert_message
18551
+ ---------------------------------------------------------------------
18552
+  (0.0ms) rollback transaction
18553
+  (0.1ms) begin transaction
18554
+ ---------------------------------------------------------------
18555
+ BootstrapFormTest: test_custom_input_width_for_horizontal_forms
18556
+ ---------------------------------------------------------------
18557
+  (0.0ms) rollback transaction
18558
+  (0.0ms) begin transaction
18559
+ ---------------------------------------------------------------
18560
+ BootstrapFormTest: test_custom_label_width_for_horizontal_forms
18561
+ ---------------------------------------------------------------
18562
+  (0.0ms) rollback transaction
18563
+  (0.0ms) begin transaction
18564
+ -------------------------------------------
18565
+ BootstrapFormTest: test_default-style_forms
18566
+ -------------------------------------------
18567
+  (0.0ms) rollback transaction
18568
+  (0.0ms) begin transaction
18569
+ -------------------------------------------------------------------------
18570
+ BootstrapFormTest: test_error_summary_returns_an_unordered_list_of_errors
18571
+ -------------------------------------------------------------------------
18572
+  (0.0ms) rollback transaction
18573
+  (0.0ms) begin transaction
18574
+ ----------------------------------------------------------------------------------------------------------------------
18575
+ BootstrapFormTest: test_errors_display_correctly_and_inline_errors_are_turned_off_by_default_when_label_errors_is_true
18576
+ ----------------------------------------------------------------------------------------------------------------------
18577
+  (0.0ms) rollback transaction
18578
+  (0.0ms) begin transaction
18579
+ -----------------------------------------------------------------------------------------------------------
18580
+ BootstrapFormTest: test_errors_display_correctly_and_inline_errors_can_also_be_on_when_label_errors_is_true
18581
+ -----------------------------------------------------------------------------------------------------------
18582
+  (0.0ms) rollback transaction
18583
+  (0.0ms) begin transaction
18584
+ ----------------------------------------------------------------
18585
+ BootstrapFormTest: test_errors_on_hide_attribute_name_in_message
18586
+ ----------------------------------------------------------------
18587
+  (0.0ms) rollback transaction
18588
+  (0.0ms) begin transaction
18589
+ ------------------------------------------------------------------------------------------
18590
+ BootstrapFormTest: test_errors_on_renders_the_errors_for_a_specific_attribute_when_invalid
18591
+ ------------------------------------------------------------------------------------------
18592
+  (0.0ms) rollback transaction
18593
+  (0.0ms) begin transaction
18594
+ -------------------------------------------------------------------------------------
18595
+ BootstrapFormTest: test_existing_styles_aren't_clobbered_when_specifying_a_form_style
18596
+ -------------------------------------------------------------------------------------
18597
+  (0.0ms) rollback transaction
18598
+  (0.0ms) begin transaction
18599
+ --------------------------------------------------------------------------------------------
18600
+ BootstrapFormTest: test_given_role_attribute_should_not_be_covered_by_default_role_attribute
18601
+ --------------------------------------------------------------------------------------------
18602
+  (0.0ms) rollback transaction
18603
+  (0.0ms) begin transaction
18604
+ ---------------------------------------------------------------------------------------------------
18605
+ BootstrapFormTest: test_help_is_preserved_when_inline_errors:_false_is_passed_to_bootstrap_form_for
18606
+ ---------------------------------------------------------------------------------------------------
18607
+  (0.0ms) rollback transaction
18608
+  (0.0ms) begin transaction
18609
+ ----------------------------------------------
18610
+ BootstrapFormTest: test_horizontal-style_forms
18611
+ ----------------------------------------------
18612
+  (0.0ms) rollback transaction
18613
+  (0.0ms) begin transaction
18614
+ ------------------------------------------
18615
+ BootstrapFormTest: test_inline-style_forms
18616
+ ------------------------------------------
18617
+  (0.0ms) rollback transaction
18618
+  (0.0ms) begin transaction
18619
+ --------------------------------------------------------------------------
18620
+ BootstrapFormTest: test_label_error_messages_use_humanized_attribute_names
18621
+ --------------------------------------------------------------------------
18622
+  (0.0ms) rollback transaction
18623
+  (0.0ms) begin transaction
18624
+ --------------------------------------------------------------------------------------------------------------------------------
18625
+ BootstrapFormTest: test_the_field_contains_the_error_and_is_not_wrapped_in_div.field_with_errors_when_bootstrap_form_for_is_used
18626
+ --------------------------------------------------------------------------------------------------------------------------------
18627
+  (0.1ms) rollback transaction
18628
+  (0.0ms) begin transaction
18629
+ ---------------------------------------------------------------------------------------------
18630
+ BootstrapFormTest: test_the_field_is_wrapped_with_div.field_with_errors_when_form_for_is_used
18631
+ ---------------------------------------------------------------------------------------------
18632
+  (0.0ms) rollback transaction
18633
+  (0.0ms) begin transaction
18634
+ ------------------------------------------------------------------
18635
+ BootstrapOtherComponentsTest: test_override_primary_button_classes
18636
+ ------------------------------------------------------------------
18637
+  (0.0ms) rollback transaction
18638
+  (0.0ms) begin transaction
18639
+ -----------------------------------------------------------------
18640
+ BootstrapOtherComponentsTest: test_override_submit_button_classes
18641
+ -----------------------------------------------------------------
18642
+  (0.0ms) rollback transaction
18643
+  (0.0ms) begin transaction
18644
+ -------------------------------------------------------------------------
18645
+ BootstrapOtherComponentsTest: test_primary_button_uses_proper_css_classes
18646
+ -------------------------------------------------------------------------
18647
+  (0.0ms) rollback transaction
18648
+  (0.0ms) begin transaction
18649
+ -------------------------------------------------
18650
+ BootstrapOtherComponentsTest: test_static_control
18651
+ -------------------------------------------------
18652
+  (0.0ms) rollback transaction
18653
+  (0.0ms) begin transaction
18654
+ ------------------------------------------------------------------------
18655
+ BootstrapOtherComponentsTest: test_static_control_doesn't_require_a_name
18656
+ ------------------------------------------------------------------------
18657
+  (0.0ms) rollback transaction
18658
+  (0.0ms) begin transaction
18659
+ -------------------------------------------------------------------------------------
18660
+ BootstrapOtherComponentsTest: test_static_control_doesn't_require_an_actual_attribute
18661
+ -------------------------------------------------------------------------------------
18662
+  (0.0ms) rollback transaction
18663
+  (0.0ms) begin transaction
18664
+ ------------------------------------------------------------------------------
18665
+ BootstrapOtherComponentsTest: test_submit_button_defaults_to_rails_action_name
18666
+ ------------------------------------------------------------------------------
18667
+  (0.0ms) rollback transaction
18668
+  (0.0ms) begin transaction
18669
+ ----------------------------------------------------------------------------
18670
+ BootstrapOtherComponentsTest: test_submit_button_uses_default_button_classes
18671
+ ----------------------------------------------------------------------------
18672
+  (0.0ms) rollback transaction
18673
+  (0.0ms) begin transaction
18674
+ ---------------------------------------------------------------------------------------
18675
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_inline_radios_correctly
18676
+ ---------------------------------------------------------------------------------------
18677
+  (0.1ms) rollback transaction
18678
+  (0.1ms) begin transaction
18679
+ -----------------------------------------------------------------------------------------------
18680
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_label_defined_by_Proc_correctly
18681
+ -----------------------------------------------------------------------------------------------
18682
+  (0.0ms) rollback transaction
18683
+  (0.0ms) begin transaction
18684
+ -------------------------------------------------------------------------------------------------
18685
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_label_defined_by_lambda_correctly
18686
+ -------------------------------------------------------------------------------------------------
18687
+  (0.0ms) rollback transaction
18688
+  (0.0ms) begin transaction
18689
+ -----------------------------------------------------------------------------------------
18690
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_correctly
18691
+ -----------------------------------------------------------------------------------------
18692
+  (0.0ms) rollback transaction
18693
+  (0.0ms) begin transaction
18694
+ --------------------------------------------------------------------------------------------------------------------
18695
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_with_label_defined_by_Proc_correctly
18696
+ --------------------------------------------------------------------------------------------------------------------
18697
+  (0.0ms) rollback transaction
18698
+  (0.0ms) begin transaction
18699
+ ----------------------------------------------------------------------------------------------------------------------
18700
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_with_label_defined_by_lambda_correctly
18701
+ ----------------------------------------------------------------------------------------------------------------------
18702
+  (0.0ms) rollback transaction
18703
+  (0.0ms) begin transaction
18704
+ --------------------------------------------------------------------------------------------------------------------
18705
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_with_value_defined_by_Proc_correctly
18706
+ --------------------------------------------------------------------------------------------------------------------
18707
+  (0.0ms) rollback transaction
18708
+  (0.0ms) begin transaction
18709
+ ----------------------------------------------------------------------------------------------------------------------
18710
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_with_value_defined_by_lambda_correctly
18711
+ ----------------------------------------------------------------------------------------------------------------------
18712
+  (0.0ms) rollback transaction
18713
+  (0.0ms) begin transaction
18714
+ ----------------------------------------------------------------------------------------
18715
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_the_form_group_correctly
18716
+ ----------------------------------------------------------------------------------------
18717
+  (0.1ms) rollback transaction
18718
+  (0.0ms) begin transaction
18719
+ -----------------------------------------------------------------------------------------------
18720
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_value_defined_by_Proc_correctly
18721
+ -----------------------------------------------------------------------------------------------
18722
+  (0.0ms) rollback transaction
18723
+  (0.0ms) begin transaction
18724
+ -------------------------------------------------------------------------------------------------
18725
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_value_defined_by_lambda_correctly
18726
+ -------------------------------------------------------------------------------------------------
18727
+  (0.0ms) rollback transaction
18728
+  (0.0ms) begin transaction
18729
+ ---------------------------------------------------------------------------------------------
18730
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_with_checked_option_correctly
18731
+ ---------------------------------------------------------------------------------------------
18732
+  (0.0ms) rollback transaction
18733
+  (0.0ms) begin transaction
18734
+ ----------------------------------------------------------------------------------
18735
+ BootstrapRadioButtonTest: test_radio_button_disabled_inline_label_is_set_correctly
18736
+ ----------------------------------------------------------------------------------
18737
+  (0.0ms) rollback transaction
18738
+  (0.0ms) begin transaction
18739
+ ---------------------------------------------------------------------------
18740
+ BootstrapRadioButtonTest: test_radio_button_disabled_label_is_set_correctly
18741
+ ---------------------------------------------------------------------------
18742
+  (0.4ms) rollback transaction
18743
+  (0.0ms) begin transaction
18744
+ -------------------------------------------------------------------------------
18745
+ BootstrapRadioButtonTest: test_radio_button_inline_label_class_is_set_correctly
18746
+ -------------------------------------------------------------------------------
18747
+  (0.0ms) rollback transaction
18748
+  (0.0ms) begin transaction
18749
+ -------------------------------------------------------------------------
18750
+ BootstrapRadioButtonTest: test_radio_button_inline_label_is_set_correctly
18751
+ -------------------------------------------------------------------------
18752
+  (0.0ms) rollback transaction
18753
+  (0.0ms) begin transaction
18754
+ ----------------------------------------------------------------
18755
+ BootstrapRadioButtonTest: test_radio_button_is_wrapped_correctly
18756
+ ----------------------------------------------------------------
18757
+  (0.0ms) rollback transaction
18758
+  (0.0ms) begin transaction
18759
+ ------------------------------------------------------------------------
18760
+ BootstrapRadioButtonTest: test_radio_button_label_class_is_set_correctly
18761
+ ------------------------------------------------------------------------
18762
+  (0.0ms) rollback transaction
18763
+  (0.0ms) begin transaction
18764
+ ---------------------------------------------------------------------------
18765
+ BootstrapSelectsTest: test_bootstrap_specific_options_are_handled_correctly
18766
+ ---------------------------------------------------------------------------
18767
+  (0.1ms) rollback transaction
18768
+  (0.1ms) begin transaction
18769
+ -------------------------------------------------------------------
18770
+ BootstrapSelectsTest: test_collection_selects_are_wrapped_correctly
18771
+ -------------------------------------------------------------------
18772
+  (0.1ms) rollback transaction
18773
+  (0.1ms) begin transaction
18774
+ -------------------------------------------------------------------------------------------------
18775
+ BootstrapSelectsTest: test_collection_selects_with_options_and_html_options_are_wrapped_correctly
18776
+ -------------------------------------------------------------------------------------------------
18777
+  (0.1ms) rollback transaction
18778
+  (0.0ms) begin transaction
18779
+ --------------------------------------------------------------------------------
18780
+ BootstrapSelectsTest: test_collection_selects_with_options_are_wrapped_correctly
18781
+ --------------------------------------------------------------------------------
18782
+  (0.0ms) rollback transaction
18783
+  (0.0ms) begin transaction
18784
+ -------------------------------------------------------------
18785
+ BootstrapSelectsTest: test_date_selects_are_wrapped_correctly
18786
+ -------------------------------------------------------------
18787
+  (0.1ms) rollback transaction
18788
+  (0.1ms) begin transaction
18789
+ -------------------------------------------------------------------------------------------
18790
+ BootstrapSelectsTest: test_date_selects_with_options_and_html_options_are_wrapped_correctly
18791
+ -------------------------------------------------------------------------------------------
18792
+  (0.1ms) rollback transaction
18793
+  (0.0ms) begin transaction
18794
+ --------------------------------------------------------------------------
18795
+ BootstrapSelectsTest: test_date_selects_with_options_are_wrapped_correctly
18796
+ --------------------------------------------------------------------------
18797
+  (0.0ms) rollback transaction
18798
+  (0.0ms) begin transaction
18799
+ -----------------------------------------------------------------
18800
+ BootstrapSelectsTest: test_datetime_selects_are_wrapped_correctly
18801
+ -----------------------------------------------------------------
18802
+  (0.1ms) rollback transaction
18803
+  (0.0ms) begin transaction
18804
+ -----------------------------------------------------------------------------------------------
18805
+ BootstrapSelectsTest: test_datetime_selects_with_options_and_html_options_are_wrapped_correctly
18806
+ -----------------------------------------------------------------------------------------------
18807
+  (0.1ms) rollback transaction
18808
+  (0.0ms) begin transaction
18809
+ ------------------------------------------------------------------------------
18810
+ BootstrapSelectsTest: test_datetime_selects_with_options_are_wrapped_correctly
18811
+ ------------------------------------------------------------------------------
18812
+  (0.0ms) rollback transaction
18813
+  (0.0ms) begin transaction
18814
+ ---------------------------------------------------------------------------
18815
+ BootstrapSelectsTest: test_grouped_collection_selects_are_wrapped_correctly
18816
+ ---------------------------------------------------------------------------
18817
+  (0.0ms) rollback transaction
18818
+  (0.0ms) begin transaction
18819
+ ---------------------------------------------------------------------------------------------------------
18820
+ BootstrapSelectsTest: test_grouped_collection_selects_with_options_and_html_options_are_wrapped_correctly
18821
+ ---------------------------------------------------------------------------------------------------------
18822
+  (0.1ms) rollback transaction
18823
+  (0.0ms) begin transaction
18824
+ ----------------------------------------------------------------------------------------
18825
+ BootstrapSelectsTest: test_grouped_collection_selects_with_options_are_wrapped_correctly
18826
+ ----------------------------------------------------------------------------------------
18827
+  (0.0ms) rollback transaction
18828
+  (0.0ms) begin transaction
18829
+ --------------------------------------------------------
18830
+ BootstrapSelectsTest: test_selects_are_wrapped_correctly
18831
+ --------------------------------------------------------
18832
+  (0.0ms) rollback transaction
18833
+  (0.0ms) begin transaction
18834
+ ---------------------------------------------------------
18835
+ BootstrapSelectsTest: test_selects_render_labels_properly
18836
+ ---------------------------------------------------------
18837
+  (0.2ms) rollback transaction
18838
+  (0.0ms) begin transaction
18839
+ -------------------------------------------------------------------------------------------
18840
+ BootstrapSelectsTest: test_selects_with_both_options_and_html_options_are_wrapped_correctly
18841
+ -------------------------------------------------------------------------------------------
18842
+  (0.0ms) rollback transaction
18843
+  (0.0ms) begin transaction
18844
+ ---------------------------------------------------------------------
18845
+ BootstrapSelectsTest: test_selects_with_options_are_wrapped_correctly
18846
+ ---------------------------------------------------------------------
18847
+  (0.0ms) rollback transaction
18848
+  (0.0ms) begin transaction
18849
+ -------------------------------------------------------------
18850
+ BootstrapSelectsTest: test_time_selects_are_wrapped_correctly
18851
+ -------------------------------------------------------------
18852
+  (0.1ms) rollback transaction
18853
+  (0.0ms) begin transaction
18854
+ -------------------------------------------------------------------------------------------
18855
+ BootstrapSelectsTest: test_time_selects_with_options_and_html_options_are_wrapped_correctly
18856
+ -------------------------------------------------------------------------------------------
18857
+  (0.1ms) rollback transaction
18858
+  (0.0ms) begin transaction
18859
+ --------------------------------------------------------------------------
18860
+ BootstrapSelectsTest: test_time_selects_with_options_are_wrapped_correctly
18861
+ --------------------------------------------------------------------------
18862
+  (0.0ms) rollback transaction
18863
+  (0.0ms) begin transaction
18864
+ ------------------------------------------------------------------
18865
+ BootstrapSelectsTest: test_time_zone_selects_are_wrapped_correctly
18866
+ ------------------------------------------------------------------
18867
+  (0.1ms) rollback transaction
18868
+  (0.4ms) begin transaction
18869
+ -------------------------------------------------------------------------
18870
+ BootstrapCheckboxTest: test_check_box_accepts_a_block_to_define_the_label
18871
+ -------------------------------------------------------------------------
18872
+  (0.1ms) rollback transaction
18873
+  (0.0ms) begin transaction
18874
+ ------------------------------------------------------------------
18875
+ BootstrapCheckboxTest: test_check_box_accepts_a_custom_label_class
18876
+ ------------------------------------------------------------------
18877
+  (0.1ms) rollback transaction
18878
+  (0.0ms) begin transaction
18879
+ ----------------------------------------------------------
18880
+ BootstrapCheckboxTest: test_check_box_is_wrapped_correctly
18881
+ ----------------------------------------------------------
18882
+  (0.1ms) rollback transaction
18883
+  (0.0ms) begin transaction
18884
+ -------------------------------------------------------
18885
+ BootstrapCheckboxTest: test_check_box_label_allows_html
18886
+ -------------------------------------------------------
18887
+  (0.0ms) rollback transaction
18888
+  (0.0ms) begin transaction
18889
+ ---------------------------------------------------------------------------------------------
18890
+ BootstrapCheckboxTest: test_check_box_responds_to_checked_value_and_unchecked_value_arguments
18891
+ ---------------------------------------------------------------------------------------------
18892
+  (0.0ms) rollback transaction
18893
+  (0.0ms) begin transaction
18894
+ --------------------------------------------------------------------------------------
18895
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_inline_checkboxes_correctly
18896
+ --------------------------------------------------------------------------------------
18897
+  (0.1ms) rollback transaction
18898
+  (0.0ms) begin transaction
18899
+ ----------------------------------------------------------------------------------------
18900
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_correctly
18901
+ ----------------------------------------------------------------------------------------
18902
+  (0.0ms) rollback transaction
18903
+  (0.0ms) begin transaction
18904
+ ---------------------------------------------------------------------------------------------------------------------------------
18905
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_with_labels_defined_by_Proc_:text_method_correctly
18906
+ ---------------------------------------------------------------------------------------------------------------------------------
18907
+  (0.1ms) rollback transaction
18908
+  (0.0ms) begin transaction
18909
+ -----------------------------------------------------------------------------------------------------------------------------------
18910
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_with_labels_defined_by_lambda_:text_method_correctly
18911
+ -----------------------------------------------------------------------------------------------------------------------------------
18912
+  (0.0ms) rollback transaction
18913
+  (0.1ms) begin transaction
18914
+ ----------------------------------------------------------------------------------------------------------------------------------
18915
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_with_values_defined_by_Proc_:value_method_correctly
18916
+ ----------------------------------------------------------------------------------------------------------------------------------
18917
+  (0.1ms) rollback transaction
18918
+  (0.0ms) begin transaction
18919
+ ------------------------------------------------------------------------------------------------------------------------------------
18920
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_with_values_defined_by_lambda_:value_method_correctly
18921
+ ------------------------------------------------------------------------------------------------------------------------------------
18922
+  (0.0ms) rollback transaction
18923
+  (0.0ms) begin transaction
18924
+ -----------------------------------------------------------------------------------
18925
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_the_form_group_correctly
18926
+ -----------------------------------------------------------------------------------
18927
+  (0.0ms) rollback transaction
18928
+  (0.1ms) begin transaction
18929
+ ----------------------------------------------------------------------------------------
18930
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_with_checked_option_correctly
18931
+ ----------------------------------------------------------------------------------------
18932
+  (0.0ms) rollback transaction
18933
+  (0.0ms) begin transaction
18934
+ ----------------------------------------------------------------------------------------------------------------
18935
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_with_checked_option_correctly_with_Proc_:value_method
18936
+ ----------------------------------------------------------------------------------------------------------------
18937
+  (0.0ms) rollback transaction
18938
+  (0.0ms) begin transaction
18939
+ --------------------------------------------------------------------------------------------------
18940
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_with_multiple_checked_options_correctly
18941
+ --------------------------------------------------------------------------------------------------
18942
+  (0.0ms) rollback transaction
18943
+  (0.0ms) begin transaction
18944
+ ----------------------------------------------------------------------------------------------------------------------------
18945
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_with_multiple_checked_options_correctly_with_lambda_:value_method
18946
+ ----------------------------------------------------------------------------------------------------------------------------
18947
+  (0.0ms) rollback transaction
18948
+  (0.0ms) begin transaction
18949
+ -------------------------------------------------------------------------
18950
+ BootstrapCheckboxTest: test_disabled_check_box_has_proper_wrapper_classes
18951
+ -------------------------------------------------------------------------
18952
+  (0.0ms) rollback transaction
18953
+  (0.0ms) begin transaction
18954
+ -----------------------------------------------------
18955
+ BootstrapCheckboxTest: test_disabled_inline_check_box
18956
+ -----------------------------------------------------
18957
+  (0.1ms) rollback transaction
18958
+  (0.0ms) begin transaction
18959
+ ---------------------------------------------
18960
+ BootstrapCheckboxTest: test_inline_checkboxes
18961
+ ---------------------------------------------
18962
+  (0.0ms) rollback transaction
18963
+  (0.0ms) begin transaction
18964
+ ---------------------------------------------------------------------
18965
+ BootstrapCheckboxTest: test_inline_checkboxes_with_custom_label_class
18966
+ ---------------------------------------------------------------------
18967
+  (0.0ms) rollback transaction
18968
+  (0.0ms) begin transaction
18969
+ --------------------------------------------------------------------------
18970
+ BootstrapFieldsTest: test_bootstrap_form_for_helper_works_for_associations
18971
+ --------------------------------------------------------------------------
18972
+  (0.1ms) rollback transaction
18973
+  (0.0ms) begin transaction
18974
+ ----------------------------------------------------------------------------------------
18975
+ BootstrapFieldsTest: test_bootstrap_form_for_helper_works_for_serialized_hash_attributes
18976
+ ----------------------------------------------------------------------------------------
18977
+  (0.0ms) rollback transaction
18978
+  (0.0ms) begin transaction
18979
+ ------------------------------------------------------------
18980
+ BootstrapFieldsTest: test_color_fields_are_wrapped_correctly
18981
+ ------------------------------------------------------------
18982
+  (0.0ms) rollback transaction
18983
+  (0.0ms) begin transaction
18984
+ -----------------------------------------------------------
18985
+ BootstrapFieldsTest: test_date_fields_are_wrapped_correctly
18986
+ -----------------------------------------------------------
18987
+  (0.0ms) rollback transaction
18988
+  (0.0ms) begin transaction
18989
+ ----------------------------------------------------------------
18990
+ BootstrapFieldsTest: test_date_time_fields_are_wrapped_correctly
18991
+ ----------------------------------------------------------------
18992
+  (0.0ms) rollback transaction
18993
+  (0.0ms) begin transaction
18994
+ ----------------------------------------------------------------------
18995
+ BootstrapFieldsTest: test_date_time_local_fields_are_wrapped_correctly
18996
+ ----------------------------------------------------------------------
18997
+  (0.1ms) rollback transaction
18998
+  (0.0ms) begin transaction
18999
+ ------------------------------------------------------------
19000
+ BootstrapFieldsTest: test_email_fields_are_wrapped_correctly
19001
+ ------------------------------------------------------------
19002
+  (0.1ms) rollback transaction
19003
+  (0.0ms) begin transaction
19004
+ ------------------------------------------------------------------------------------------
19005
+ BootstrapFieldsTest: test_fields_for_correctly_passes_horizontal_style_from_parent_builder
19006
+ ------------------------------------------------------------------------------------------
19007
+  (0.0ms) rollback transaction
19008
+  (0.0ms) begin transaction
19009
+ --------------------------------------------------------------------------------------
19010
+ BootstrapFieldsTest: test_fields_for_correctly_passes_inline_style_from_parent_builder
19011
+ --------------------------------------------------------------------------------------
19012
+  (0.0ms) rollback transaction
19013
+  (0.0ms) begin transaction
19014
+ -----------------------------------------------------------
19015
+ BootstrapFieldsTest: test_file_fields_are_wrapped_correctly
19016
+ -----------------------------------------------------------
19017
+  (0.1ms) rollback transaction
19018
+  (0.0ms) begin transaction
19019
+ -----------------------------------------------------
19020
+ BootstrapFieldsTest: test_hidden_fields_are_supported
19021
+ -----------------------------------------------------
19022
+  (0.0ms) rollback transaction
19023
+  (0.0ms) begin transaction
19024
+ ------------------------------------------------------------------
19025
+ BootstrapFieldsTest: test_month_local_fields_are_wrapped_correctly
19026
+ ------------------------------------------------------------------
19027
+  (0.0ms) rollback transaction
19028
+  (0.0ms) begin transaction
19029
+ -------------------------------------------------------------
19030
+ BootstrapFieldsTest: test_number_fields_are_wrapped_correctly
19031
+ -------------------------------------------------------------
19032
+  (0.2ms) rollback transaction
19033
+  (0.1ms) begin transaction
19034
+ ---------------------------------------------------------------
19035
+ BootstrapFieldsTest: test_password_fields_are_wrapped_correctly
19036
+ ---------------------------------------------------------------
19037
+  (0.1ms) rollback transaction
19038
+  (0.1ms) begin transaction
19039
+ ----------------------------------------------------------------------
19040
+ BootstrapFieldsTest: test_phone/telephone_fields_are_wrapped_correctly
19041
+ ----------------------------------------------------------------------
19042
+  (0.0ms) rollback transaction
19043
+  (0.2ms) begin transaction
19044
+ ------------------------------------------------------------
19045
+ BootstrapFieldsTest: test_range_fields_are_wrapped_correctly
19046
+ ------------------------------------------------------------
19047
+  (0.0ms) rollback transaction
19048
+  (0.0ms) begin transaction
19049
+ -------------------------------------------------------------
19050
+ BootstrapFieldsTest: test_search_fields_are_wrapped_correctly
19051
+ -------------------------------------------------------------
19052
+  (0.0ms) rollback transaction
19053
+  (0.1ms) begin transaction
19054
+ ----------------------------------------------------------
19055
+ BootstrapFieldsTest: test_text_areas_are_wrapped_correctly
19056
+ ----------------------------------------------------------
19057
+  (0.0ms) rollback transaction
19058
+  (0.0ms) begin transaction
19059
+ -----------------------------------------------------------
19060
+ BootstrapFieldsTest: test_text_fields_are_wrapped_correctly
19061
+ -----------------------------------------------------------
19062
+  (0.1ms) rollback transaction
19063
+  (0.0ms) begin transaction
19064
+ -----------------------------------------------------------
19065
+ BootstrapFieldsTest: test_time_fields_are_wrapped_correctly
19066
+ -----------------------------------------------------------
19067
+  (0.0ms) rollback transaction
19068
+  (0.0ms) begin transaction
19069
+ ----------------------------------------------------------
19070
+ BootstrapFieldsTest: test_url_fields_are_wrapped_correctly
19071
+ ----------------------------------------------------------
19072
+  (0.1ms) rollback transaction
19073
+  (0.0ms) begin transaction
19074
+ -----------------------------------------------------------
19075
+ BootstrapFieldsTest: test_week_fields_are_wrapped_correctly
19076
+ -----------------------------------------------------------
19077
+  (0.2ms) rollback transaction
19078
+  (0.2ms) begin transaction
19079
+ ---------------------------------------------------------------------------
19080
+ BootstrapFormGroupTest: test_:input_group_class_should_apply_to_input-group
19081
+ ---------------------------------------------------------------------------
19082
+  (0.2ms) rollback transaction
19083
+  (0.0ms) begin transaction
19084
+ --------------------------------------------------------------------------------------------------------------
19085
+ BootstrapFormGroupTest: test_adding_a_custom_label_and_changing_the_label_text_via_the_html_options_label_hash
19086
+ --------------------------------------------------------------------------------------------------------------
19087
+  (0.0ms) rollback transaction
19088
+  (0.0ms) begin transaction
19089
+ ----------------------------------------------------------------------------------------
19090
+ BootstrapFormGroupTest: test_adding_a_custom_label_class_via_the_html_options_label_hash
19091
+ ----------------------------------------------------------------------------------------
19092
+  (0.0ms) rollback transaction
19093
+  (0.0ms) begin transaction
19094
+ --------------------------------------------------------------------------------------
19095
+ BootstrapFormGroupTest: test_adding_a_custom_label_class_via_the_label_class_parameter
19096
+ --------------------------------------------------------------------------------------
19097
+  (0.0ms) rollback transaction
19098
+  (0.0ms) begin transaction
19099
+ ------------------------------------------------------
19100
+ BootstrapFormGroupTest: test_adding_an_icon_to_a_field
19101
+ ------------------------------------------------------
19102
+  (0.0ms) rollback transaction
19103
+  (0.0ms) begin transaction
19104
+ -----------------------------------------------
19105
+ BootstrapFormGroupTest: test_adding_append_text
19106
+ -----------------------------------------------
19107
+  (0.0ms) rollback transaction
19108
+  (0.0ms) begin transaction
19109
+ ----------------------------------------------------------------
19110
+ BootstrapFormGroupTest: test_adding_both_prepend_and_append_text
19111
+ ----------------------------------------------------------------
19112
+  (0.0ms) rollback transaction
19113
+  (0.0ms) begin transaction
19114
+ ------------------------------------------------
19115
+ BootstrapFormGroupTest: test_adding_prepend_text
19116
+ ------------------------------------------------
19117
+  (0.0ms) rollback transaction
19118
+  (0.0ms) begin transaction
19119
+ ------------------------------------------------------------------------
19120
+ BootstrapFormGroupTest: test_adds_class_to_wrapped_form_group_by_a_field
19121
+ ------------------------------------------------------------------------
19122
+  (0.0ms) rollback transaction
19123
+  (0.1ms) begin transaction
19124
+ ------------------------------------------------------------------------------------
19125
+ BootstrapFormGroupTest: test_adds_class_to_wrapped_form_group_by_a_field_with_errors
19126
+ ------------------------------------------------------------------------------------
19127
+  (0.0ms) rollback transaction
19128
+  (0.1ms) begin transaction
19129
+ --------------------------------------------------------------------------------------------------------------------
19130
+ BootstrapFormGroupTest: test_adds_class_to_wrapped_form_group_by_a_field_with_errors_when_bootstrap_form_for_is_used
19131
+ --------------------------------------------------------------------------------------------------------------------
19132
+  (0.0ms) rollback transaction
19133
+  (0.0ms) begin transaction
19134
+ -----------------------------------------------------------------------------------
19135
+ BootstrapFormGroupTest: test_adds_data-attributes_(or_any_other_options)_to_wrapper
19136
+ -----------------------------------------------------------------------------------
19137
+  (0.0ms) rollback transaction
19138
+  (0.0ms) begin transaction
19139
+ ---------------------------------------------------------------------
19140
+ BootstrapFormGroupTest: test_adds_offset_for_form_group_without_label
19141
+ ---------------------------------------------------------------------
19142
+  (0.0ms) rollback transaction
19143
+  (0.0ms) begin transaction
19144
+ --------------------------------------------------------------------------------------------
19145
+ BootstrapFormGroupTest: test_adds_offset_for_form_group_without_label_but_specific_label_col
19146
+ --------------------------------------------------------------------------------------------
19147
+  (0.1ms) rollback transaction
19148
+  (0.0ms) begin transaction
19149
+ ------------------------------------------------------
19150
+ BootstrapFormGroupTest: test_append_and_prepend_button
19151
+ ------------------------------------------------------
19152
+  (0.0ms) rollback transaction
19153
+  (0.0ms) begin transaction
19154
+ ------------------------------------------------------------------------------------
19155
+ BootstrapFormGroupTest: test_changing_the_label_text_via_the_html_options_label_hash
19156
+ ------------------------------------------------------------------------------------
19157
+  (0.0ms) rollback transaction
19158
+  (0.0ms) begin transaction
19159
+ -----------------------------------------------------------------------------------
19160
+ BootstrapFormGroupTest: test_changing_the_label_text_via_the_label_option_parameter
19161
+ -----------------------------------------------------------------------------------
19162
+  (0.0ms) rollback transaction
19163
+  (0.1ms) begin transaction
19164
+ ------------------------------------------------------------
19165
+ BootstrapFormGroupTest: test_custom_form_group_layout_option
19166
+ ------------------------------------------------------------
19167
+  (0.0ms) rollback transaction
19168
+  (0.0ms) begin transaction
19169
+ ----------------------------------------------------------------------------------------------------
19170
+ BootstrapFormGroupTest: test_doesn't_throw_undefined_method_error_when_the_content_block_returns_nil
19171
+ ----------------------------------------------------------------------------------------------------
19172
+  (0.0ms) rollback transaction
19173
+  (0.0ms) begin transaction
19174
+ --------------------------------------------------------------------------
19175
+ BootstrapFormGroupTest: test_form_group_accepts_class_thorugh_options_hash
19176
+ --------------------------------------------------------------------------
19177
+  (0.0ms) rollback transaction
19178
+  (0.0ms) begin transaction
19179
+ -------------------------------------------------------------------------------------------------
19180
+ BootstrapFormGroupTest: test_form_group_accepts_class_thorugh_options_hash_without_needing_a_name
19181
+ -------------------------------------------------------------------------------------------------
19182
+  (0.0ms) rollback transaction
19183
+  (0.0ms) begin transaction
19184
+ ------------------------------------------------------------------------------------------------
19185
+ BootstrapFormGroupTest: test_form_group_adds_a_spacer_when_no_label_exists_for_a_horizontal_form
19186
+ ------------------------------------------------------------------------------------------------
19187
+  (0.1ms) rollback transaction
19188
+  (0.1ms) begin transaction
19189
+ -------------------------------------------------------------------------------------------------------------------
19190
+ BootstrapFormGroupTest: test_form_group_creates_a_valid_structure_and_allows_arbitrary_html_to_be_added_via_a_block
19191
+ -------------------------------------------------------------------------------------------------------------------
19192
+  (0.0ms) rollback transaction
19193
+  (0.0ms) begin transaction
19194
+ ---------------------------------------------------------------------------------------------------------------
19195
+ BootstrapFormGroupTest: test_form_group_overrides_the_label's_'class'_and_'for'_attributes_if_others_are_passed
19196
+ ---------------------------------------------------------------------------------------------------------------
19197
+  (0.0ms) rollback transaction
19198
+  (0.0ms) begin transaction
19199
+ ---------------------------------------------------------------------------------------------------------------
19200
+ BootstrapFormGroupTest: test_form_group_renders_the_"error"_class_and_message_corrrectly_when_object_is_invalid
19201
+ ---------------------------------------------------------------------------------------------------------------
19202
+  (0.0ms) rollback transaction
19203
+  (0.0ms) begin transaction
19204
+ -------------------------------------------------------------------
19205
+ BootstrapFormGroupTest: test_form_group_renders_the_label_correctly
19206
+ -------------------------------------------------------------------
19207
+  (0.1ms) rollback transaction
19208
+  (0.0ms) begin transaction
19209
+ ------------------------------------------------------------
19210
+ BootstrapFormGroupTest: test_help_messages_for_default_forms
19211
+ ------------------------------------------------------------
19212
+  (0.0ms) rollback transaction
19213
+  (0.1ms) begin transaction
19214
+ ---------------------------------------------------------------
19215
+ BootstrapFormGroupTest: test_help_messages_for_horizontal_forms
19216
+ ---------------------------------------------------------------
19217
+  (0.0ms) rollback transaction
19218
+  (0.0ms) begin transaction
19219
+ ----------------------------------------------------------------------------------------
19220
+ BootstrapFormGroupTest: test_help_messages_to_ignore_translation_when_user_disables_help
19221
+ ----------------------------------------------------------------------------------------
19222
+  (0.0ms) rollback transaction
19223
+  (0.0ms) begin transaction
19224
+ ------------------------------------------------------------------------
19225
+ BootstrapFormGroupTest: test_help_messages_to_look_up_I18n_automatically
19226
+ ------------------------------------------------------------------------
19227
+  (0.0ms) rollback transaction
19228
+  (0.0ms) begin transaction
19229
+ ----------------------------------------------------------------------------
19230
+ BootstrapFormGroupTest: test_help_messages_to_warn_about_deprecated_I18n_key
19231
+ ----------------------------------------------------------------------------
19232
+  (0.1ms) rollback transaction
19233
+  (0.0ms) begin transaction
19234
+ -------------------------------------------
19235
+ BootstrapFormGroupTest: test_hiding_a_label
19236
+ -------------------------------------------
19237
+  (0.0ms) rollback transaction
19238
+  (0.0ms) begin transaction
19239
+ ---------------------------------------------------------------------------------------
19240
+ BootstrapFormGroupTest: test_non-default_column_span_on_form_is_reflected_in_form_group
19241
+ ---------------------------------------------------------------------------------------
19242
+  (0.0ms) rollback transaction
19243
+  (0.0ms) begin transaction
19244
+ --------------------------------------------------------------------------
19245
+ BootstrapFormGroupTest: test_non-default_column_span_on_form_isn't_mutated
19246
+ --------------------------------------------------------------------------
19247
+  (0.0ms) rollback transaction
19248
+  (0.1ms) begin transaction
19249
+ ---------------------------------------------------------------------------------
19250
+ BootstrapFormGroupTest: test_passing_options_to_a_form_control_get_passed_through
19251
+ ---------------------------------------------------------------------------------
19252
+  (0.1ms) rollback transaction
19253
+  (0.0ms) begin transaction
19254
+ -------------------------------------------------------------------------------------------------
19255
+ BootstrapFormGroupTest: test_single_form_group_call_in_horizontal_form_should_not_be_smash_design
19256
+ -------------------------------------------------------------------------------------------------
19257
+  (0.1ms) rollback transaction
19258
+  (0.1ms) begin transaction
19259
+ ---------------------------------------------
19260
+ BootstrapFormGroupTest: test_skipping_a_label
19261
+ ---------------------------------------------
19262
+  (0.0ms) rollback transaction
19263
+  (0.0ms) begin transaction
19264
+ -------------------------------------------------------------------------------
19265
+ BootstrapFormTest: test_alert_message_allows_the_error_summary_to_be_turned_off
19266
+ -------------------------------------------------------------------------------
19267
+  (0.1ms) rollback transaction
19268
+  (0.0ms) begin transaction
19269
+ ----------------------------------------------------------------------------------------------------------------
19270
+ BootstrapFormTest: test_alert_message_allows_the_error_summary_to_be_turned_on_with_inline_errors_also_turned_on
19271
+ ----------------------------------------------------------------------------------------------------------------
19272
+  (0.1ms) rollback transaction
19273
+  (0.0ms) begin transaction
19274
+ --------------------------------------------------------------------------------------------------
19275
+ BootstrapFormTest: test_alert_message_contains_the_error_summary_when_inline_errors_are_turned_off
19276
+ --------------------------------------------------------------------------------------------------
19277
+  (0.0ms) rollback transaction
19278
+  (0.0ms) begin transaction
19279
+ ----------------------------------------------------------
19280
+ BootstrapFormTest: test_alert_message_is_wrapped_correctly
19281
+ ----------------------------------------------------------
19282
+  (0.0ms) rollback transaction
19283
+  (0.0ms) begin transaction
19284
+ --------------------------------------------------------
19285
+ BootstrapFormTest: test_allows_the_form_object_to_be_nil
19286
+ --------------------------------------------------------
19287
+  (0.0ms) rollback transaction
19288
+  (0.0ms) begin transaction
19289
+ ---------------------------------------------------------------
19290
+ BootstrapFormTest: test_bootstrap_form_tag_acts_like_a_form_tag
19291
+ ---------------------------------------------------------------
19292
+  (0.0ms) rollback transaction
19293
+  (0.0ms) begin transaction
19294
+ ------------------------------------------------------------------------------
19295
+ BootstrapFormTest: test_bootstrap_form_tag_allows_an_empty_name_for_checkboxes
19296
+ ------------------------------------------------------------------------------
19297
+  (0.0ms) rollback transaction
19298
+  (0.1ms) begin transaction
19299
+ --------------------------------------------------------------------------
19300
+ BootstrapFormTest: test_bootstrap_form_tag_does_not_clobber_custom_options
19301
+ --------------------------------------------------------------------------
19302
+  (0.0ms) rollback transaction
19303
+  (0.1ms) begin transaction
19304
+ ---------------------------------------------------------------------
19305
+ BootstrapFormTest: test_changing_the_class_name_for_the_alert_message
19306
+ ---------------------------------------------------------------------
19307
+  (0.0ms) rollback transaction
19308
+  (0.0ms) begin transaction
19309
+ ---------------------------------------------------------------
19310
+ BootstrapFormTest: test_custom_input_width_for_horizontal_forms
19311
+ ---------------------------------------------------------------
19312
+  (0.0ms) rollback transaction
19313
+  (0.1ms) begin transaction
19314
+ ---------------------------------------------------------------
19315
+ BootstrapFormTest: test_custom_label_width_for_horizontal_forms
19316
+ ---------------------------------------------------------------
19317
+  (0.0ms) rollback transaction
19318
+  (0.0ms) begin transaction
19319
+ -------------------------------------------
19320
+ BootstrapFormTest: test_default-style_forms
19321
+ -------------------------------------------
19322
+  (0.1ms) rollback transaction
19323
+  (0.0ms) begin transaction
19324
+ -------------------------------------------------------------------------
19325
+ BootstrapFormTest: test_error_summary_returns_an_unordered_list_of_errors
19326
+ -------------------------------------------------------------------------
19327
+  (0.0ms) rollback transaction
19328
+  (0.0ms) begin transaction
19329
+ ----------------------------------------------------------------------------------------------------------------------
19330
+ BootstrapFormTest: test_errors_display_correctly_and_inline_errors_are_turned_off_by_default_when_label_errors_is_true
19331
+ ----------------------------------------------------------------------------------------------------------------------
19332
+  (0.0ms) rollback transaction
19333
+  (0.0ms) begin transaction
19334
+ -----------------------------------------------------------------------------------------------------------
19335
+ BootstrapFormTest: test_errors_display_correctly_and_inline_errors_can_also_be_on_when_label_errors_is_true
19336
+ -----------------------------------------------------------------------------------------------------------
19337
+  (0.1ms) rollback transaction
19338
+  (0.1ms) begin transaction
19339
+ ----------------------------------------------------------------
19340
+ BootstrapFormTest: test_errors_on_hide_attribute_name_in_message
19341
+ ----------------------------------------------------------------
19342
+  (0.0ms) rollback transaction
19343
+  (0.0ms) begin transaction
19344
+ ------------------------------------------------------------------------------------------
19345
+ BootstrapFormTest: test_errors_on_renders_the_errors_for_a_specific_attribute_when_invalid
19346
+ ------------------------------------------------------------------------------------------
19347
+  (0.1ms) rollback transaction
19348
+  (0.0ms) begin transaction
19349
+ -------------------------------------------------------------------------------------
19350
+ BootstrapFormTest: test_existing_styles_aren't_clobbered_when_specifying_a_form_style
19351
+ -------------------------------------------------------------------------------------
19352
+  (0.0ms) rollback transaction
19353
+  (0.1ms) begin transaction
19354
+ --------------------------------------------------------------------------------------------
19355
+ BootstrapFormTest: test_given_role_attribute_should_not_be_covered_by_default_role_attribute
19356
+ --------------------------------------------------------------------------------------------
19357
+  (0.0ms) rollback transaction
19358
+  (0.0ms) begin transaction
19359
+ ---------------------------------------------------------------------------------------------------
19360
+ BootstrapFormTest: test_help_is_preserved_when_inline_errors:_false_is_passed_to_bootstrap_form_for
19361
+ ---------------------------------------------------------------------------------------------------
19362
+  (0.0ms) rollback transaction
19363
+  (0.0ms) begin transaction
19364
+ ----------------------------------------------
19365
+ BootstrapFormTest: test_horizontal-style_forms
19366
+ ----------------------------------------------
19367
+  (0.0ms) rollback transaction
19368
+  (0.0ms) begin transaction
19369
+ ------------------------------------------
19370
+ BootstrapFormTest: test_inline-style_forms
19371
+ ------------------------------------------
19372
+  (0.0ms) rollback transaction
19373
+  (0.0ms) begin transaction
19374
+ --------------------------------------------------------------------------
19375
+ BootstrapFormTest: test_label_error_messages_use_humanized_attribute_names
19376
+ --------------------------------------------------------------------------
19377
+  (0.0ms) rollback transaction
19378
+  (0.0ms) begin transaction
19379
+ --------------------------------------------------------------------------------------------------------------------------------
19380
+ BootstrapFormTest: test_the_field_contains_the_error_and_is_not_wrapped_in_div.field_with_errors_when_bootstrap_form_for_is_used
19381
+ --------------------------------------------------------------------------------------------------------------------------------
19382
+  (0.0ms) rollback transaction
19383
+  (0.0ms) begin transaction
19384
+ ---------------------------------------------------------------------------------------------
19385
+ BootstrapFormTest: test_the_field_is_wrapped_with_div.field_with_errors_when_form_for_is_used
19386
+ ---------------------------------------------------------------------------------------------
19387
+  (0.0ms) rollback transaction
19388
+  (0.0ms) begin transaction
19389
+ ------------------------------------------------------------------
19390
+ BootstrapOtherComponentsTest: test_override_primary_button_classes
19391
+ ------------------------------------------------------------------
19392
+  (0.0ms) rollback transaction
19393
+  (0.1ms) begin transaction
19394
+ -----------------------------------------------------------------
19395
+ BootstrapOtherComponentsTest: test_override_submit_button_classes
19396
+ -----------------------------------------------------------------
19397
+  (0.0ms) rollback transaction
19398
+  (0.0ms) begin transaction
19399
+ -------------------------------------------------------------------------
19400
+ BootstrapOtherComponentsTest: test_primary_button_uses_proper_css_classes
19401
+ -------------------------------------------------------------------------
19402
+  (0.1ms) rollback transaction
19403
+  (0.1ms) begin transaction
19404
+ -------------------------------------------------
19405
+ BootstrapOtherComponentsTest: test_static_control
19406
+ -------------------------------------------------
19407
+  (0.0ms) rollback transaction
19408
+  (0.0ms) begin transaction
19409
+ ------------------------------------------------------------------------
19410
+ BootstrapOtherComponentsTest: test_static_control_doesn't_require_a_name
19411
+ ------------------------------------------------------------------------
19412
+  (0.0ms) rollback transaction
19413
+  (0.0ms) begin transaction
19414
+ -------------------------------------------------------------------------------------
19415
+ BootstrapOtherComponentsTest: test_static_control_doesn't_require_an_actual_attribute
19416
+ -------------------------------------------------------------------------------------
19417
+  (0.0ms) rollback transaction
19418
+  (1.2ms) begin transaction
19419
+ ------------------------------------------------------------------------------
19420
+ BootstrapOtherComponentsTest: test_submit_button_defaults_to_rails_action_name
19421
+ ------------------------------------------------------------------------------
19422
+  (0.1ms) rollback transaction
19423
+  (0.1ms) begin transaction
19424
+ ----------------------------------------------------------------------------
19425
+ BootstrapOtherComponentsTest: test_submit_button_uses_default_button_classes
19426
+ ----------------------------------------------------------------------------
19427
+  (0.0ms) rollback transaction
19428
+  (0.0ms) begin transaction
19429
+ ---------------------------------------------------------------------------------------
19430
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_inline_radios_correctly
19431
+ ---------------------------------------------------------------------------------------
19432
+  (0.0ms) rollback transaction
19433
+  (0.0ms) begin transaction
19434
+ -----------------------------------------------------------------------------------------------
19435
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_label_defined_by_Proc_correctly
19436
+ -----------------------------------------------------------------------------------------------
19437
+  (0.0ms) rollback transaction
19438
+  (0.1ms) begin transaction
19439
+ -------------------------------------------------------------------------------------------------
19440
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_label_defined_by_lambda_correctly
19441
+ -------------------------------------------------------------------------------------------------
19442
+  (0.4ms) rollback transaction
19443
+  (0.0ms) begin transaction
19444
+ -----------------------------------------------------------------------------------------
19445
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_correctly
19446
+ -----------------------------------------------------------------------------------------
19447
+  (0.0ms) rollback transaction
19448
+  (0.0ms) begin transaction
19449
+ --------------------------------------------------------------------------------------------------------------------
19450
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_with_label_defined_by_Proc_correctly
19451
+ --------------------------------------------------------------------------------------------------------------------
19452
+  (0.0ms) rollback transaction
19453
+  (0.0ms) begin transaction
19454
+ ----------------------------------------------------------------------------------------------------------------------
19455
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_with_label_defined_by_lambda_correctly
19456
+ ----------------------------------------------------------------------------------------------------------------------
19457
+  (0.0ms) rollback transaction
19458
+  (0.0ms) begin transaction
19459
+ --------------------------------------------------------------------------------------------------------------------
19460
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_with_value_defined_by_Proc_correctly
19461
+ --------------------------------------------------------------------------------------------------------------------
19462
+  (0.0ms) rollback transaction
19463
+  (0.0ms) begin transaction
19464
+ ----------------------------------------------------------------------------------------------------------------------
19465
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_with_value_defined_by_lambda_correctly
19466
+ ----------------------------------------------------------------------------------------------------------------------
19467
+  (0.0ms) rollback transaction
19468
+  (0.0ms) begin transaction
19469
+ ----------------------------------------------------------------------------------------
19470
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_the_form_group_correctly
19471
+ ----------------------------------------------------------------------------------------
19472
+  (0.0ms) rollback transaction
19473
+  (0.0ms) begin transaction
19474
+ -----------------------------------------------------------------------------------------------
19475
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_value_defined_by_Proc_correctly
19476
+ -----------------------------------------------------------------------------------------------
19477
+  (0.0ms) rollback transaction
19478
+  (0.0ms) begin transaction
19479
+ -------------------------------------------------------------------------------------------------
19480
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_value_defined_by_lambda_correctly
19481
+ -------------------------------------------------------------------------------------------------
19482
+  (0.0ms) rollback transaction
19483
+  (0.0ms) begin transaction
19484
+ ---------------------------------------------------------------------------------------------
19485
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_with_checked_option_correctly
19486
+ ---------------------------------------------------------------------------------------------
19487
+  (0.0ms) rollback transaction
19488
+  (0.0ms) begin transaction
19489
+ ----------------------------------------------------------------------------------
19490
+ BootstrapRadioButtonTest: test_radio_button_disabled_inline_label_is_set_correctly
19491
+ ----------------------------------------------------------------------------------
19492
+  (0.1ms) rollback transaction
19493
+  (0.0ms) begin transaction
19494
+ ---------------------------------------------------------------------------
19495
+ BootstrapRadioButtonTest: test_radio_button_disabled_label_is_set_correctly
19496
+ ---------------------------------------------------------------------------
19497
+  (0.1ms) rollback transaction
19498
+  (0.0ms) begin transaction
19499
+ -------------------------------------------------------------------------------
19500
+ BootstrapRadioButtonTest: test_radio_button_inline_label_class_is_set_correctly
19501
+ -------------------------------------------------------------------------------
19502
+  (0.0ms) rollback transaction
19503
+  (0.1ms) begin transaction
19504
+ -------------------------------------------------------------------------
19505
+ BootstrapRadioButtonTest: test_radio_button_inline_label_is_set_correctly
19506
+ -------------------------------------------------------------------------
19507
+  (0.0ms) rollback transaction
19508
+  (0.0ms) begin transaction
19509
+ ----------------------------------------------------------------
19510
+ BootstrapRadioButtonTest: test_radio_button_is_wrapped_correctly
19511
+ ----------------------------------------------------------------
19512
+  (0.0ms) rollback transaction
19513
+  (0.0ms) begin transaction
19514
+ ------------------------------------------------------------------------
19515
+ BootstrapRadioButtonTest: test_radio_button_label_class_is_set_correctly
19516
+ ------------------------------------------------------------------------
19517
+  (0.0ms) rollback transaction
19518
+  (0.0ms) begin transaction
19519
+ ---------------------------------------------------------------------------
19520
+ BootstrapSelectsTest: test_bootstrap_specific_options_are_handled_correctly
19521
+ ---------------------------------------------------------------------------
19522
+  (0.0ms) rollback transaction
19523
+  (0.0ms) begin transaction
19524
+ -------------------------------------------------------------------
19525
+ BootstrapSelectsTest: test_collection_selects_are_wrapped_correctly
19526
+ -------------------------------------------------------------------
19527
+  (0.0ms) rollback transaction
19528
+  (0.0ms) begin transaction
19529
+ -------------------------------------------------------------------------------------------------
19530
+ BootstrapSelectsTest: test_collection_selects_with_options_and_html_options_are_wrapped_correctly
19531
+ -------------------------------------------------------------------------------------------------
19532
+  (0.0ms) rollback transaction
19533
+  (0.0ms) begin transaction
19534
+ --------------------------------------------------------------------------------
19535
+ BootstrapSelectsTest: test_collection_selects_with_options_are_wrapped_correctly
19536
+ --------------------------------------------------------------------------------
19537
+  (0.0ms) rollback transaction
19538
+  (0.0ms) begin transaction
19539
+ -------------------------------------------------------------
19540
+ BootstrapSelectsTest: test_date_selects_are_wrapped_correctly
19541
+ -------------------------------------------------------------
19542
+  (0.1ms) rollback transaction
19543
+  (0.0ms) begin transaction
19544
+ -------------------------------------------------------------------------------------------
19545
+ BootstrapSelectsTest: test_date_selects_with_options_and_html_options_are_wrapped_correctly
19546
+ -------------------------------------------------------------------------------------------
19547
+  (0.1ms) rollback transaction
19548
+  (0.0ms) begin transaction
19549
+ --------------------------------------------------------------------------
19550
+ BootstrapSelectsTest: test_date_selects_with_options_are_wrapped_correctly
19551
+ --------------------------------------------------------------------------
19552
+  (0.0ms) rollback transaction
19553
+  (0.0ms) begin transaction
19554
+ -----------------------------------------------------------------
19555
+ BootstrapSelectsTest: test_datetime_selects_are_wrapped_correctly
19556
+ -----------------------------------------------------------------
19557
+  (0.1ms) rollback transaction
19558
+  (0.0ms) begin transaction
19559
+ -----------------------------------------------------------------------------------------------
19560
+ BootstrapSelectsTest: test_datetime_selects_with_options_and_html_options_are_wrapped_correctly
19561
+ -----------------------------------------------------------------------------------------------
19562
+  (0.1ms) rollback transaction
19563
+  (0.1ms) begin transaction
19564
+ ------------------------------------------------------------------------------
19565
+ BootstrapSelectsTest: test_datetime_selects_with_options_are_wrapped_correctly
19566
+ ------------------------------------------------------------------------------
19567
+  (0.0ms) rollback transaction
19568
+  (0.0ms) begin transaction
19569
+ ---------------------------------------------------------------------------
19570
+ BootstrapSelectsTest: test_grouped_collection_selects_are_wrapped_correctly
19571
+ ---------------------------------------------------------------------------
19572
+  (0.1ms) rollback transaction
19573
+  (0.1ms) begin transaction
19574
+ ---------------------------------------------------------------------------------------------------------
19575
+ BootstrapSelectsTest: test_grouped_collection_selects_with_options_and_html_options_are_wrapped_correctly
19576
+ ---------------------------------------------------------------------------------------------------------
19577
+  (0.1ms) rollback transaction
19578
+  (0.0ms) begin transaction
19579
+ ----------------------------------------------------------------------------------------
19580
+ BootstrapSelectsTest: test_grouped_collection_selects_with_options_are_wrapped_correctly
19581
+ ----------------------------------------------------------------------------------------
19582
+  (0.1ms) rollback transaction
19583
+  (0.0ms) begin transaction
19584
+ --------------------------------------------------------
19585
+ BootstrapSelectsTest: test_selects_are_wrapped_correctly
19586
+ --------------------------------------------------------
19587
+  (0.0ms) rollback transaction
19588
+  (0.0ms) begin transaction
19589
+ ---------------------------------------------------------
19590
+ BootstrapSelectsTest: test_selects_render_labels_properly
19591
+ ---------------------------------------------------------
19592
+  (0.0ms) rollback transaction
19593
+  (0.0ms) begin transaction
19594
+ -------------------------------------------------------------------------------------------
19595
+ BootstrapSelectsTest: test_selects_with_both_options_and_html_options_are_wrapped_correctly
19596
+ -------------------------------------------------------------------------------------------
19597
+  (0.0ms) rollback transaction
19598
+  (0.0ms) begin transaction
19599
+ ---------------------------------------------------------------------
19600
+ BootstrapSelectsTest: test_selects_with_options_are_wrapped_correctly
19601
+ ---------------------------------------------------------------------
19602
+  (0.0ms) rollback transaction
19603
+  (0.0ms) begin transaction
19604
+ -------------------------------------------------------------
19605
+ BootstrapSelectsTest: test_time_selects_are_wrapped_correctly
19606
+ -------------------------------------------------------------
19607
+  (0.1ms) rollback transaction
19608
+  (0.0ms) begin transaction
19609
+ -------------------------------------------------------------------------------------------
19610
+ BootstrapSelectsTest: test_time_selects_with_options_and_html_options_are_wrapped_correctly
19611
+ -------------------------------------------------------------------------------------------
19612
+  (0.0ms) rollback transaction
19613
+  (0.0ms) begin transaction
19614
+ --------------------------------------------------------------------------
19615
+ BootstrapSelectsTest: test_time_selects_with_options_are_wrapped_correctly
19616
+ --------------------------------------------------------------------------
19617
+  (0.0ms) rollback transaction
19618
+  (0.0ms) begin transaction
19619
+ ------------------------------------------------------------------
19620
+ BootstrapSelectsTest: test_time_zone_selects_are_wrapped_correctly
19621
+ ------------------------------------------------------------------
19622
+  (0.1ms) rollback transaction
19623
+  (0.3ms) begin transaction
19624
+ -------------------------------------------------------------------------
19625
+ BootstrapCheckboxTest: test_check_box_accepts_a_block_to_define_the_label
19626
+ -------------------------------------------------------------------------
19627
+  (0.1ms) rollback transaction
19628
+  (0.0ms) begin transaction
19629
+ ------------------------------------------------------------------
19630
+ BootstrapCheckboxTest: test_check_box_accepts_a_custom_label_class
19631
+ ------------------------------------------------------------------
19632
+  (0.1ms) rollback transaction
19633
+  (0.0ms) begin transaction
19634
+ ----------------------------------------------------------
19635
+ BootstrapCheckboxTest: test_check_box_is_wrapped_correctly
19636
+ ----------------------------------------------------------
19637
+  (0.0ms) rollback transaction
19638
+  (0.0ms) begin transaction
19639
+ -------------------------------------------------------
19640
+ BootstrapCheckboxTest: test_check_box_label_allows_html
19641
+ -------------------------------------------------------
19642
+  (0.0ms) rollback transaction
19643
+  (0.0ms) begin transaction
19644
+ ---------------------------------------------------------------------------------------------
19645
+ BootstrapCheckboxTest: test_check_box_responds_to_checked_value_and_unchecked_value_arguments
19646
+ ---------------------------------------------------------------------------------------------
19647
+  (0.0ms) rollback transaction
19648
+  (0.0ms) begin transaction
19649
+ --------------------------------------------------------------------------------------
19650
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_inline_checkboxes_correctly
19651
+ --------------------------------------------------------------------------------------
19652
+  (0.1ms) rollback transaction
19653
+  (0.1ms) begin transaction
19654
+ ----------------------------------------------------------------------------------------
19655
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_correctly
19656
+ ----------------------------------------------------------------------------------------
19657
+  (0.0ms) rollback transaction
19658
+  (0.1ms) begin transaction
19659
+ ---------------------------------------------------------------------------------------------------------------------------------
19660
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_with_labels_defined_by_Proc_:text_method_correctly
19661
+ ---------------------------------------------------------------------------------------------------------------------------------
19662
+  (0.0ms) rollback transaction
19663
+  (0.0ms) begin transaction
19664
+ -----------------------------------------------------------------------------------------------------------------------------------
19665
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_with_labels_defined_by_lambda_:text_method_correctly
19666
+ -----------------------------------------------------------------------------------------------------------------------------------
19667
+  (0.0ms) rollback transaction
19668
+  (0.0ms) begin transaction
19669
+ ----------------------------------------------------------------------------------------------------------------------------------
19670
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_with_values_defined_by_Proc_:value_method_correctly
19671
+ ----------------------------------------------------------------------------------------------------------------------------------
19672
+  (0.0ms) rollback transaction
19673
+  (0.0ms) begin transaction
19674
+ ------------------------------------------------------------------------------------------------------------------------------------
19675
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_with_values_defined_by_lambda_:value_method_correctly
19676
+ ------------------------------------------------------------------------------------------------------------------------------------
19677
+  (0.0ms) rollback transaction
19678
+  (0.0ms) begin transaction
19679
+ -----------------------------------------------------------------------------------
19680
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_the_form_group_correctly
19681
+ -----------------------------------------------------------------------------------
19682
+  (0.0ms) rollback transaction
19683
+  (0.0ms) begin transaction
19684
+ ----------------------------------------------------------------------------------------
19685
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_with_checked_option_correctly
19686
+ ----------------------------------------------------------------------------------------
19687
+  (0.0ms) rollback transaction
19688
+  (0.0ms) begin transaction
19689
+ ----------------------------------------------------------------------------------------------------------------
19690
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_with_checked_option_correctly_with_Proc_:value_method
19691
+ ----------------------------------------------------------------------------------------------------------------
19692
+  (0.0ms) rollback transaction
19693
+  (0.0ms) begin transaction
19694
+ --------------------------------------------------------------------------------------------------
19695
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_with_multiple_checked_options_correctly
19696
+ --------------------------------------------------------------------------------------------------
19697
+  (0.0ms) rollback transaction
19698
+  (0.0ms) begin transaction
19699
+ ----------------------------------------------------------------------------------------------------------------------------
19700
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_with_multiple_checked_options_correctly_with_lambda_:value_method
19701
+ ----------------------------------------------------------------------------------------------------------------------------
19702
+  (0.0ms) rollback transaction
19703
+  (0.0ms) begin transaction
19704
+ -----------------------------------------------------------------------------------------------
19705
+ BootstrapCheckboxTest: test_collection_check_boxes_sanitizes_values_when_generating_label_`for`
19706
+ -----------------------------------------------------------------------------------------------
19707
+  (0.0ms) rollback transaction
19708
+  (0.0ms) begin transaction
19709
+ -------------------------------------------------------------------------
19710
+ BootstrapCheckboxTest: test_disabled_check_box_has_proper_wrapper_classes
19711
+ -------------------------------------------------------------------------
19712
+  (0.0ms) rollback transaction
19713
+  (0.0ms) begin transaction
19714
+ -----------------------------------------------------
19715
+ BootstrapCheckboxTest: test_disabled_inline_check_box
19716
+ -----------------------------------------------------
19717
+  (0.0ms) rollback transaction
19718
+  (0.0ms) begin transaction
19719
+ ---------------------------------------------
19720
+ BootstrapCheckboxTest: test_inline_checkboxes
19721
+ ---------------------------------------------
19722
+  (0.0ms) rollback transaction
19723
+  (0.0ms) begin transaction
19724
+ ---------------------------------------------------------------------
19725
+ BootstrapCheckboxTest: test_inline_checkboxes_with_custom_label_class
19726
+ ---------------------------------------------------------------------
19727
+  (0.0ms) rollback transaction
19728
+  (0.0ms) begin transaction
19729
+ --------------------------------------------------------------------------
19730
+ BootstrapFieldsTest: test_bootstrap_form_for_helper_works_for_associations
19731
+ --------------------------------------------------------------------------
19732
+  (0.1ms) rollback transaction
19733
+  (0.0ms) begin transaction
19734
+ ----------------------------------------------------------------------------------------
19735
+ BootstrapFieldsTest: test_bootstrap_form_for_helper_works_for_serialized_hash_attributes
19736
+ ----------------------------------------------------------------------------------------
19737
+  (0.0ms) rollback transaction
19738
+  (0.0ms) begin transaction
19739
+ ------------------------------------------------------------
19740
+ BootstrapFieldsTest: test_color_fields_are_wrapped_correctly
19741
+ ------------------------------------------------------------
19742
+  (0.1ms) rollback transaction
19743
+  (0.1ms) begin transaction
19744
+ -----------------------------------------------------------
19745
+ BootstrapFieldsTest: test_date_fields_are_wrapped_correctly
19746
+ -----------------------------------------------------------
19747
+  (0.1ms) rollback transaction
19748
+  (0.0ms) begin transaction
19749
+ ----------------------------------------------------------------
19750
+ BootstrapFieldsTest: test_date_time_fields_are_wrapped_correctly
19751
+ ----------------------------------------------------------------
19752
+  (0.0ms) rollback transaction
19753
+  (0.0ms) begin transaction
19754
+ ----------------------------------------------------------------------
19755
+ BootstrapFieldsTest: test_date_time_local_fields_are_wrapped_correctly
19756
+ ----------------------------------------------------------------------
19757
+  (0.0ms) rollback transaction
19758
+  (0.1ms) begin transaction
19759
+ ------------------------------------------------------------
19760
+ BootstrapFieldsTest: test_email_fields_are_wrapped_correctly
19761
+ ------------------------------------------------------------
19762
+  (0.1ms) rollback transaction
19763
+  (0.0ms) begin transaction
19764
+ ------------------------------------------------------------------------------------------
19765
+ BootstrapFieldsTest: test_fields_for_correctly_passes_horizontal_style_from_parent_builder
19766
+ ------------------------------------------------------------------------------------------
19767
+  (0.1ms) rollback transaction
19768
+  (0.0ms) begin transaction
19769
+ --------------------------------------------------------------------------------------
19770
+ BootstrapFieldsTest: test_fields_for_correctly_passes_inline_style_from_parent_builder
19771
+ --------------------------------------------------------------------------------------
19772
+  (0.0ms) rollback transaction
19773
+  (0.0ms) begin transaction
19774
+ -----------------------------------------------------------
19775
+ BootstrapFieldsTest: test_file_fields_are_wrapped_correctly
19776
+ -----------------------------------------------------------
19777
+  (0.1ms) rollback transaction
19778
+  (0.0ms) begin transaction
19779
+ -----------------------------------------------------
19780
+ BootstrapFieldsTest: test_hidden_fields_are_supported
19781
+ -----------------------------------------------------
19782
+  (0.0ms) rollback transaction
19783
+  (0.0ms) begin transaction
19784
+ ------------------------------------------------------------------
19785
+ BootstrapFieldsTest: test_month_local_fields_are_wrapped_correctly
19786
+ ------------------------------------------------------------------
19787
+  (0.1ms) rollback transaction
19788
+  (0.0ms) begin transaction
19789
+ -------------------------------------------------------------
19790
+ BootstrapFieldsTest: test_number_fields_are_wrapped_correctly
19791
+ -------------------------------------------------------------
19792
+  (0.1ms) rollback transaction
19793
+  (0.0ms) begin transaction
19794
+ ---------------------------------------------------------------
19795
+ BootstrapFieldsTest: test_password_fields_are_wrapped_correctly
19796
+ ---------------------------------------------------------------
19797
+  (0.2ms) rollback transaction
19798
+  (0.0ms) begin transaction
19799
+ ----------------------------------------------------------------------
19800
+ BootstrapFieldsTest: test_phone/telephone_fields_are_wrapped_correctly
19801
+ ----------------------------------------------------------------------
19802
+  (0.1ms) rollback transaction
19803
+  (0.0ms) begin transaction
19804
+ ------------------------------------------------------------
19805
+ BootstrapFieldsTest: test_range_fields_are_wrapped_correctly
19806
+ ------------------------------------------------------------
19807
+  (0.2ms) rollback transaction
19808
+  (0.0ms) begin transaction
19809
+ -------------------------------------------------------------
19810
+ BootstrapFieldsTest: test_search_fields_are_wrapped_correctly
19811
+ -------------------------------------------------------------
19812
+  (0.1ms) rollback transaction
19813
+  (0.0ms) begin transaction
19814
+ ----------------------------------------------------------
19815
+ BootstrapFieldsTest: test_text_areas_are_wrapped_correctly
19816
+ ----------------------------------------------------------
19817
+  (0.1ms) rollback transaction
19818
+  (0.0ms) begin transaction
19819
+ -----------------------------------------------------------
19820
+ BootstrapFieldsTest: test_text_fields_are_wrapped_correctly
19821
+ -----------------------------------------------------------
19822
+  (0.0ms) rollback transaction
19823
+  (0.0ms) begin transaction
19824
+ -----------------------------------------------------------
19825
+ BootstrapFieldsTest: test_time_fields_are_wrapped_correctly
19826
+ -----------------------------------------------------------
19827
+  (0.1ms) rollback transaction
19828
+  (0.0ms) begin transaction
19829
+ ----------------------------------------------------------
19830
+ BootstrapFieldsTest: test_url_fields_are_wrapped_correctly
19831
+ ----------------------------------------------------------
19832
+  (0.0ms) rollback transaction
19833
+  (0.0ms) begin transaction
19834
+ -----------------------------------------------------------
19835
+ BootstrapFieldsTest: test_week_fields_are_wrapped_correctly
19836
+ -----------------------------------------------------------
19837
+  (0.0ms) rollback transaction
19838
+  (0.0ms) begin transaction
19839
+ ---------------------------------------------------------------------------
19840
+ BootstrapFormGroupTest: test_:input_group_class_should_apply_to_input-group
19841
+ ---------------------------------------------------------------------------
19842
+  (0.0ms) rollback transaction
19843
+  (0.0ms) begin transaction
19844
+ --------------------------------------------------------------------------------------------------------------
19845
+ BootstrapFormGroupTest: test_adding_a_custom_label_and_changing_the_label_text_via_the_html_options_label_hash
19846
+ --------------------------------------------------------------------------------------------------------------
19847
+  (0.0ms) rollback transaction
19848
+  (0.0ms) begin transaction
19849
+ ----------------------------------------------------------------------------------------
19850
+ BootstrapFormGroupTest: test_adding_a_custom_label_class_via_the_html_options_label_hash
19851
+ ----------------------------------------------------------------------------------------
19852
+  (0.0ms) rollback transaction
19853
+  (0.0ms) begin transaction
19854
+ --------------------------------------------------------------------------------------
19855
+ BootstrapFormGroupTest: test_adding_a_custom_label_class_via_the_label_class_parameter
19856
+ --------------------------------------------------------------------------------------
19857
+  (0.0ms) rollback transaction
19858
+  (0.1ms) begin transaction
19859
+ ------------------------------------------------------
19860
+ BootstrapFormGroupTest: test_adding_an_icon_to_a_field
19861
+ ------------------------------------------------------
19862
+  (0.0ms) rollback transaction
19863
+  (0.0ms) begin transaction
19864
+ -----------------------------------------------
19865
+ BootstrapFormGroupTest: test_adding_append_text
19866
+ -----------------------------------------------
19867
+  (0.0ms) rollback transaction
19868
+  (0.0ms) begin transaction
19869
+ ----------------------------------------------------------------
19870
+ BootstrapFormGroupTest: test_adding_both_prepend_and_append_text
19871
+ ----------------------------------------------------------------
19872
+  (0.0ms) rollback transaction
19873
+  (0.0ms) begin transaction
19874
+ ------------------------------------------------
19875
+ BootstrapFormGroupTest: test_adding_prepend_text
19876
+ ------------------------------------------------
19877
+  (0.0ms) rollback transaction
19878
+  (0.0ms) begin transaction
19879
+ ------------------------------------------------------------------------
19880
+ BootstrapFormGroupTest: test_adds_class_to_wrapped_form_group_by_a_field
19881
+ ------------------------------------------------------------------------
19882
+  (0.0ms) rollback transaction
19883
+  (0.0ms) begin transaction
19884
+ ------------------------------------------------------------------------------------
19885
+ BootstrapFormGroupTest: test_adds_class_to_wrapped_form_group_by_a_field_with_errors
19886
+ ------------------------------------------------------------------------------------
19887
+  (0.0ms) rollback transaction
19888
+  (0.0ms) begin transaction
19889
+ --------------------------------------------------------------------------------------------------------------------
19890
+ BootstrapFormGroupTest: test_adds_class_to_wrapped_form_group_by_a_field_with_errors_when_bootstrap_form_for_is_used
19891
+ --------------------------------------------------------------------------------------------------------------------
19892
+  (0.0ms) rollback transaction
19893
+  (0.1ms) begin transaction
19894
+ -----------------------------------------------------------------------------------
19895
+ BootstrapFormGroupTest: test_adds_data-attributes_(or_any_other_options)_to_wrapper
19896
+ -----------------------------------------------------------------------------------
19897
+  (0.0ms) rollback transaction
19898
+  (0.0ms) begin transaction
19899
+ ---------------------------------------------------------------------
19900
+ BootstrapFormGroupTest: test_adds_offset_for_form_group_without_label
19901
+ ---------------------------------------------------------------------
19902
+  (0.0ms) rollback transaction
19903
+  (0.0ms) begin transaction
19904
+ --------------------------------------------------------------------------------------------
19905
+ BootstrapFormGroupTest: test_adds_offset_for_form_group_without_label_but_specific_label_col
19906
+ --------------------------------------------------------------------------------------------
19907
+  (0.0ms) rollback transaction
19908
+  (0.0ms) begin transaction
19909
+ ------------------------------------------------------
19910
+ BootstrapFormGroupTest: test_append_and_prepend_button
19911
+ ------------------------------------------------------
19912
+  (0.0ms) rollback transaction
19913
+  (0.0ms) begin transaction
19914
+ ------------------------------------------------------------------------------------
19915
+ BootstrapFormGroupTest: test_changing_the_label_text_via_the_html_options_label_hash
19916
+ ------------------------------------------------------------------------------------
19917
+  (0.0ms) rollback transaction
19918
+  (0.1ms) begin transaction
19919
+ -----------------------------------------------------------------------------------
19920
+ BootstrapFormGroupTest: test_changing_the_label_text_via_the_label_option_parameter
19921
+ -----------------------------------------------------------------------------------
19922
+  (0.0ms) rollback transaction
19923
+  (0.0ms) begin transaction
19924
+ ------------------------------------------------------------
19925
+ BootstrapFormGroupTest: test_custom_form_group_layout_option
19926
+ ------------------------------------------------------------
19927
+  (0.0ms) rollback transaction
19928
+  (0.0ms) begin transaction
19929
+ ----------------------------------------------------------------------------------------------------
19930
+ BootstrapFormGroupTest: test_doesn't_throw_undefined_method_error_when_the_content_block_returns_nil
19931
+ ----------------------------------------------------------------------------------------------------
19932
+  (0.0ms) rollback transaction
19933
+  (0.0ms) begin transaction
19934
+ --------------------------------------------------------------------------
19935
+ BootstrapFormGroupTest: test_form_group_accepts_class_thorugh_options_hash
19936
+ --------------------------------------------------------------------------
19937
+  (0.0ms) rollback transaction
19938
+  (0.0ms) begin transaction
19939
+ -------------------------------------------------------------------------------------------------
19940
+ BootstrapFormGroupTest: test_form_group_accepts_class_thorugh_options_hash_without_needing_a_name
19941
+ -------------------------------------------------------------------------------------------------
19942
+  (0.0ms) rollback transaction
19943
+  (0.0ms) begin transaction
19944
+ ------------------------------------------------------------------------------------------------
19945
+ BootstrapFormGroupTest: test_form_group_adds_a_spacer_when_no_label_exists_for_a_horizontal_form
19946
+ ------------------------------------------------------------------------------------------------
19947
+  (0.0ms) rollback transaction
19948
+  (0.0ms) begin transaction
19949
+ -------------------------------------------------------------------------------------------------------------------
19950
+ BootstrapFormGroupTest: test_form_group_creates_a_valid_structure_and_allows_arbitrary_html_to_be_added_via_a_block
19951
+ -------------------------------------------------------------------------------------------------------------------
19952
+  (0.0ms) rollback transaction
19953
+  (0.1ms) begin transaction
19954
+ ---------------------------------------------------------------------------------------------------------------
19955
+ BootstrapFormGroupTest: test_form_group_overrides_the_label's_'class'_and_'for'_attributes_if_others_are_passed
19956
+ ---------------------------------------------------------------------------------------------------------------
19957
+  (0.0ms) rollback transaction
19958
+  (0.0ms) begin transaction
19959
+ ---------------------------------------------------------------------------------------------------------------
19960
+ BootstrapFormGroupTest: test_form_group_renders_the_"error"_class_and_message_corrrectly_when_object_is_invalid
19961
+ ---------------------------------------------------------------------------------------------------------------
19962
+  (0.1ms) rollback transaction
19963
+  (0.0ms) begin transaction
19964
+ -------------------------------------------------------------------
19965
+ BootstrapFormGroupTest: test_form_group_renders_the_label_correctly
19966
+ -------------------------------------------------------------------
19967
+  (0.0ms) rollback transaction
19968
+  (0.0ms) begin transaction
19969
+ ------------------------------------------------------------
19970
+ BootstrapFormGroupTest: test_help_messages_for_default_forms
19971
+ ------------------------------------------------------------
19972
+  (0.0ms) rollback transaction
19973
+  (0.0ms) begin transaction
19974
+ ---------------------------------------------------------------
19975
+ BootstrapFormGroupTest: test_help_messages_for_horizontal_forms
19976
+ ---------------------------------------------------------------
19977
+  (0.0ms) rollback transaction
19978
+  (0.1ms) begin transaction
19979
+ ----------------------------------------------------------------------------------------
19980
+ BootstrapFormGroupTest: test_help_messages_to_ignore_translation_when_user_disables_help
19981
+ ----------------------------------------------------------------------------------------
19982
+  (0.0ms) rollback transaction
19983
+  (0.0ms) begin transaction
19984
+ ------------------------------------------------------------------------
19985
+ BootstrapFormGroupTest: test_help_messages_to_look_up_I18n_automatically
19986
+ ------------------------------------------------------------------------
19987
+  (0.1ms) rollback transaction
19988
+  (0.0ms) begin transaction
19989
+ ----------------------------------------------------------------------------
19990
+ BootstrapFormGroupTest: test_help_messages_to_warn_about_deprecated_I18n_key
19991
+ ----------------------------------------------------------------------------
19992
+  (0.1ms) rollback transaction
19993
+  (0.0ms) begin transaction
19994
+ -------------------------------------------
19995
+ BootstrapFormGroupTest: test_hiding_a_label
19996
+ -------------------------------------------
19997
+  (0.0ms) rollback transaction
19998
+  (0.0ms) begin transaction
19999
+ ---------------------------------------------------------------------------------------
20000
+ BootstrapFormGroupTest: test_non-default_column_span_on_form_is_reflected_in_form_group
20001
+ ---------------------------------------------------------------------------------------
20002
+  (0.0ms) rollback transaction
20003
+  (0.1ms) begin transaction
20004
+ --------------------------------------------------------------------------
20005
+ BootstrapFormGroupTest: test_non-default_column_span_on_form_isn't_mutated
20006
+ --------------------------------------------------------------------------
20007
+  (0.0ms) rollback transaction
20008
+  (0.1ms) begin transaction
20009
+ ---------------------------------------------------------------------------------
20010
+ BootstrapFormGroupTest: test_passing_options_to_a_form_control_get_passed_through
20011
+ ---------------------------------------------------------------------------------
20012
+  (0.0ms) rollback transaction
20013
+  (0.0ms) begin transaction
20014
+ ------------------------------------------------------------------------------
20015
+ BootstrapFormGroupTest: test_preventing_a_label_from_having_the_required_class
20016
+ ------------------------------------------------------------------------------
20017
+  (0.0ms) rollback transaction
20018
+  (0.0ms) begin transaction
20019
+ -------------------------------------------------------------------------------------------------
20020
+ BootstrapFormGroupTest: test_single_form_group_call_in_horizontal_form_should_not_be_smash_design
20021
+ -------------------------------------------------------------------------------------------------
20022
+  (0.0ms) rollback transaction
20023
+  (0.0ms) begin transaction
20024
+ ---------------------------------------------
20025
+ BootstrapFormGroupTest: test_skipping_a_label
20026
+ ---------------------------------------------
20027
+  (0.1ms) rollback transaction
20028
+  (0.0ms) begin transaction
20029
+ -------------------------------------------------------------------------------
20030
+ BootstrapFormTest: test_alert_message_allows_the_error_summary_to_be_turned_off
20031
+ -------------------------------------------------------------------------------
20032
+  (0.0ms) rollback transaction
20033
+  (0.0ms) begin transaction
20034
+ ----------------------------------------------------------------------------------------------------------------
20035
+ BootstrapFormTest: test_alert_message_allows_the_error_summary_to_be_turned_on_with_inline_errors_also_turned_on
20036
+ ----------------------------------------------------------------------------------------------------------------
20037
+  (0.0ms) rollback transaction
20038
+  (0.0ms) begin transaction
20039
+ --------------------------------------------------------------------------------------------------
20040
+ BootstrapFormTest: test_alert_message_contains_the_error_summary_when_inline_errors_are_turned_off
20041
+ --------------------------------------------------------------------------------------------------
20042
+  (0.0ms) rollback transaction
20043
+  (0.0ms) begin transaction
20044
+ ----------------------------------------------------------
20045
+ BootstrapFormTest: test_alert_message_is_wrapped_correctly
20046
+ ----------------------------------------------------------
20047
+  (0.0ms) rollback transaction
20048
+  (0.0ms) begin transaction
20049
+ --------------------------------------------------------
20050
+ BootstrapFormTest: test_allows_the_form_object_to_be_nil
20051
+ --------------------------------------------------------
20052
+  (0.0ms) rollback transaction
20053
+  (0.0ms) begin transaction
20054
+ ---------------------------------------------------------------
20055
+ BootstrapFormTest: test_bootstrap_form_tag_acts_like_a_form_tag
20056
+ ---------------------------------------------------------------
20057
+  (0.1ms) rollback transaction
20058
+  (0.0ms) begin transaction
20059
+ ------------------------------------------------------------------------------
20060
+ BootstrapFormTest: test_bootstrap_form_tag_allows_an_empty_name_for_checkboxes
20061
+ ------------------------------------------------------------------------------
20062
+  (0.0ms) rollback transaction
20063
+  (0.0ms) begin transaction
20064
+ --------------------------------------------------------------------------
20065
+ BootstrapFormTest: test_bootstrap_form_tag_does_not_clobber_custom_options
20066
+ --------------------------------------------------------------------------
20067
+  (0.0ms) rollback transaction
20068
+  (0.0ms) begin transaction
20069
+ ---------------------------------------------------------------------
20070
+ BootstrapFormTest: test_changing_the_class_name_for_the_alert_message
20071
+ ---------------------------------------------------------------------
20072
+  (0.0ms) rollback transaction
20073
+  (0.0ms) begin transaction
20074
+ ---------------------------------------------------------------
20075
+ BootstrapFormTest: test_custom_input_width_for_horizontal_forms
20076
+ ---------------------------------------------------------------
20077
+  (0.1ms) rollback transaction
20078
+  (0.0ms) begin transaction
20079
+ ---------------------------------------------------------------
20080
+ BootstrapFormTest: test_custom_label_width_for_horizontal_forms
20081
+ ---------------------------------------------------------------
20082
+  (0.0ms) rollback transaction
20083
+  (0.1ms) begin transaction
20084
+ -------------------------------------------
20085
+ BootstrapFormTest: test_default-style_forms
20086
+ -------------------------------------------
20087
+  (0.0ms) rollback transaction
20088
+  (0.0ms) begin transaction
20089
+ -------------------------------------------------------------------------
20090
+ BootstrapFormTest: test_error_summary_returns_an_unordered_list_of_errors
20091
+ -------------------------------------------------------------------------
20092
+  (0.0ms) rollback transaction
20093
+  (0.0ms) begin transaction
20094
+ ----------------------------------------------------------------------------------------------------------------------
20095
+ BootstrapFormTest: test_errors_display_correctly_and_inline_errors_are_turned_off_by_default_when_label_errors_is_true
20096
+ ----------------------------------------------------------------------------------------------------------------------
20097
+  (0.0ms) rollback transaction
20098
+  (0.0ms) begin transaction
20099
+ -----------------------------------------------------------------------------------------------------------
20100
+ BootstrapFormTest: test_errors_display_correctly_and_inline_errors_can_also_be_on_when_label_errors_is_true
20101
+ -----------------------------------------------------------------------------------------------------------
20102
+  (0.0ms) rollback transaction
20103
+  (0.0ms) begin transaction
20104
+ ----------------------------------------------------------------
20105
+ BootstrapFormTest: test_errors_on_hide_attribute_name_in_message
20106
+ ----------------------------------------------------------------
20107
+  (0.0ms) rollback transaction
20108
+  (0.0ms) begin transaction
20109
+ ------------------------------------------------------------------------------------------
20110
+ BootstrapFormTest: test_errors_on_renders_the_errors_for_a_specific_attribute_when_invalid
20111
+ ------------------------------------------------------------------------------------------
20112
+  (0.0ms) rollback transaction
20113
+  (0.0ms) begin transaction
20114
+ -------------------------------------------------------------------------------------
20115
+ BootstrapFormTest: test_existing_styles_aren't_clobbered_when_specifying_a_form_style
20116
+ -------------------------------------------------------------------------------------
20117
+  (0.0ms) rollback transaction
20118
+  (0.0ms) begin transaction
20119
+ --------------------------------------------------------------------------------------------
20120
+ BootstrapFormTest: test_given_role_attribute_should_not_be_covered_by_default_role_attribute
20121
+ --------------------------------------------------------------------------------------------
20122
+  (0.0ms) rollback transaction
20123
+  (0.0ms) begin transaction
20124
+ ---------------------------------------------------------------------------------------------------
20125
+ BootstrapFormTest: test_help_is_preserved_when_inline_errors:_false_is_passed_to_bootstrap_form_for
20126
+ ---------------------------------------------------------------------------------------------------
20127
+  (0.0ms) rollback transaction
20128
+  (0.0ms) begin transaction
20129
+ ----------------------------------------------
20130
+ BootstrapFormTest: test_horizontal-style_forms
20131
+ ----------------------------------------------
20132
+  (0.0ms) rollback transaction
20133
+  (0.0ms) begin transaction
20134
+ ------------------------------------------
20135
+ BootstrapFormTest: test_inline-style_forms
20136
+ ------------------------------------------
20137
+  (0.0ms) rollback transaction
20138
+  (0.0ms) begin transaction
20139
+ --------------------------------------------------------------------------
20140
+ BootstrapFormTest: test_label_error_messages_use_humanized_attribute_names
20141
+ --------------------------------------------------------------------------
20142
+  (0.0ms) rollback transaction
20143
+  (0.1ms) begin transaction
20144
+ --------------------------------------------------------------------------------------------------------------------------------
20145
+ BootstrapFormTest: test_the_field_contains_the_error_and_is_not_wrapped_in_div.field_with_errors_when_bootstrap_form_for_is_used
20146
+ --------------------------------------------------------------------------------------------------------------------------------
20147
+  (0.0ms) rollback transaction
20148
+  (0.0ms) begin transaction
20149
+ ---------------------------------------------------------------------------------------------
20150
+ BootstrapFormTest: test_the_field_is_wrapped_with_div.field_with_errors_when_form_for_is_used
20151
+ ---------------------------------------------------------------------------------------------
20152
+  (0.0ms) rollback transaction
20153
+  (0.0ms) begin transaction
20154
+ ------------------------------------------------------------------
20155
+ BootstrapOtherComponentsTest: test_override_primary_button_classes
20156
+ ------------------------------------------------------------------
20157
+  (0.0ms) rollback transaction
20158
+  (0.0ms) begin transaction
20159
+ -----------------------------------------------------------------
20160
+ BootstrapOtherComponentsTest: test_override_submit_button_classes
20161
+ -----------------------------------------------------------------
20162
+  (0.0ms) rollback transaction
20163
+  (0.0ms) begin transaction
20164
+ -------------------------------------------------------------------------
20165
+ BootstrapOtherComponentsTest: test_primary_button_uses_proper_css_classes
20166
+ -------------------------------------------------------------------------
20167
+  (0.0ms) rollback transaction
20168
+  (0.0ms) begin transaction
20169
+ -------------------------------------------------
20170
+ BootstrapOtherComponentsTest: test_static_control
20171
+ -------------------------------------------------
20172
+  (0.0ms) rollback transaction
20173
+  (0.0ms) begin transaction
20174
+ ------------------------------------------------------------------------
20175
+ BootstrapOtherComponentsTest: test_static_control_doesn't_require_a_name
20176
+ ------------------------------------------------------------------------
20177
+  (0.0ms) rollback transaction
20178
+  (0.0ms) begin transaction
20179
+ -------------------------------------------------------------------------------------
20180
+ BootstrapOtherComponentsTest: test_static_control_doesn't_require_an_actual_attribute
20181
+ -------------------------------------------------------------------------------------
20182
+  (0.0ms) rollback transaction
20183
+  (0.0ms) begin transaction
20184
+ ------------------------------------------------------------------------------
20185
+ BootstrapOtherComponentsTest: test_submit_button_defaults_to_rails_action_name
20186
+ ------------------------------------------------------------------------------
20187
+  (0.0ms) rollback transaction
20188
+  (0.0ms) begin transaction
20189
+ ----------------------------------------------------------------------------
20190
+ BootstrapOtherComponentsTest: test_submit_button_uses_default_button_classes
20191
+ ----------------------------------------------------------------------------
20192
+  (0.0ms) rollback transaction
20193
+  (0.0ms) begin transaction
20194
+ ---------------------------------------------------------------------------------------
20195
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_inline_radios_correctly
20196
+ ---------------------------------------------------------------------------------------
20197
+  (0.1ms) rollback transaction
20198
+  (0.3ms) begin transaction
20199
+ -----------------------------------------------------------------------------------------------
20200
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_label_defined_by_Proc_correctly
20201
+ -----------------------------------------------------------------------------------------------
20202
+  (0.0ms) rollback transaction
20203
+  (0.0ms) begin transaction
20204
+ -------------------------------------------------------------------------------------------------
20205
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_label_defined_by_lambda_correctly
20206
+ -------------------------------------------------------------------------------------------------
20207
+  (0.0ms) rollback transaction
20208
+  (0.1ms) begin transaction
20209
+ -----------------------------------------------------------------------------------------
20210
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_correctly
20211
+ -----------------------------------------------------------------------------------------
20212
+  (0.0ms) rollback transaction
20213
+  (0.1ms) begin transaction
20214
+ --------------------------------------------------------------------------------------------------------------------
20215
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_with_label_defined_by_Proc_correctly
20216
+ --------------------------------------------------------------------------------------------------------------------
20217
+  (0.0ms) rollback transaction
20218
+  (0.0ms) begin transaction
20219
+ ----------------------------------------------------------------------------------------------------------------------
20220
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_with_label_defined_by_lambda_correctly
20221
+ ----------------------------------------------------------------------------------------------------------------------
20222
+  (0.0ms) rollback transaction
20223
+  (0.0ms) begin transaction
20224
+ --------------------------------------------------------------------------------------------------------------------
20225
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_with_value_defined_by_Proc_correctly
20226
+ --------------------------------------------------------------------------------------------------------------------
20227
+  (0.0ms) rollback transaction
20228
+  (0.0ms) begin transaction
20229
+ ----------------------------------------------------------------------------------------------------------------------
20230
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_with_value_defined_by_lambda_correctly
20231
+ ----------------------------------------------------------------------------------------------------------------------
20232
+  (0.0ms) rollback transaction
20233
+  (0.0ms) begin transaction
20234
+ ----------------------------------------------------------------------------------------
20235
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_the_form_group_correctly
20236
+ ----------------------------------------------------------------------------------------
20237
+  (0.0ms) rollback transaction
20238
+  (0.0ms) begin transaction
20239
+ -----------------------------------------------------------------------------------------------
20240
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_value_defined_by_Proc_correctly
20241
+ -----------------------------------------------------------------------------------------------
20242
+  (0.0ms) rollback transaction
20243
+  (0.1ms) begin transaction
20244
+ -------------------------------------------------------------------------------------------------
20245
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_value_defined_by_lambda_correctly
20246
+ -------------------------------------------------------------------------------------------------
20247
+  (0.0ms) rollback transaction
20248
+  (0.0ms) begin transaction
20249
+ ---------------------------------------------------------------------------------------------
20250
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_with_checked_option_correctly
20251
+ ---------------------------------------------------------------------------------------------
20252
+  (0.0ms) rollback transaction
20253
+  (0.0ms) begin transaction
20254
+ ----------------------------------------------------------------------------------
20255
+ BootstrapRadioButtonTest: test_radio_button_disabled_inline_label_is_set_correctly
20256
+ ----------------------------------------------------------------------------------
20257
+  (0.0ms) rollback transaction
20258
+  (0.1ms) begin transaction
20259
+ ---------------------------------------------------------------------------
20260
+ BootstrapRadioButtonTest: test_radio_button_disabled_label_is_set_correctly
20261
+ ---------------------------------------------------------------------------
20262
+  (0.0ms) rollback transaction
20263
+  (0.0ms) begin transaction
20264
+ -------------------------------------------------------------------------------
20265
+ BootstrapRadioButtonTest: test_radio_button_inline_label_class_is_set_correctly
20266
+ -------------------------------------------------------------------------------
20267
+  (0.0ms) rollback transaction
20268
+  (0.0ms) begin transaction
20269
+ -------------------------------------------------------------------------
20270
+ BootstrapRadioButtonTest: test_radio_button_inline_label_is_set_correctly
20271
+ -------------------------------------------------------------------------
20272
+  (0.0ms) rollback transaction
20273
+  (0.0ms) begin transaction
20274
+ ----------------------------------------------------------------
20275
+ BootstrapRadioButtonTest: test_radio_button_is_wrapped_correctly
20276
+ ----------------------------------------------------------------
20277
+  (0.0ms) rollback transaction
20278
+  (0.0ms) begin transaction
20279
+ ------------------------------------------------------------------------
20280
+ BootstrapRadioButtonTest: test_radio_button_label_class_is_set_correctly
20281
+ ------------------------------------------------------------------------
20282
+  (0.0ms) rollback transaction
20283
+  (0.0ms) begin transaction
20284
+ ---------------------------------------------------------------------------
20285
+ BootstrapSelectsTest: test_bootstrap_specific_options_are_handled_correctly
20286
+ ---------------------------------------------------------------------------
20287
+  (0.1ms) rollback transaction
20288
+  (0.0ms) begin transaction
20289
+ -------------------------------------------------------------------
20290
+ BootstrapSelectsTest: test_collection_selects_are_wrapped_correctly
20291
+ -------------------------------------------------------------------
20292
+  (0.1ms) rollback transaction
20293
+  (0.0ms) begin transaction
20294
+ -------------------------------------------------------------------------------------------------
20295
+ BootstrapSelectsTest: test_collection_selects_with_options_and_html_options_are_wrapped_correctly
20296
+ -------------------------------------------------------------------------------------------------
20297
+  (0.0ms) rollback transaction
20298
+  (0.0ms) begin transaction
20299
+ --------------------------------------------------------------------------------
20300
+ BootstrapSelectsTest: test_collection_selects_with_options_are_wrapped_correctly
20301
+ --------------------------------------------------------------------------------
20302
+  (0.0ms) rollback transaction
20303
+  (0.0ms) begin transaction
20304
+ -------------------------------------------------------------
20305
+ BootstrapSelectsTest: test_date_selects_are_wrapped_correctly
20306
+ -------------------------------------------------------------
20307
+  (0.1ms) rollback transaction
20308
+  (0.0ms) begin transaction
20309
+ -------------------------------------------------------------------------------------------
20310
+ BootstrapSelectsTest: test_date_selects_with_options_and_html_options_are_wrapped_correctly
20311
+ -------------------------------------------------------------------------------------------
20312
+  (0.0ms) rollback transaction
20313
+  (0.0ms) begin transaction
20314
+ --------------------------------------------------------------------------
20315
+ BootstrapSelectsTest: test_date_selects_with_options_are_wrapped_correctly
20316
+ --------------------------------------------------------------------------
20317
+  (0.0ms) rollback transaction
20318
+  (0.0ms) begin transaction
20319
+ -----------------------------------------------------------------
20320
+ BootstrapSelectsTest: test_datetime_selects_are_wrapped_correctly
20321
+ -----------------------------------------------------------------
20322
+  (0.1ms) rollback transaction
20323
+  (0.0ms) begin transaction
20324
+ -----------------------------------------------------------------------------------------------
20325
+ BootstrapSelectsTest: test_datetime_selects_with_options_and_html_options_are_wrapped_correctly
20326
+ -----------------------------------------------------------------------------------------------
20327
+  (0.0ms) rollback transaction
20328
+  (0.1ms) begin transaction
20329
+ ------------------------------------------------------------------------------
20330
+ BootstrapSelectsTest: test_datetime_selects_with_options_are_wrapped_correctly
20331
+ ------------------------------------------------------------------------------
20332
+  (0.0ms) rollback transaction
20333
+  (0.1ms) begin transaction
20334
+ ---------------------------------------------------------------------------
20335
+ BootstrapSelectsTest: test_grouped_collection_selects_are_wrapped_correctly
20336
+ ---------------------------------------------------------------------------
20337
+  (0.0ms) rollback transaction
20338
+  (0.0ms) begin transaction
20339
+ ---------------------------------------------------------------------------------------------------------
20340
+ BootstrapSelectsTest: test_grouped_collection_selects_with_options_and_html_options_are_wrapped_correctly
20341
+ ---------------------------------------------------------------------------------------------------------
20342
+  (0.0ms) rollback transaction
20343
+  (0.0ms) begin transaction
20344
+ ----------------------------------------------------------------------------------------
20345
+ BootstrapSelectsTest: test_grouped_collection_selects_with_options_are_wrapped_correctly
20346
+ ----------------------------------------------------------------------------------------
20347
+  (0.0ms) rollback transaction
20348
+  (0.0ms) begin transaction
20349
+ --------------------------------------------------------
20350
+ BootstrapSelectsTest: test_selects_are_wrapped_correctly
20351
+ --------------------------------------------------------
20352
+  (0.0ms) rollback transaction
20353
+  (0.0ms) begin transaction
20354
+ ---------------------------------------------------------
20355
+ BootstrapSelectsTest: test_selects_render_labels_properly
20356
+ ---------------------------------------------------------
20357
+  (0.0ms) rollback transaction
20358
+  (0.0ms) begin transaction
20359
+ -------------------------------------------------------------------------------------------
20360
+ BootstrapSelectsTest: test_selects_with_both_options_and_html_options_are_wrapped_correctly
20361
+ -------------------------------------------------------------------------------------------
20362
+  (0.0ms) rollback transaction
20363
+  (0.0ms) begin transaction
20364
+ ---------------------------------------------------------------------
20365
+ BootstrapSelectsTest: test_selects_with_options_are_wrapped_correctly
20366
+ ---------------------------------------------------------------------
20367
+  (0.0ms) rollback transaction
20368
+  (0.0ms) begin transaction
20369
+ -------------------------------------------------------------
20370
+ BootstrapSelectsTest: test_time_selects_are_wrapped_correctly
20371
+ -------------------------------------------------------------
20372
+  (0.1ms) rollback transaction
20373
+  (0.0ms) begin transaction
20374
+ -------------------------------------------------------------------------------------------
20375
+ BootstrapSelectsTest: test_time_selects_with_options_and_html_options_are_wrapped_correctly
20376
+ -------------------------------------------------------------------------------------------
20377
+  (0.0ms) rollback transaction
20378
+  (0.0ms) begin transaction
20379
+ --------------------------------------------------------------------------
20380
+ BootstrapSelectsTest: test_time_selects_with_options_are_wrapped_correctly
20381
+ --------------------------------------------------------------------------
20382
+  (0.0ms) rollback transaction
20383
+  (0.0ms) begin transaction
20384
+ ------------------------------------------------------------------
20385
+ BootstrapSelectsTest: test_time_zone_selects_are_wrapped_correctly
18110
20386
  ------------------------------------------------------------------
18111
20387
   (0.1ms) rollback transaction