bootstrap_form 2.5.3 → 2.6.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: 04d47ab6dce9854ae7580743006e9219430dcdc9
4
- data.tar.gz: 39317c24d8571eb757babf24bb848d6a9bf67620
3
+ metadata.gz: 6fbee0b7ad5b8cbe6c326202e9fe844e7471910b
4
+ data.tar.gz: ed8f46cadab7245fddc0ada33fd0e6c8854c4ddf
5
5
  SHA512:
6
- metadata.gz: 2f6cb05043d3866232ca763684370e46ecd2bfc181a682aef0f9785cd8548db050fec163e4523a5b349b639422d1ce406d1d2ff55e524914d13d76ba3f2d7b0c
7
- data.tar.gz: bf12eadf490cb9fb286e8d67956881d544699acfa7766c025144c3b7825395d064ce02bafe19a6b966aeaadcdbfef73b54add03925abdb2662c67100d8f0b3b2
6
+ metadata.gz: 8ae1b2555fa636d3276f9d1a19460b2041d6b59ddb26ec83cab91a6b1e6edac10853d0398d10fa5fcc079d613fdf105fab82cfdbabdca5c34ecd9e443e61232f
7
+ data.tar.gz: 7d84f48683dca8ef525709f028ddbdaf54ee57c47df16ea372a3f1ddd4b4ec43b2cda6edb3a84b262c14d02ed58938ce7104c856841ebdadccc208bbb8371a80
@@ -59,6 +59,13 @@ module BootstrapForm
59
59
  end
60
60
  end
61
61
 
62
+ def custom_control(*args, &block)
63
+ options = args.extract_options!
64
+ name = args.first
65
+
66
+ form_group_builder(name, options, &block)
67
+ end
68
+
62
69
  def prepend_and_append_input(options, &block)
63
70
  options = options.extract!(:prepend, :append, :input_group_class)
64
71
  input_group_class = ["input-group", options[:input_group_class]].compact.join(' ')
@@ -1,3 +1,3 @@
1
1
  module BootstrapForm
2
- VERSION = "2.5.3".freeze
2
+ VERSION = "2.6.0".freeze
3
3
  end
@@ -32,6 +32,33 @@ class BootstrapOtherComponentsTest < ActionView::TestCase
32
32
  assert_equivalent_xml expected, output
33
33
  end
34
34
 
35
+ test "custom control does't wrap given block in a p tag" do
36
+ output = @horizontal_builder.custom_control :email do
37
+ "this is a test"
38
+ end
39
+
40
+ expected = %{<div class="form-group"><label class="control-label col-sm-2 required" for="user_email">Email</label><div class="col-sm-10">this is a test</div></div>}
41
+ assert_equal expected, output
42
+ end
43
+
44
+ test "custom control doesn't require an actual attribute" do
45
+ output = @horizontal_builder.custom_control nil, label: "My Label" do
46
+ "this is a test"
47
+ end
48
+
49
+ expected = %{<div class="form-group"><label class="control-label col-sm-2" for="user_">My Label</label><div class="col-sm-10">this is a test</div></div>}
50
+ assert_equal expected, output
51
+ end
52
+
53
+ test "custom control doesn't require a name" do
54
+ output = @horizontal_builder.custom_control label: "Custom Label" do
55
+ "Custom Control"
56
+ end
57
+
58
+ expected = %{<div class="form-group"><label class="control-label col-sm-2" for="user_">Custom Label</label><div class="col-sm-10">Custom Control</div></div>}
59
+ assert_equal expected, output
60
+ end
61
+
35
62
  test "submit button defaults to rails action name" do
36
63
  expected = %{<input class="btn btn-default" name="commit" type="submit" value="Create User" />}
37
64
  assert_equivalent_xml expected, @builder.submit
Binary file
@@ -28237,3 +28237,1644 @@ BootstrapOtherComponentsTest: test_static_control_doesn't_require_an_actual_attr
28237
28237
  BootstrapOtherComponentsTest: test_submit_button_uses_default_button_classes
28238
28238
  ----------------------------------------------------------------------------
28239
28239
   (0.0ms) rollback transaction
28240
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
28241
+  (1.5ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "street" varchar, "city" varchar, "state" varchar, "zip_code" varchar, "created_at" datetime, "updated_at" datetime)
28242
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "password" varchar, "comments" text, "status" varchar, "misc" varchar, "created_at" datetime, "updated_at" datetime, "preferences" text, "terms" boolean DEFAULT 'f', "type" varchar)
28243
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
28244
+  (0.1ms) SELECT version FROM "schema_migrations"
28245
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140922133133')
28246
+  (0.3ms) select sqlite_version(*)
28247
+  (1.8ms) INSERT INTO schema_migrations (version) VALUES
28248
+ ('20130703191909'),
28249
+ ('20130703191937'),
28250
+ ('20130912171202'),
28251
+ ('20140327190145');
28252
+
28253
+ 
28254
+  (1.2ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
28255
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
28256
+  (0.0ms) begin transaction
28257
+ SQL (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", 2017-01-01 21:40:15 UTC], ["updated_at", 2017-01-01 21:40:15 UTC]]
28258
+  (0.6ms) commit transaction
28259
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
28260
+  (0.0ms) begin transaction
28261
+  (0.0ms) commit transaction
28262
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
28263
+  (0.1ms) begin transaction
28264
+ -------------------------------------------------------------------------
28265
+ BootstrapCheckboxTest: test_check_box_accepts_a_block_to_define_the_label
28266
+ -------------------------------------------------------------------------
28267
+  (0.1ms) rollback transaction
28268
+  (0.0ms) begin transaction
28269
+ ------------------------------------------------------------------
28270
+ BootstrapCheckboxTest: test_check_box_accepts_a_custom_label_class
28271
+ ------------------------------------------------------------------
28272
+  (0.0ms) rollback transaction
28273
+  (0.0ms) begin transaction
28274
+ ----------------------------------------------------------
28275
+ BootstrapCheckboxTest: test_check_box_is_wrapped_correctly
28276
+ ----------------------------------------------------------
28277
+  (0.0ms) rollback transaction
28278
+  (0.0ms) begin transaction
28279
+ -------------------------------------------------------
28280
+ BootstrapCheckboxTest: test_check_box_label_allows_html
28281
+ -------------------------------------------------------
28282
+  (0.0ms) rollback transaction
28283
+  (0.0ms) begin transaction
28284
+ ---------------------------------------------------------------------------------------------
28285
+ BootstrapCheckboxTest: test_check_box_responds_to_checked_value_and_unchecked_value_arguments
28286
+ ---------------------------------------------------------------------------------------------
28287
+  (0.0ms) rollback transaction
28288
+  (0.0ms) begin transaction
28289
+ --------------------------------------------------------------------------------------
28290
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_inline_checkboxes_correctly
28291
+ --------------------------------------------------------------------------------------
28292
+  (0.1ms) rollback transaction
28293
+  (0.0ms) begin transaction
28294
+ ----------------------------------------------------------------------------------------
28295
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_correctly
28296
+ ----------------------------------------------------------------------------------------
28297
+  (0.0ms) rollback transaction
28298
+  (0.1ms) begin transaction
28299
+ ---------------------------------------------------------------------------------------------------------------------------------
28300
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_with_labels_defined_by_Proc_:text_method_correctly
28301
+ ---------------------------------------------------------------------------------------------------------------------------------
28302
+  (0.0ms) rollback transaction
28303
+  (0.0ms) begin transaction
28304
+ -----------------------------------------------------------------------------------------------------------------------------------
28305
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_with_labels_defined_by_lambda_:text_method_correctly
28306
+ -----------------------------------------------------------------------------------------------------------------------------------
28307
+  (0.0ms) rollback transaction
28308
+  (0.0ms) begin transaction
28309
+ ----------------------------------------------------------------------------------------------------------------------------------
28310
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_with_values_defined_by_Proc_:value_method_correctly
28311
+ ----------------------------------------------------------------------------------------------------------------------------------
28312
+  (0.0ms) rollback transaction
28313
+  (0.1ms) begin transaction
28314
+ ------------------------------------------------------------------------------------------------------------------------------------
28315
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_with_values_defined_by_lambda_:value_method_correctly
28316
+ ------------------------------------------------------------------------------------------------------------------------------------
28317
+  (0.0ms) rollback transaction
28318
+  (0.0ms) begin transaction
28319
+ -----------------------------------------------------------------------------------
28320
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_the_form_group_correctly
28321
+ -----------------------------------------------------------------------------------
28322
+  (0.0ms) rollback transaction
28323
+  (0.0ms) begin transaction
28324
+ ----------------------------------------------------------------------------------------
28325
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_with_checked_option_correctly
28326
+ ----------------------------------------------------------------------------------------
28327
+  (0.0ms) rollback transaction
28328
+  (0.0ms) begin transaction
28329
+ ----------------------------------------------------------------------------------------------------------------
28330
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_with_checked_option_correctly_with_Proc_:value_method
28331
+ ----------------------------------------------------------------------------------------------------------------
28332
+  (0.0ms) rollback transaction
28333
+  (0.0ms) begin transaction
28334
+ --------------------------------------------------------------------------------------------------
28335
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_with_multiple_checked_options_correctly
28336
+ --------------------------------------------------------------------------------------------------
28337
+  (0.1ms) rollback transaction
28338
+  (0.1ms) begin transaction
28339
+ ----------------------------------------------------------------------------------------------------------------------------
28340
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_with_multiple_checked_options_correctly_with_lambda_:value_method
28341
+ ----------------------------------------------------------------------------------------------------------------------------
28342
+  (0.0ms) rollback transaction
28343
+  (0.0ms) begin transaction
28344
+ -----------------------------------------------------------------------------------------------
28345
+ BootstrapCheckboxTest: test_collection_check_boxes_sanitizes_values_when_generating_label_`for`
28346
+ -----------------------------------------------------------------------------------------------
28347
+  (0.0ms) rollback transaction
28348
+  (0.0ms) begin transaction
28349
+ -------------------------------------------------------------------------
28350
+ BootstrapCheckboxTest: test_disabled_check_box_has_proper_wrapper_classes
28351
+ -------------------------------------------------------------------------
28352
+  (0.0ms) rollback transaction
28353
+  (0.0ms) begin transaction
28354
+ -----------------------------------------------------
28355
+ BootstrapCheckboxTest: test_disabled_inline_check_box
28356
+ -----------------------------------------------------
28357
+  (0.0ms) rollback transaction
28358
+  (0.0ms) begin transaction
28359
+ ---------------------------------------------
28360
+ BootstrapCheckboxTest: test_inline_checkboxes
28361
+ ---------------------------------------------
28362
+  (0.0ms) rollback transaction
28363
+  (0.0ms) begin transaction
28364
+ ---------------------------------------------------------------------
28365
+ BootstrapCheckboxTest: test_inline_checkboxes_with_custom_label_class
28366
+ ---------------------------------------------------------------------
28367
+  (0.0ms) rollback transaction
28368
+  (0.0ms) begin transaction
28369
+ -------------------------------------------------------------------------------
28370
+ BootstrapFormTest: test_alert_message_allows_the_error_summary_to_be_turned_off
28371
+ -------------------------------------------------------------------------------
28372
+  (0.0ms) rollback transaction
28373
+  (0.0ms) begin transaction
28374
+ ----------------------------------------------------------------------------------------------------------------
28375
+ BootstrapFormTest: test_alert_message_allows_the_error_summary_to_be_turned_on_with_inline_errors_also_turned_on
28376
+ ----------------------------------------------------------------------------------------------------------------
28377
+  (0.0ms) rollback transaction
28378
+  (0.0ms) begin transaction
28379
+ --------------------------------------------------------------------------------------------------
28380
+ BootstrapFormTest: test_alert_message_contains_the_error_summary_when_inline_errors_are_turned_off
28381
+ --------------------------------------------------------------------------------------------------
28382
+  (0.0ms) rollback transaction
28383
+  (0.0ms) begin transaction
28384
+ ----------------------------------------------------------
28385
+ BootstrapFormTest: test_alert_message_is_wrapped_correctly
28386
+ ----------------------------------------------------------
28387
+  (0.0ms) rollback transaction
28388
+  (0.0ms) begin transaction
28389
+ --------------------------------------------------------
28390
+ BootstrapFormTest: test_allows_the_form_object_to_be_nil
28391
+ --------------------------------------------------------
28392
+  (0.0ms) rollback transaction
28393
+  (0.0ms) begin transaction
28394
+ ---------------------------------------------------------------
28395
+ BootstrapFormTest: test_bootstrap_form_tag_acts_like_a_form_tag
28396
+ ---------------------------------------------------------------
28397
+  (0.0ms) rollback transaction
28398
+  (0.0ms) begin transaction
28399
+ ------------------------------------------------------------------------------
28400
+ BootstrapFormTest: test_bootstrap_form_tag_allows_an_empty_name_for_checkboxes
28401
+ ------------------------------------------------------------------------------
28402
+  (0.0ms) rollback transaction
28403
+  (0.0ms) begin transaction
28404
+ --------------------------------------------------------------------------
28405
+ BootstrapFormTest: test_bootstrap_form_tag_does_not_clobber_custom_options
28406
+ --------------------------------------------------------------------------
28407
+  (0.1ms) rollback transaction
28408
+  (0.0ms) begin transaction
28409
+ ---------------------------------------------------------------------
28410
+ BootstrapFormTest: test_changing_the_class_name_for_the_alert_message
28411
+ ---------------------------------------------------------------------
28412
+  (0.1ms) rollback transaction
28413
+  (0.0ms) begin transaction
28414
+ ---------------------------------------------------------------
28415
+ BootstrapFormTest: test_custom_input_width_for_horizontal_forms
28416
+ ---------------------------------------------------------------
28417
+  (0.0ms) rollback transaction
28418
+  (0.0ms) begin transaction
28419
+ ---------------------------------------------------------------
28420
+ BootstrapFormTest: test_custom_label_width_for_horizontal_forms
28421
+ ---------------------------------------------------------------
28422
+  (0.0ms) rollback transaction
28423
+  (0.0ms) begin transaction
28424
+ -------------------------------------------
28425
+ BootstrapFormTest: test_default-style_forms
28426
+ -------------------------------------------
28427
+  (0.0ms) rollback transaction
28428
+  (0.0ms) begin transaction
28429
+ -------------------------------------------------------------------------
28430
+ BootstrapFormTest: test_error_summary_returns_an_unordered_list_of_errors
28431
+ -------------------------------------------------------------------------
28432
+  (0.0ms) rollback transaction
28433
+  (0.0ms) begin transaction
28434
+ ----------------------------------------------------------------------------------------------------------------------
28435
+ BootstrapFormTest: test_errors_display_correctly_and_inline_errors_are_turned_off_by_default_when_label_errors_is_true
28436
+ ----------------------------------------------------------------------------------------------------------------------
28437
+  (0.0ms) rollback transaction
28438
+  (0.0ms) begin transaction
28439
+ -----------------------------------------------------------------------------------------------------------
28440
+ BootstrapFormTest: test_errors_display_correctly_and_inline_errors_can_also_be_on_when_label_errors_is_true
28441
+ -----------------------------------------------------------------------------------------------------------
28442
+  (0.1ms) rollback transaction
28443
+  (0.0ms) begin transaction
28444
+ ----------------------------------------------------------------
28445
+ BootstrapFormTest: test_errors_on_hide_attribute_name_in_message
28446
+ ----------------------------------------------------------------
28447
+  (0.0ms) rollback transaction
28448
+  (0.0ms) begin transaction
28449
+ ------------------------------------------------------------------------------------------
28450
+ BootstrapFormTest: test_errors_on_renders_the_errors_for_a_specific_attribute_when_invalid
28451
+ ------------------------------------------------------------------------------------------
28452
+  (0.1ms) rollback transaction
28453
+  (0.0ms) begin transaction
28454
+ -------------------------------------------------------------------------------------
28455
+ BootstrapFormTest: test_existing_styles_aren't_clobbered_when_specifying_a_form_style
28456
+ -------------------------------------------------------------------------------------
28457
+  (0.0ms) rollback transaction
28458
+  (0.0ms) begin transaction
28459
+ --------------------------------------------------------------------------------------------
28460
+ BootstrapFormTest: test_given_role_attribute_should_not_be_covered_by_default_role_attribute
28461
+ --------------------------------------------------------------------------------------------
28462
+  (0.0ms) rollback transaction
28463
+  (0.0ms) begin transaction
28464
+ ---------------------------------------------------------------------------------------------------
28465
+ BootstrapFormTest: test_help_is_preserved_when_inline_errors:_false_is_passed_to_bootstrap_form_for
28466
+ ---------------------------------------------------------------------------------------------------
28467
+  (0.0ms) rollback transaction
28468
+  (0.0ms) begin transaction
28469
+ ----------------------------------------------
28470
+ BootstrapFormTest: test_horizontal-style_forms
28471
+ ----------------------------------------------
28472
+  (0.1ms) rollback transaction
28473
+  (0.0ms) begin transaction
28474
+ ------------------------------------------
28475
+ BootstrapFormTest: test_inline-style_forms
28476
+ ------------------------------------------
28477
+  (0.0ms) rollback transaction
28478
+  (0.0ms) begin transaction
28479
+ --------------------------------------------------------------------------
28480
+ BootstrapFormTest: test_label_error_messages_use_humanized_attribute_names
28481
+ --------------------------------------------------------------------------
28482
+  (0.0ms) rollback transaction
28483
+  (0.0ms) begin transaction
28484
+ -----------------------------------------------------------------------------------------------------
28485
+ BootstrapFormTest: test_offset_for_form_group_without_label_respects_label_width_for_horizontal_forms
28486
+ -----------------------------------------------------------------------------------------------------
28487
+  (0.0ms) rollback transaction
28488
+  (0.1ms) begin transaction
28489
+ --------------------------------------------------------------------------------------------------------------------------------
28490
+ BootstrapFormTest: test_the_field_contains_the_error_and_is_not_wrapped_in_div.field_with_errors_when_bootstrap_form_for_is_used
28491
+ --------------------------------------------------------------------------------------------------------------------------------
28492
+  (0.1ms) rollback transaction
28493
+  (0.0ms) begin transaction
28494
+ ---------------------------------------------------------------------------------------------
28495
+ BootstrapFormTest: test_the_field_is_wrapped_with_div.field_with_errors_when_form_for_is_used
28496
+ ---------------------------------------------------------------------------------------------
28497
+  (0.0ms) rollback transaction
28498
+  (0.0ms) begin transaction
28499
+ ---------------------------------------------------------------------------------------
28500
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_inline_radios_correctly
28501
+ ---------------------------------------------------------------------------------------
28502
+  (0.1ms) rollback transaction
28503
+  (0.0ms) begin transaction
28504
+ -----------------------------------------------------------------------------------------------
28505
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_label_defined_by_Proc_correctly
28506
+ -----------------------------------------------------------------------------------------------
28507
+  (0.0ms) rollback transaction
28508
+  (0.0ms) begin transaction
28509
+ -------------------------------------------------------------------------------------------------
28510
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_label_defined_by_lambda_correctly
28511
+ -------------------------------------------------------------------------------------------------
28512
+  (0.0ms) rollback transaction
28513
+  (0.0ms) begin transaction
28514
+ -----------------------------------------------------------------------------------------
28515
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_correctly
28516
+ -----------------------------------------------------------------------------------------
28517
+  (0.0ms) rollback transaction
28518
+  (0.0ms) begin transaction
28519
+ --------------------------------------------------------------------------------------------------------------------
28520
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_with_label_defined_by_Proc_correctly
28521
+ --------------------------------------------------------------------------------------------------------------------
28522
+  (0.0ms) rollback transaction
28523
+  (0.0ms) begin transaction
28524
+ ----------------------------------------------------------------------------------------------------------------------
28525
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_with_label_defined_by_lambda_correctly
28526
+ ----------------------------------------------------------------------------------------------------------------------
28527
+  (0.0ms) rollback transaction
28528
+  (0.0ms) begin transaction
28529
+ --------------------------------------------------------------------------------------------------------------------
28530
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_with_value_defined_by_Proc_correctly
28531
+ --------------------------------------------------------------------------------------------------------------------
28532
+  (0.0ms) rollback transaction
28533
+  (0.0ms) begin transaction
28534
+ ----------------------------------------------------------------------------------------------------------------------
28535
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_with_value_defined_by_lambda_correctly
28536
+ ----------------------------------------------------------------------------------------------------------------------
28537
+  (0.0ms) rollback transaction
28538
+  (0.0ms) begin transaction
28539
+ ----------------------------------------------------------------------------------------
28540
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_the_form_group_correctly
28541
+ ----------------------------------------------------------------------------------------
28542
+  (0.0ms) rollback transaction
28543
+  (0.1ms) begin transaction
28544
+ -----------------------------------------------------------------------------------------------
28545
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_value_defined_by_Proc_correctly
28546
+ -----------------------------------------------------------------------------------------------
28547
+  (0.0ms) rollback transaction
28548
+  (0.0ms) begin transaction
28549
+ -------------------------------------------------------------------------------------------------
28550
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_value_defined_by_lambda_correctly
28551
+ -------------------------------------------------------------------------------------------------
28552
+  (0.0ms) rollback transaction
28553
+  (0.0ms) begin transaction
28554
+ ---------------------------------------------------------------------------------------------
28555
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_with_checked_option_correctly
28556
+ ---------------------------------------------------------------------------------------------
28557
+  (0.0ms) rollback transaction
28558
+  (0.0ms) begin transaction
28559
+ ----------------------------------------------------------------------------------
28560
+ BootstrapRadioButtonTest: test_radio_button_disabled_inline_label_is_set_correctly
28561
+ ----------------------------------------------------------------------------------
28562
+  (0.0ms) rollback transaction
28563
+  (0.0ms) begin transaction
28564
+ ---------------------------------------------------------------------------
28565
+ BootstrapRadioButtonTest: test_radio_button_disabled_label_is_set_correctly
28566
+ ---------------------------------------------------------------------------
28567
+  (0.0ms) rollback transaction
28568
+  (0.0ms) begin transaction
28569
+ -------------------------------------------------------------------------------
28570
+ BootstrapRadioButtonTest: test_radio_button_inline_label_class_is_set_correctly
28571
+ -------------------------------------------------------------------------------
28572
+  (0.1ms) rollback transaction
28573
+  (0.0ms) begin transaction
28574
+ -------------------------------------------------------------------------
28575
+ BootstrapRadioButtonTest: test_radio_button_inline_label_is_set_correctly
28576
+ -------------------------------------------------------------------------
28577
+  (0.0ms) rollback transaction
28578
+  (0.0ms) begin transaction
28579
+ ----------------------------------------------------------------
28580
+ BootstrapRadioButtonTest: test_radio_button_is_wrapped_correctly
28581
+ ----------------------------------------------------------------
28582
+  (0.0ms) rollback transaction
28583
+  (0.0ms) begin transaction
28584
+ ------------------------------------------------------------------------
28585
+ BootstrapRadioButtonTest: test_radio_button_label_class_is_set_correctly
28586
+ ------------------------------------------------------------------------
28587
+  (0.0ms) rollback transaction
28588
+  (0.1ms) begin transaction
28589
+ ---------------------------------------------------------------------------
28590
+ BootstrapSelectsTest: test_bootstrap_specific_options_are_handled_correctly
28591
+ ---------------------------------------------------------------------------
28592
+  (0.1ms) rollback transaction
28593
+  (0.0ms) begin transaction
28594
+ -------------------------------------------------------------------
28595
+ BootstrapSelectsTest: test_collection_selects_are_wrapped_correctly
28596
+ -------------------------------------------------------------------
28597
+  (0.1ms) rollback transaction
28598
+  (0.1ms) begin transaction
28599
+ -------------------------------------------------------------------------------------------------
28600
+ BootstrapSelectsTest: test_collection_selects_with_options_and_html_options_are_wrapped_correctly
28601
+ -------------------------------------------------------------------------------------------------
28602
+  (0.0ms) rollback transaction
28603
+  (0.0ms) begin transaction
28604
+ --------------------------------------------------------------------------------
28605
+ BootstrapSelectsTest: test_collection_selects_with_options_are_wrapped_correctly
28606
+ --------------------------------------------------------------------------------
28607
+  (0.1ms) rollback transaction
28608
+  (0.0ms) begin transaction
28609
+ -------------------------------------------------------------
28610
+ BootstrapSelectsTest: test_date_selects_are_wrapped_correctly
28611
+ -------------------------------------------------------------
28612
+  (0.1ms) rollback transaction
28613
+  (0.1ms) begin transaction
28614
+ -------------------------------------------------------------------------------------------
28615
+ BootstrapSelectsTest: test_date_selects_with_options_and_html_options_are_wrapped_correctly
28616
+ -------------------------------------------------------------------------------------------
28617
+  (0.1ms) rollback transaction
28618
+  (0.0ms) begin transaction
28619
+ --------------------------------------------------------------------------
28620
+ BootstrapSelectsTest: test_date_selects_with_options_are_wrapped_correctly
28621
+ --------------------------------------------------------------------------
28622
+  (0.1ms) rollback transaction
28623
+  (0.0ms) begin transaction
28624
+ -----------------------------------------------------------------
28625
+ BootstrapSelectsTest: test_datetime_selects_are_wrapped_correctly
28626
+ -----------------------------------------------------------------
28627
+  (0.1ms) rollback transaction
28628
+  (0.0ms) begin transaction
28629
+ -----------------------------------------------------------------------------------------------
28630
+ BootstrapSelectsTest: test_datetime_selects_with_options_and_html_options_are_wrapped_correctly
28631
+ -----------------------------------------------------------------------------------------------
28632
+  (0.1ms) rollback transaction
28633
+  (0.0ms) begin transaction
28634
+ ------------------------------------------------------------------------------
28635
+ BootstrapSelectsTest: test_datetime_selects_with_options_are_wrapped_correctly
28636
+ ------------------------------------------------------------------------------
28637
+  (0.1ms) rollback transaction
28638
+  (0.0ms) begin transaction
28639
+ ---------------------------------------------------------------------------
28640
+ BootstrapSelectsTest: test_grouped_collection_selects_are_wrapped_correctly
28641
+ ---------------------------------------------------------------------------
28642
+  (0.1ms) rollback transaction
28643
+  (0.0ms) begin transaction
28644
+ ---------------------------------------------------------------------------------------------------------
28645
+ BootstrapSelectsTest: test_grouped_collection_selects_with_options_and_html_options_are_wrapped_correctly
28646
+ ---------------------------------------------------------------------------------------------------------
28647
+  (0.0ms) rollback transaction
28648
+  (0.0ms) begin transaction
28649
+ ----------------------------------------------------------------------------------------
28650
+ BootstrapSelectsTest: test_grouped_collection_selects_with_options_are_wrapped_correctly
28651
+ ----------------------------------------------------------------------------------------
28652
+  (0.0ms) rollback transaction
28653
+  (0.1ms) begin transaction
28654
+ --------------------------------------------------------
28655
+ BootstrapSelectsTest: test_selects_are_wrapped_correctly
28656
+ --------------------------------------------------------
28657
+  (0.0ms) rollback transaction
28658
+  (0.0ms) begin transaction
28659
+ ---------------------------------------------------------
28660
+ BootstrapSelectsTest: test_selects_render_labels_properly
28661
+ ---------------------------------------------------------
28662
+  (0.0ms) rollback transaction
28663
+  (0.0ms) begin transaction
28664
+ ------------------------------------------------------------------
28665
+ BootstrapSelectsTest: test_selects_with_block_use_block_as_content
28666
+ ------------------------------------------------------------------
28667
+  (0.0ms) rollback transaction
28668
+  (0.0ms) begin transaction
28669
+ -------------------------------------------------------------------------------------------
28670
+ BootstrapSelectsTest: test_selects_with_both_options_and_html_options_are_wrapped_correctly
28671
+ -------------------------------------------------------------------------------------------
28672
+  (0.1ms) rollback transaction
28673
+  (0.1ms) begin transaction
28674
+ ---------------------------------------------------------------------
28675
+ BootstrapSelectsTest: test_selects_with_options_are_wrapped_correctly
28676
+ ---------------------------------------------------------------------
28677
+  (0.0ms) rollback transaction
28678
+  (0.0ms) begin transaction
28679
+ -------------------------------------------------------------
28680
+ BootstrapSelectsTest: test_time_selects_are_wrapped_correctly
28681
+ -------------------------------------------------------------
28682
+  (0.0ms) rollback transaction
28683
+  (0.0ms) begin transaction
28684
+ -------------------------------------------------------------------------------------------
28685
+ BootstrapSelectsTest: test_time_selects_with_options_and_html_options_are_wrapped_correctly
28686
+ -------------------------------------------------------------------------------------------
28687
+  (0.1ms) rollback transaction
28688
+  (0.0ms) begin transaction
28689
+ --------------------------------------------------------------------------
28690
+ BootstrapSelectsTest: test_time_selects_with_options_are_wrapped_correctly
28691
+ --------------------------------------------------------------------------
28692
+  (0.1ms) rollback transaction
28693
+  (0.0ms) begin transaction
28694
+ ------------------------------------------------------------------
28695
+ BootstrapSelectsTest: test_time_zone_selects_are_wrapped_correctly
28696
+ ------------------------------------------------------------------
28697
+  (0.1ms) rollback transaction
28698
+  (0.1ms) begin transaction
28699
+ ---------------------------------------------------------------------------
28700
+ BootstrapFormGroupTest: test_:input_group_class_should_apply_to_input-group
28701
+ ---------------------------------------------------------------------------
28702
+  (0.1ms) rollback transaction
28703
+  (0.0ms) begin transaction
28704
+ --------------------------------------------------------------------------------------------------------------
28705
+ BootstrapFormGroupTest: test_adding_a_custom_label_and_changing_the_label_text_via_the_html_options_label_hash
28706
+ --------------------------------------------------------------------------------------------------------------
28707
+  (0.1ms) rollback transaction
28708
+  (0.0ms) begin transaction
28709
+ ----------------------------------------------------------------------------------------
28710
+ BootstrapFormGroupTest: test_adding_a_custom_label_class_via_the_html_options_label_hash
28711
+ ----------------------------------------------------------------------------------------
28712
+  (0.0ms) rollback transaction
28713
+  (0.0ms) begin transaction
28714
+ --------------------------------------------------------------------------------------
28715
+ BootstrapFormGroupTest: test_adding_a_custom_label_class_via_the_label_class_parameter
28716
+ --------------------------------------------------------------------------------------
28717
+  (0.0ms) rollback transaction
28718
+  (0.0ms) begin transaction
28719
+ ------------------------------------------------------
28720
+ BootstrapFormGroupTest: test_adding_an_icon_to_a_field
28721
+ ------------------------------------------------------
28722
+  (0.0ms) rollback transaction
28723
+  (0.0ms) begin transaction
28724
+ -----------------------------------------------
28725
+ BootstrapFormGroupTest: test_adding_append_text
28726
+ -----------------------------------------------
28727
+  (0.0ms) rollback transaction
28728
+  (0.0ms) begin transaction
28729
+ ----------------------------------------------------------------
28730
+ BootstrapFormGroupTest: test_adding_both_prepend_and_append_text
28731
+ ----------------------------------------------------------------
28732
+  (0.1ms) rollback transaction
28733
+  (0.1ms) begin transaction
28734
+ ------------------------------------------------
28735
+ BootstrapFormGroupTest: test_adding_prepend_text
28736
+ ------------------------------------------------
28737
+  (0.0ms) rollback transaction
28738
+  (0.0ms) begin transaction
28739
+ ------------------------------------------------------------------------
28740
+ BootstrapFormGroupTest: test_adds_class_to_wrapped_form_group_by_a_field
28741
+ ------------------------------------------------------------------------
28742
+  (0.0ms) rollback transaction
28743
+  (0.1ms) begin transaction
28744
+ ------------------------------------------------------------------------------------
28745
+ BootstrapFormGroupTest: test_adds_class_to_wrapped_form_group_by_a_field_with_errors
28746
+ ------------------------------------------------------------------------------------
28747
+  (0.1ms) rollback transaction
28748
+  (0.1ms) begin transaction
28749
+ --------------------------------------------------------------------------------------------------------------------
28750
+ BootstrapFormGroupTest: test_adds_class_to_wrapped_form_group_by_a_field_with_errors_when_bootstrap_form_for_is_used
28751
+ --------------------------------------------------------------------------------------------------------------------
28752
+  (0.1ms) rollback transaction
28753
+  (0.0ms) begin transaction
28754
+ -----------------------------------------------------------------------------------
28755
+ BootstrapFormGroupTest: test_adds_data-attributes_(or_any_other_options)_to_wrapper
28756
+ -----------------------------------------------------------------------------------
28757
+  (0.0ms) rollback transaction
28758
+  (0.0ms) begin transaction
28759
+ ---------------------------------------------------------------------
28760
+ BootstrapFormGroupTest: test_adds_offset_for_form_group_without_label
28761
+ ---------------------------------------------------------------------
28762
+  (0.0ms) rollback transaction
28763
+  (0.0ms) begin transaction
28764
+ --------------------------------------------------------------------------------------------
28765
+ BootstrapFormGroupTest: test_adds_offset_for_form_group_without_label_but_specific_label_col
28766
+ --------------------------------------------------------------------------------------------
28767
+  (0.0ms) rollback transaction
28768
+  (0.0ms) begin transaction
28769
+ ------------------------------------------------------
28770
+ BootstrapFormGroupTest: test_append_and_prepend_button
28771
+ ------------------------------------------------------
28772
+  (0.0ms) rollback transaction
28773
+  (0.0ms) begin transaction
28774
+ ------------------------------------------------------------------------------------
28775
+ BootstrapFormGroupTest: test_changing_the_label_text_via_the_html_options_label_hash
28776
+ ------------------------------------------------------------------------------------
28777
+  (0.0ms) rollback transaction
28778
+  (0.0ms) begin transaction
28779
+ -----------------------------------------------------------------------------------
28780
+ BootstrapFormGroupTest: test_changing_the_label_text_via_the_label_option_parameter
28781
+ -----------------------------------------------------------------------------------
28782
+  (0.1ms) rollback transaction
28783
+  (0.0ms) begin transaction
28784
+ ------------------------------------------------------------
28785
+ BootstrapFormGroupTest: test_custom_form_group_layout_option
28786
+ ------------------------------------------------------------
28787
+  (0.0ms) rollback transaction
28788
+  (0.0ms) begin transaction
28789
+ ----------------------------------------------------------------------------------------------------
28790
+ BootstrapFormGroupTest: test_doesn't_throw_undefined_method_error_when_the_content_block_returns_nil
28791
+ ----------------------------------------------------------------------------------------------------
28792
+  (0.0ms) rollback transaction
28793
+  (0.0ms) begin transaction
28794
+ --------------------------------------------------------------------------
28795
+ BootstrapFormGroupTest: test_form_group_accepts_class_thorugh_options_hash
28796
+ --------------------------------------------------------------------------
28797
+  (0.0ms) rollback transaction
28798
+  (0.0ms) begin transaction
28799
+ -------------------------------------------------------------------------------------------------
28800
+ BootstrapFormGroupTest: test_form_group_accepts_class_thorugh_options_hash_without_needing_a_name
28801
+ -------------------------------------------------------------------------------------------------
28802
+  (0.0ms) rollback transaction
28803
+  (0.0ms) begin transaction
28804
+ ------------------------------------------------------------------------------------------------
28805
+ BootstrapFormGroupTest: test_form_group_adds_a_spacer_when_no_label_exists_for_a_horizontal_form
28806
+ ------------------------------------------------------------------------------------------------
28807
+  (0.0ms) rollback transaction
28808
+  (0.0ms) begin transaction
28809
+ -------------------------------------------------------------------------------------------------------------------
28810
+ BootstrapFormGroupTest: test_form_group_creates_a_valid_structure_and_allows_arbitrary_html_to_be_added_via_a_block
28811
+ -------------------------------------------------------------------------------------------------------------------
28812
+  (0.0ms) rollback transaction
28813
+  (0.0ms) begin transaction
28814
+ ---------------------------------------------------------------------------------------------------------------
28815
+ BootstrapFormGroupTest: test_form_group_overrides_the_label's_'class'_and_'for'_attributes_if_others_are_passed
28816
+ ---------------------------------------------------------------------------------------------------------------
28817
+  (0.0ms) rollback transaction
28818
+  (0.0ms) begin transaction
28819
+ ---------------------------------------------------------------------------------------------------------------
28820
+ BootstrapFormGroupTest: test_form_group_renders_the_"error"_class_and_message_corrrectly_when_object_is_invalid
28821
+ ---------------------------------------------------------------------------------------------------------------
28822
+  (0.1ms) rollback transaction
28823
+  (0.0ms) begin transaction
28824
+ -------------------------------------------------------------------
28825
+ BootstrapFormGroupTest: test_form_group_renders_the_label_correctly
28826
+ -------------------------------------------------------------------
28827
+  (0.0ms) rollback transaction
28828
+  (0.0ms) begin transaction
28829
+ ------------------------------------------------------------
28830
+ BootstrapFormGroupTest: test_help_messages_for_default_forms
28831
+ ------------------------------------------------------------
28832
+  (0.0ms) rollback transaction
28833
+  (0.0ms) begin transaction
28834
+ ---------------------------------------------------------------
28835
+ BootstrapFormGroupTest: test_help_messages_for_horizontal_forms
28836
+ ---------------------------------------------------------------
28837
+  (0.0ms) rollback transaction
28838
+  (0.0ms) begin transaction
28839
+ ----------------------------------------------------------------------------------------
28840
+ BootstrapFormGroupTest: test_help_messages_to_ignore_translation_when_user_disables_help
28841
+ ----------------------------------------------------------------------------------------
28842
+  (0.0ms) rollback transaction
28843
+  (0.0ms) begin transaction
28844
+ ------------------------------------------------------------------------
28845
+ BootstrapFormGroupTest: test_help_messages_to_look_up_I18n_automatically
28846
+ ------------------------------------------------------------------------
28847
+  (0.0ms) rollback transaction
28848
+  (0.0ms) begin transaction
28849
+ ----------------------------------------------------------------------------
28850
+ BootstrapFormGroupTest: test_help_messages_to_warn_about_deprecated_I18n_key
28851
+ ----------------------------------------------------------------------------
28852
+  (0.1ms) rollback transaction
28853
+  (0.0ms) begin transaction
28854
+ -------------------------------------------
28855
+ BootstrapFormGroupTest: test_hiding_a_label
28856
+ -------------------------------------------
28857
+  (0.1ms) rollback transaction
28858
+  (0.1ms) begin transaction
28859
+ ---------------------------------------------------------------------------------------
28860
+ BootstrapFormGroupTest: test_non-default_column_span_on_form_is_reflected_in_form_group
28861
+ ---------------------------------------------------------------------------------------
28862
+  (0.0ms) rollback transaction
28863
+  (0.0ms) begin transaction
28864
+ --------------------------------------------------------------------------
28865
+ BootstrapFormGroupTest: test_non-default_column_span_on_form_isn't_mutated
28866
+ --------------------------------------------------------------------------
28867
+  (0.0ms) rollback transaction
28868
+  (0.0ms) begin transaction
28869
+ ---------------------------------------------------------------------------------
28870
+ BootstrapFormGroupTest: test_passing_options_to_a_form_control_get_passed_through
28871
+ ---------------------------------------------------------------------------------
28872
+  (0.0ms) rollback transaction
28873
+  (0.0ms) begin transaction
28874
+ ------------------------------------------------------------------------------
28875
+ BootstrapFormGroupTest: test_preventing_a_label_from_having_the_required_class
28876
+ ------------------------------------------------------------------------------
28877
+  (0.0ms) rollback transaction
28878
+  (0.0ms) begin transaction
28879
+ -------------------------------------------------------------------------------------------------
28880
+ BootstrapFormGroupTest: test_single_form_group_call_in_horizontal_form_should_not_be_smash_design
28881
+ -------------------------------------------------------------------------------------------------
28882
+  (0.0ms) rollback transaction
28883
+  (0.1ms) begin transaction
28884
+ ---------------------------------------------
28885
+ BootstrapFormGroupTest: test_skipping_a_label
28886
+ ---------------------------------------------
28887
+  (0.1ms) rollback transaction
28888
+  (0.1ms) begin transaction
28889
+ --------------------------------------------------------------------------
28890
+ BootstrapFieldsTest: test_bootstrap_form_for_helper_works_for_associations
28891
+ --------------------------------------------------------------------------
28892
+  (0.1ms) rollback transaction
28893
+  (0.0ms) begin transaction
28894
+ ----------------------------------------------------------------------------------------
28895
+ BootstrapFieldsTest: test_bootstrap_form_for_helper_works_for_serialized_hash_attributes
28896
+ ----------------------------------------------------------------------------------------
28897
+  (0.0ms) rollback transaction
28898
+  (0.0ms) begin transaction
28899
+ ------------------------------------------------------------
28900
+ BootstrapFieldsTest: test_color_fields_are_wrapped_correctly
28901
+ ------------------------------------------------------------
28902
+  (0.1ms) rollback transaction
28903
+  (0.0ms) begin transaction
28904
+ -----------------------------------------------------------
28905
+ BootstrapFieldsTest: test_date_fields_are_wrapped_correctly
28906
+ -----------------------------------------------------------
28907
+  (0.0ms) rollback transaction
28908
+  (0.0ms) begin transaction
28909
+ ----------------------------------------------------------------
28910
+ BootstrapFieldsTest: test_date_time_fields_are_wrapped_correctly
28911
+ ----------------------------------------------------------------
28912
+  (0.0ms) rollback transaction
28913
+  (0.0ms) begin transaction
28914
+ ----------------------------------------------------------------------
28915
+ BootstrapFieldsTest: test_date_time_local_fields_are_wrapped_correctly
28916
+ ----------------------------------------------------------------------
28917
+  (0.0ms) rollback transaction
28918
+  (0.1ms) begin transaction
28919
+ ------------------------------------------------------------
28920
+ BootstrapFieldsTest: test_email_fields_are_wrapped_correctly
28921
+ ------------------------------------------------------------
28922
+  (0.1ms) rollback transaction
28923
+  (0.0ms) begin transaction
28924
+ ------------------------------------------------------------------------------------------
28925
+ BootstrapFieldsTest: test_fields_for_correctly_passes_horizontal_style_from_parent_builder
28926
+ ------------------------------------------------------------------------------------------
28927
+  (0.0ms) rollback transaction
28928
+  (0.0ms) begin transaction
28929
+ --------------------------------------------------------------------------------------
28930
+ BootstrapFieldsTest: test_fields_for_correctly_passes_inline_style_from_parent_builder
28931
+ --------------------------------------------------------------------------------------
28932
+  (0.0ms) rollback transaction
28933
+  (0.0ms) begin transaction
28934
+ -----------------------------------------------------------
28935
+ BootstrapFieldsTest: test_file_fields_are_wrapped_correctly
28936
+ -----------------------------------------------------------
28937
+  (0.0ms) rollback transaction
28938
+  (0.0ms) begin transaction
28939
+ -----------------------------------------------------
28940
+ BootstrapFieldsTest: test_hidden_fields_are_supported
28941
+ -----------------------------------------------------
28942
+  (0.0ms) rollback transaction
28943
+  (0.0ms) begin transaction
28944
+ ------------------------------------------------------------------
28945
+ BootstrapFieldsTest: test_month_local_fields_are_wrapped_correctly
28946
+ ------------------------------------------------------------------
28947
+  (0.0ms) rollback transaction
28948
+  (0.1ms) begin transaction
28949
+ -------------------------------------------------------------
28950
+ BootstrapFieldsTest: test_number_fields_are_wrapped_correctly
28951
+ -------------------------------------------------------------
28952
+  (0.0ms) rollback transaction
28953
+  (0.0ms) begin transaction
28954
+ ---------------------------------------------------------------
28955
+ BootstrapFieldsTest: test_password_fields_are_wrapped_correctly
28956
+ ---------------------------------------------------------------
28957
+  (0.0ms) rollback transaction
28958
+  (0.0ms) begin transaction
28959
+ ----------------------------------------------------------------------
28960
+ BootstrapFieldsTest: test_phone/telephone_fields_are_wrapped_correctly
28961
+ ----------------------------------------------------------------------
28962
+  (0.0ms) rollback transaction
28963
+  (0.0ms) begin transaction
28964
+ ------------------------------------------------------------
28965
+ BootstrapFieldsTest: test_range_fields_are_wrapped_correctly
28966
+ ------------------------------------------------------------
28967
+  (0.0ms) rollback transaction
28968
+  (0.0ms) begin transaction
28969
+ -------------------------------------------------------------
28970
+ BootstrapFieldsTest: test_search_fields_are_wrapped_correctly
28971
+ -------------------------------------------------------------
28972
+  (0.1ms) rollback transaction
28973
+  (0.0ms) begin transaction
28974
+ ----------------------------------------------------------
28975
+ BootstrapFieldsTest: test_text_areas_are_wrapped_correctly
28976
+ ----------------------------------------------------------
28977
+  (0.0ms) rollback transaction
28978
+  (0.0ms) begin transaction
28979
+ -----------------------------------------------------------
28980
+ BootstrapFieldsTest: test_text_fields_are_wrapped_correctly
28981
+ -----------------------------------------------------------
28982
+  (0.0ms) rollback transaction
28983
+  (0.1ms) begin transaction
28984
+ -----------------------------------------------------------
28985
+ BootstrapFieldsTest: test_time_fields_are_wrapped_correctly
28986
+ -----------------------------------------------------------
28987
+  (0.1ms) rollback transaction
28988
+  (0.0ms) begin transaction
28989
+ ----------------------------------------------------------
28990
+ BootstrapFieldsTest: test_url_fields_are_wrapped_correctly
28991
+ ----------------------------------------------------------
28992
+  (0.0ms) rollback transaction
28993
+  (0.0ms) begin transaction
28994
+ -----------------------------------------------------------
28995
+ BootstrapFieldsTest: test_week_fields_are_wrapped_correctly
28996
+ -----------------------------------------------------------
28997
+  (0.0ms) rollback transaction
28998
+  (0.0ms) begin transaction
28999
+ --------------------------------------------------------------------------------
29000
+ SpecialFormClassModelsTest: test_Anonymous_models_are_supported_for_form_builder
29001
+ --------------------------------------------------------------------------------
29002
+  (0.1ms) rollback transaction
29003
+  (0.0ms) begin transaction
29004
+ --------------------------------------------------------------------------
29005
+ SpecialFormClassModelsTest: test_Nil_models_are_supported_for_form_builder
29006
+ --------------------------------------------------------------------------
29007
+  (0.0ms) rollback transaction
29008
+  (0.0ms) begin transaction
29009
+ -------------------------------------------------------------------------------------------
29010
+ SpecialFormClassModelsTest: test_Objects_without_model_names_are_supported_for_form_builder
29011
+ -------------------------------------------------------------------------------------------
29012
+  (0.0ms) rollback transaction
29013
+  (0.0ms) begin transaction
29014
+ ------------------------------------------------------------------
29015
+ BootstrapOtherComponentsTest: test_override_primary_button_classes
29016
+ ------------------------------------------------------------------
29017
+  (0.0ms) rollback transaction
29018
+  (0.1ms) begin transaction
29019
+ -----------------------------------------------------------------
29020
+ BootstrapOtherComponentsTest: test_override_submit_button_classes
29021
+ -----------------------------------------------------------------
29022
+  (0.2ms) rollback transaction
29023
+  (0.1ms) begin transaction
29024
+ -------------------------------------------------------------------------
29025
+ BootstrapOtherComponentsTest: test_primary_button_uses_proper_css_classes
29026
+ -------------------------------------------------------------------------
29027
+  (0.1ms) rollback transaction
29028
+  (0.0ms) begin transaction
29029
+ -------------------------------------------------
29030
+ BootstrapOtherComponentsTest: test_static_control
29031
+ -------------------------------------------------
29032
+  (0.0ms) rollback transaction
29033
+  (0.0ms) begin transaction
29034
+ ------------------------------------------------------------------------
29035
+ BootstrapOtherComponentsTest: test_static_control_doesn't_require_a_name
29036
+ ------------------------------------------------------------------------
29037
+  (0.0ms) rollback transaction
29038
+  (0.0ms) begin transaction
29039
+ -------------------------------------------------------------------------------------
29040
+ BootstrapOtherComponentsTest: test_static_control_doesn't_require_an_actual_attribute
29041
+ -------------------------------------------------------------------------------------
29042
+  (0.0ms) rollback transaction
29043
+  (0.0ms) begin transaction
29044
+ ------------------------------------------------------------------------------
29045
+ BootstrapOtherComponentsTest: test_submit_button_defaults_to_rails_action_name
29046
+ ------------------------------------------------------------------------------
29047
+  (0.0ms) rollback transaction
29048
+  (0.1ms) begin transaction
29049
+ ----------------------------------------------------------------------------
29050
+ BootstrapOtherComponentsTest: test_submit_button_uses_default_button_classes
29051
+ ----------------------------------------------------------------------------
29052
+  (0.0ms) rollback transaction
29053
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
29054
+  (1.9ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "street" varchar, "city" varchar, "state" varchar, "zip_code" varchar, "created_at" datetime, "updated_at" datetime)
29055
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "password" varchar, "comments" text, "status" varchar, "misc" varchar, "created_at" datetime, "updated_at" datetime, "preferences" text, "terms" boolean DEFAULT 'f', "type" varchar)
29056
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
29057
+  (0.1ms) SELECT version FROM "schema_migrations"
29058
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140922133133')
29059
+  (0.5ms) select sqlite_version(*)
29060
+  (1.0ms) INSERT INTO schema_migrations (version) VALUES
29061
+ ('20130703191909'),
29062
+ ('20130703191937'),
29063
+ ('20130912171202'),
29064
+ ('20140327190145');
29065
+
29066
+ 
29067
+  (0.9ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
29068
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
29069
+  (0.1ms) begin transaction
29070
+ SQL (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", 2017-02-03 15:18:48 UTC], ["updated_at", 2017-02-03 15:18:48 UTC]]
29071
+  (0.7ms) commit transaction
29072
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
29073
+  (0.0ms) begin transaction
29074
+  (0.0ms) commit transaction
29075
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
29076
+  (0.1ms) begin transaction
29077
+ ---------------------------------------------------------------------------
29078
+ BootstrapFormGroupTest: test_:input_group_class_should_apply_to_input-group
29079
+ ---------------------------------------------------------------------------
29080
+  (0.1ms) rollback transaction
29081
+  (0.0ms) begin transaction
29082
+ --------------------------------------------------------------------------------------------------------------
29083
+ BootstrapFormGroupTest: test_adding_a_custom_label_and_changing_the_label_text_via_the_html_options_label_hash
29084
+ --------------------------------------------------------------------------------------------------------------
29085
+  (0.1ms) rollback transaction
29086
+  (0.0ms) begin transaction
29087
+ ----------------------------------------------------------------------------------------
29088
+ BootstrapFormGroupTest: test_adding_a_custom_label_class_via_the_html_options_label_hash
29089
+ ----------------------------------------------------------------------------------------
29090
+  (0.0ms) rollback transaction
29091
+  (0.0ms) begin transaction
29092
+ --------------------------------------------------------------------------------------
29093
+ BootstrapFormGroupTest: test_adding_a_custom_label_class_via_the_label_class_parameter
29094
+ --------------------------------------------------------------------------------------
29095
+  (0.0ms) rollback transaction
29096
+  (0.0ms) begin transaction
29097
+ ------------------------------------------------------
29098
+ BootstrapFormGroupTest: test_adding_an_icon_to_a_field
29099
+ ------------------------------------------------------
29100
+  (0.0ms) rollback transaction
29101
+  (0.0ms) begin transaction
29102
+ -----------------------------------------------
29103
+ BootstrapFormGroupTest: test_adding_append_text
29104
+ -----------------------------------------------
29105
+  (0.0ms) rollback transaction
29106
+  (0.0ms) begin transaction
29107
+ ----------------------------------------------------------------
29108
+ BootstrapFormGroupTest: test_adding_both_prepend_and_append_text
29109
+ ----------------------------------------------------------------
29110
+  (0.0ms) rollback transaction
29111
+  (0.0ms) begin transaction
29112
+ ------------------------------------------------
29113
+ BootstrapFormGroupTest: test_adding_prepend_text
29114
+ ------------------------------------------------
29115
+  (0.0ms) rollback transaction
29116
+  (0.0ms) begin transaction
29117
+ ------------------------------------------------------------------------
29118
+ BootstrapFormGroupTest: test_adds_class_to_wrapped_form_group_by_a_field
29119
+ ------------------------------------------------------------------------
29120
+  (0.0ms) rollback transaction
29121
+  (0.1ms) begin transaction
29122
+ ------------------------------------------------------------------------------------
29123
+ BootstrapFormGroupTest: test_adds_class_to_wrapped_form_group_by_a_field_with_errors
29124
+ ------------------------------------------------------------------------------------
29125
+  (0.0ms) rollback transaction
29126
+  (0.0ms) begin transaction
29127
+ --------------------------------------------------------------------------------------------------------------------
29128
+ BootstrapFormGroupTest: test_adds_class_to_wrapped_form_group_by_a_field_with_errors_when_bootstrap_form_for_is_used
29129
+ --------------------------------------------------------------------------------------------------------------------
29130
+  (0.0ms) rollback transaction
29131
+  (0.0ms) begin transaction
29132
+ -----------------------------------------------------------------------------------
29133
+ BootstrapFormGroupTest: test_adds_data-attributes_(or_any_other_options)_to_wrapper
29134
+ -----------------------------------------------------------------------------------
29135
+  (0.0ms) rollback transaction
29136
+  (0.0ms) begin transaction
29137
+ ---------------------------------------------------------------------
29138
+ BootstrapFormGroupTest: test_adds_offset_for_form_group_without_label
29139
+ ---------------------------------------------------------------------
29140
+  (0.0ms) rollback transaction
29141
+  (0.0ms) begin transaction
29142
+ --------------------------------------------------------------------------------------------
29143
+ BootstrapFormGroupTest: test_adds_offset_for_form_group_without_label_but_specific_label_col
29144
+ --------------------------------------------------------------------------------------------
29145
+  (0.0ms) rollback transaction
29146
+  (0.0ms) begin transaction
29147
+ ------------------------------------------------------
29148
+ BootstrapFormGroupTest: test_append_and_prepend_button
29149
+ ------------------------------------------------------
29150
+  (0.1ms) rollback transaction
29151
+  (0.1ms) begin transaction
29152
+ ------------------------------------------------------------------------------------
29153
+ BootstrapFormGroupTest: test_changing_the_label_text_via_the_html_options_label_hash
29154
+ ------------------------------------------------------------------------------------
29155
+  (0.1ms) rollback transaction
29156
+  (0.1ms) begin transaction
29157
+ -----------------------------------------------------------------------------------
29158
+ BootstrapFormGroupTest: test_changing_the_label_text_via_the_label_option_parameter
29159
+ -----------------------------------------------------------------------------------
29160
+  (0.0ms) rollback transaction
29161
+  (0.0ms) begin transaction
29162
+ ------------------------------------------------------------
29163
+ BootstrapFormGroupTest: test_custom_form_group_layout_option
29164
+ ------------------------------------------------------------
29165
+  (0.0ms) rollback transaction
29166
+  (0.0ms) begin transaction
29167
+ ----------------------------------------------------------------------------------------------------
29168
+ BootstrapFormGroupTest: test_doesn't_throw_undefined_method_error_when_the_content_block_returns_nil
29169
+ ----------------------------------------------------------------------------------------------------
29170
+  (0.0ms) rollback transaction
29171
+  (0.0ms) begin transaction
29172
+ --------------------------------------------------------------------------
29173
+ BootstrapFormGroupTest: test_form_group_accepts_class_thorugh_options_hash
29174
+ --------------------------------------------------------------------------
29175
+  (0.1ms) rollback transaction
29176
+  (0.0ms) begin transaction
29177
+ -------------------------------------------------------------------------------------------------
29178
+ BootstrapFormGroupTest: test_form_group_accepts_class_thorugh_options_hash_without_needing_a_name
29179
+ -------------------------------------------------------------------------------------------------
29180
+  (0.0ms) rollback transaction
29181
+  (0.0ms) begin transaction
29182
+ ------------------------------------------------------------------------------------------------
29183
+ BootstrapFormGroupTest: test_form_group_adds_a_spacer_when_no_label_exists_for_a_horizontal_form
29184
+ ------------------------------------------------------------------------------------------------
29185
+  (0.0ms) rollback transaction
29186
+  (0.0ms) begin transaction
29187
+ -------------------------------------------------------------------------------------------------------------------
29188
+ BootstrapFormGroupTest: test_form_group_creates_a_valid_structure_and_allows_arbitrary_html_to_be_added_via_a_block
29189
+ -------------------------------------------------------------------------------------------------------------------
29190
+  (0.0ms) rollback transaction
29191
+  (0.0ms) begin transaction
29192
+ ---------------------------------------------------------------------------------------------------------------
29193
+ BootstrapFormGroupTest: test_form_group_overrides_the_label's_'class'_and_'for'_attributes_if_others_are_passed
29194
+ ---------------------------------------------------------------------------------------------------------------
29195
+  (0.0ms) rollback transaction
29196
+  (0.0ms) begin transaction
29197
+ ---------------------------------------------------------------------------------------------------------------
29198
+ BootstrapFormGroupTest: test_form_group_renders_the_"error"_class_and_message_corrrectly_when_object_is_invalid
29199
+ ---------------------------------------------------------------------------------------------------------------
29200
+  (0.0ms) rollback transaction
29201
+  (0.0ms) begin transaction
29202
+ -------------------------------------------------------------------
29203
+ BootstrapFormGroupTest: test_form_group_renders_the_label_correctly
29204
+ -------------------------------------------------------------------
29205
+  (0.0ms) rollback transaction
29206
+  (0.0ms) begin transaction
29207
+ ------------------------------------------------------------
29208
+ BootstrapFormGroupTest: test_help_messages_for_default_forms
29209
+ ------------------------------------------------------------
29210
+  (0.1ms) rollback transaction
29211
+  (0.1ms) begin transaction
29212
+ ---------------------------------------------------------------
29213
+ BootstrapFormGroupTest: test_help_messages_for_horizontal_forms
29214
+ ---------------------------------------------------------------
29215
+  (0.1ms) rollback transaction
29216
+  (0.1ms) begin transaction
29217
+ ----------------------------------------------------------------------------------------
29218
+ BootstrapFormGroupTest: test_help_messages_to_ignore_translation_when_user_disables_help
29219
+ ----------------------------------------------------------------------------------------
29220
+  (0.0ms) rollback transaction
29221
+  (0.1ms) begin transaction
29222
+ ------------------------------------------------------------------------
29223
+ BootstrapFormGroupTest: test_help_messages_to_look_up_I18n_automatically
29224
+ ------------------------------------------------------------------------
29225
+  (0.0ms) rollback transaction
29226
+  (0.1ms) begin transaction
29227
+ ----------------------------------------------------------------------------
29228
+ BootstrapFormGroupTest: test_help_messages_to_warn_about_deprecated_I18n_key
29229
+ ----------------------------------------------------------------------------
29230
+  (0.0ms) rollback transaction
29231
+  (0.0ms) begin transaction
29232
+ -------------------------------------------
29233
+ BootstrapFormGroupTest: test_hiding_a_label
29234
+ -------------------------------------------
29235
+  (0.0ms) rollback transaction
29236
+  (0.0ms) begin transaction
29237
+ ---------------------------------------------------------------------------------------
29238
+ BootstrapFormGroupTest: test_non-default_column_span_on_form_is_reflected_in_form_group
29239
+ ---------------------------------------------------------------------------------------
29240
+  (0.0ms) rollback transaction
29241
+  (0.0ms) begin transaction
29242
+ --------------------------------------------------------------------------
29243
+ BootstrapFormGroupTest: test_non-default_column_span_on_form_isn't_mutated
29244
+ --------------------------------------------------------------------------
29245
+  (0.0ms) rollback transaction
29246
+  (0.0ms) begin transaction
29247
+ ---------------------------------------------------------------------------------
29248
+ BootstrapFormGroupTest: test_passing_options_to_a_form_control_get_passed_through
29249
+ ---------------------------------------------------------------------------------
29250
+  (0.0ms) rollback transaction
29251
+  (0.0ms) begin transaction
29252
+ ------------------------------------------------------------------------------
29253
+ BootstrapFormGroupTest: test_preventing_a_label_from_having_the_required_class
29254
+ ------------------------------------------------------------------------------
29255
+  (0.0ms) rollback transaction
29256
+  (0.0ms) begin transaction
29257
+ -------------------------------------------------------------------------------------------------
29258
+ BootstrapFormGroupTest: test_single_form_group_call_in_horizontal_form_should_not_be_smash_design
29259
+ -------------------------------------------------------------------------------------------------
29260
+  (0.1ms) rollback transaction
29261
+  (0.0ms) begin transaction
29262
+ ---------------------------------------------
29263
+ BootstrapFormGroupTest: test_skipping_a_label
29264
+ ---------------------------------------------
29265
+  (0.0ms) rollback transaction
29266
+  (0.0ms) begin transaction
29267
+ -------------------------------------------------------------------------
29268
+ BootstrapCheckboxTest: test_check_box_accepts_a_block_to_define_the_label
29269
+ -------------------------------------------------------------------------
29270
+  (0.1ms) rollback transaction
29271
+  (0.1ms) begin transaction
29272
+ ------------------------------------------------------------------
29273
+ BootstrapCheckboxTest: test_check_box_accepts_a_custom_label_class
29274
+ ------------------------------------------------------------------
29275
+  (0.0ms) rollback transaction
29276
+  (0.0ms) begin transaction
29277
+ ----------------------------------------------------------
29278
+ BootstrapCheckboxTest: test_check_box_is_wrapped_correctly
29279
+ ----------------------------------------------------------
29280
+  (0.0ms) rollback transaction
29281
+  (0.0ms) begin transaction
29282
+ -------------------------------------------------------
29283
+ BootstrapCheckboxTest: test_check_box_label_allows_html
29284
+ -------------------------------------------------------
29285
+  (0.0ms) rollback transaction
29286
+  (0.0ms) begin transaction
29287
+ ---------------------------------------------------------------------------------------------
29288
+ BootstrapCheckboxTest: test_check_box_responds_to_checked_value_and_unchecked_value_arguments
29289
+ ---------------------------------------------------------------------------------------------
29290
+  (0.0ms) rollback transaction
29291
+  (0.0ms) begin transaction
29292
+ --------------------------------------------------------------------------------------
29293
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_inline_checkboxes_correctly
29294
+ --------------------------------------------------------------------------------------
29295
+  (0.1ms) rollback transaction
29296
+  (0.0ms) begin transaction
29297
+ ----------------------------------------------------------------------------------------
29298
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_correctly
29299
+ ----------------------------------------------------------------------------------------
29300
+  (0.0ms) rollback transaction
29301
+  (0.0ms) begin transaction
29302
+ ---------------------------------------------------------------------------------------------------------------------------------
29303
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_with_labels_defined_by_Proc_:text_method_correctly
29304
+ ---------------------------------------------------------------------------------------------------------------------------------
29305
+  (0.0ms) rollback transaction
29306
+  (0.0ms) begin transaction
29307
+ -----------------------------------------------------------------------------------------------------------------------------------
29308
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_with_labels_defined_by_lambda_:text_method_correctly
29309
+ -----------------------------------------------------------------------------------------------------------------------------------
29310
+  (0.0ms) rollback transaction
29311
+  (0.0ms) begin transaction
29312
+ ----------------------------------------------------------------------------------------------------------------------------------
29313
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_with_values_defined_by_Proc_:value_method_correctly
29314
+ ----------------------------------------------------------------------------------------------------------------------------------
29315
+  (0.0ms) rollback transaction
29316
+  (0.0ms) begin transaction
29317
+ ------------------------------------------------------------------------------------------------------------------------------------
29318
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_multiple_checkboxes_with_values_defined_by_lambda_:value_method_correctly
29319
+ ------------------------------------------------------------------------------------------------------------------------------------
29320
+  (0.0ms) rollback transaction
29321
+  (0.0ms) begin transaction
29322
+ -----------------------------------------------------------------------------------
29323
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_the_form_group_correctly
29324
+ -----------------------------------------------------------------------------------
29325
+  (0.0ms) rollback transaction
29326
+  (0.1ms) begin transaction
29327
+ ----------------------------------------------------------------------------------------
29328
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_with_checked_option_correctly
29329
+ ----------------------------------------------------------------------------------------
29330
+  (0.0ms) rollback transaction
29331
+  (0.0ms) begin transaction
29332
+ ----------------------------------------------------------------------------------------------------------------
29333
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_with_checked_option_correctly_with_Proc_:value_method
29334
+ ----------------------------------------------------------------------------------------------------------------
29335
+  (0.0ms) rollback transaction
29336
+  (0.0ms) begin transaction
29337
+ --------------------------------------------------------------------------------------------------
29338
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_with_multiple_checked_options_correctly
29339
+ --------------------------------------------------------------------------------------------------
29340
+  (0.0ms) rollback transaction
29341
+  (0.0ms) begin transaction
29342
+ ----------------------------------------------------------------------------------------------------------------------------
29343
+ BootstrapCheckboxTest: test_collection_check_boxes_renders_with_multiple_checked_options_correctly_with_lambda_:value_method
29344
+ ----------------------------------------------------------------------------------------------------------------------------
29345
+  (0.0ms) rollback transaction
29346
+  (0.0ms) begin transaction
29347
+ -----------------------------------------------------------------------------------------------
29348
+ BootstrapCheckboxTest: test_collection_check_boxes_sanitizes_values_when_generating_label_`for`
29349
+ -----------------------------------------------------------------------------------------------
29350
+  (0.0ms) rollback transaction
29351
+  (0.0ms) begin transaction
29352
+ -------------------------------------------------------------------------
29353
+ BootstrapCheckboxTest: test_disabled_check_box_has_proper_wrapper_classes
29354
+ -------------------------------------------------------------------------
29355
+  (0.0ms) rollback transaction
29356
+  (0.0ms) begin transaction
29357
+ -----------------------------------------------------
29358
+ BootstrapCheckboxTest: test_disabled_inline_check_box
29359
+ -----------------------------------------------------
29360
+  (0.0ms) rollback transaction
29361
+  (0.1ms) begin transaction
29362
+ ---------------------------------------------
29363
+ BootstrapCheckboxTest: test_inline_checkboxes
29364
+ ---------------------------------------------
29365
+  (0.0ms) rollback transaction
29366
+  (0.0ms) begin transaction
29367
+ ---------------------------------------------------------------------
29368
+ BootstrapCheckboxTest: test_inline_checkboxes_with_custom_label_class
29369
+ ---------------------------------------------------------------------
29370
+  (0.0ms) rollback transaction
29371
+  (0.0ms) begin transaction
29372
+ ---------------------------------------------------------------------------------------
29373
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_inline_radios_correctly
29374
+ ---------------------------------------------------------------------------------------
29375
+  (0.0ms) rollback transaction
29376
+  (0.0ms) begin transaction
29377
+ -----------------------------------------------------------------------------------------------
29378
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_label_defined_by_Proc_correctly
29379
+ -----------------------------------------------------------------------------------------------
29380
+  (0.0ms) rollback transaction
29381
+  (0.0ms) begin transaction
29382
+ -------------------------------------------------------------------------------------------------
29383
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_label_defined_by_lambda_correctly
29384
+ -------------------------------------------------------------------------------------------------
29385
+  (0.0ms) rollback transaction
29386
+  (0.0ms) begin transaction
29387
+ -----------------------------------------------------------------------------------------
29388
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_correctly
29389
+ -----------------------------------------------------------------------------------------
29390
+  (0.0ms) rollback transaction
29391
+  (0.0ms) begin transaction
29392
+ --------------------------------------------------------------------------------------------------------------------
29393
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_with_label_defined_by_Proc_correctly
29394
+ --------------------------------------------------------------------------------------------------------------------
29395
+  (0.1ms) rollback transaction
29396
+  (0.0ms) begin transaction
29397
+ ----------------------------------------------------------------------------------------------------------------------
29398
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_with_label_defined_by_lambda_correctly
29399
+ ----------------------------------------------------------------------------------------------------------------------
29400
+  (0.0ms) rollback transaction
29401
+  (0.0ms) begin transaction
29402
+ --------------------------------------------------------------------------------------------------------------------
29403
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_with_value_defined_by_Proc_correctly
29404
+ --------------------------------------------------------------------------------------------------------------------
29405
+  (0.0ms) rollback transaction
29406
+  (0.0ms) begin transaction
29407
+ ----------------------------------------------------------------------------------------------------------------------
29408
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_multiple_radios_with_value_defined_by_lambda_correctly
29409
+ ----------------------------------------------------------------------------------------------------------------------
29410
+  (0.0ms) rollback transaction
29411
+  (0.0ms) begin transaction
29412
+ ----------------------------------------------------------------------------------------
29413
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_the_form_group_correctly
29414
+ ----------------------------------------------------------------------------------------
29415
+  (0.0ms) rollback transaction
29416
+  (0.0ms) begin transaction
29417
+ -----------------------------------------------------------------------------------------------
29418
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_value_defined_by_Proc_correctly
29419
+ -----------------------------------------------------------------------------------------------
29420
+  (0.0ms) rollback transaction
29421
+  (0.0ms) begin transaction
29422
+ -------------------------------------------------------------------------------------------------
29423
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_value_defined_by_lambda_correctly
29424
+ -------------------------------------------------------------------------------------------------
29425
+  (0.0ms) rollback transaction
29426
+  (0.0ms) begin transaction
29427
+ ---------------------------------------------------------------------------------------------
29428
+ BootstrapRadioButtonTest: test_collection_radio_buttons_renders_with_checked_option_correctly
29429
+ ---------------------------------------------------------------------------------------------
29430
+  (0.0ms) rollback transaction
29431
+  (0.0ms) begin transaction
29432
+ ----------------------------------------------------------------------------------
29433
+ BootstrapRadioButtonTest: test_radio_button_disabled_inline_label_is_set_correctly
29434
+ ----------------------------------------------------------------------------------
29435
+  (0.0ms) rollback transaction
29436
+  (0.0ms) begin transaction
29437
+ ---------------------------------------------------------------------------
29438
+ BootstrapRadioButtonTest: test_radio_button_disabled_label_is_set_correctly
29439
+ ---------------------------------------------------------------------------
29440
+  (0.0ms) rollback transaction
29441
+  (0.0ms) begin transaction
29442
+ -------------------------------------------------------------------------------
29443
+ BootstrapRadioButtonTest: test_radio_button_inline_label_class_is_set_correctly
29444
+ -------------------------------------------------------------------------------
29445
+  (0.0ms) rollback transaction
29446
+  (0.0ms) begin transaction
29447
+ -------------------------------------------------------------------------
29448
+ BootstrapRadioButtonTest: test_radio_button_inline_label_is_set_correctly
29449
+ -------------------------------------------------------------------------
29450
+  (0.0ms) rollback transaction
29451
+  (0.0ms) begin transaction
29452
+ ----------------------------------------------------------------
29453
+ BootstrapRadioButtonTest: test_radio_button_is_wrapped_correctly
29454
+ ----------------------------------------------------------------
29455
+  (0.0ms) rollback transaction
29456
+  (0.0ms) begin transaction
29457
+ ------------------------------------------------------------------------
29458
+ BootstrapRadioButtonTest: test_radio_button_label_class_is_set_correctly
29459
+ ------------------------------------------------------------------------
29460
+  (0.0ms) rollback transaction
29461
+  (0.0ms) begin transaction
29462
+ ---------------------------------------------------------------------------
29463
+ BootstrapSelectsTest: test_bootstrap_specific_options_are_handled_correctly
29464
+ ---------------------------------------------------------------------------
29465
+  (0.0ms) rollback transaction
29466
+  (0.0ms) begin transaction
29467
+ -------------------------------------------------------------------
29468
+ BootstrapSelectsTest: test_collection_selects_are_wrapped_correctly
29469
+ -------------------------------------------------------------------
29470
+  (0.1ms) rollback transaction
29471
+  (0.0ms) begin transaction
29472
+ -------------------------------------------------------------------------------------------------
29473
+ BootstrapSelectsTest: test_collection_selects_with_options_and_html_options_are_wrapped_correctly
29474
+ -------------------------------------------------------------------------------------------------
29475
+  (0.0ms) rollback transaction
29476
+  (0.0ms) begin transaction
29477
+ --------------------------------------------------------------------------------
29478
+ BootstrapSelectsTest: test_collection_selects_with_options_are_wrapped_correctly
29479
+ --------------------------------------------------------------------------------
29480
+  (0.0ms) rollback transaction
29481
+  (0.0ms) begin transaction
29482
+ -------------------------------------------------------------
29483
+ BootstrapSelectsTest: test_date_selects_are_wrapped_correctly
29484
+ -------------------------------------------------------------
29485
+  (0.1ms) rollback transaction
29486
+  (0.0ms) begin transaction
29487
+ -------------------------------------------------------------------------------------------
29488
+ BootstrapSelectsTest: test_date_selects_with_options_and_html_options_are_wrapped_correctly
29489
+ -------------------------------------------------------------------------------------------
29490
+  (0.1ms) rollback transaction
29491
+  (0.0ms) begin transaction
29492
+ --------------------------------------------------------------------------
29493
+ BootstrapSelectsTest: test_date_selects_with_options_are_wrapped_correctly
29494
+ --------------------------------------------------------------------------
29495
+  (0.0ms) rollback transaction
29496
+  (0.0ms) begin transaction
29497
+ -----------------------------------------------------------------
29498
+ BootstrapSelectsTest: test_datetime_selects_are_wrapped_correctly
29499
+ -----------------------------------------------------------------
29500
+  (0.1ms) rollback transaction
29501
+  (0.0ms) begin transaction
29502
+ -----------------------------------------------------------------------------------------------
29503
+ BootstrapSelectsTest: test_datetime_selects_with_options_and_html_options_are_wrapped_correctly
29504
+ -----------------------------------------------------------------------------------------------
29505
+  (0.0ms) rollback transaction
29506
+  (0.1ms) begin transaction
29507
+ ------------------------------------------------------------------------------
29508
+ BootstrapSelectsTest: test_datetime_selects_with_options_are_wrapped_correctly
29509
+ ------------------------------------------------------------------------------
29510
+  (0.1ms) rollback transaction
29511
+  (0.0ms) begin transaction
29512
+ ---------------------------------------------------------------------------
29513
+ BootstrapSelectsTest: test_grouped_collection_selects_are_wrapped_correctly
29514
+ ---------------------------------------------------------------------------
29515
+  (0.1ms) rollback transaction
29516
+  (0.0ms) begin transaction
29517
+ ---------------------------------------------------------------------------------------------------------
29518
+ BootstrapSelectsTest: test_grouped_collection_selects_with_options_and_html_options_are_wrapped_correctly
29519
+ ---------------------------------------------------------------------------------------------------------
29520
+  (0.1ms) rollback transaction
29521
+  (0.0ms) begin transaction
29522
+ ----------------------------------------------------------------------------------------
29523
+ BootstrapSelectsTest: test_grouped_collection_selects_with_options_are_wrapped_correctly
29524
+ ----------------------------------------------------------------------------------------
29525
+  (0.0ms) rollback transaction
29526
+  (0.0ms) begin transaction
29527
+ --------------------------------------------------------
29528
+ BootstrapSelectsTest: test_selects_are_wrapped_correctly
29529
+ --------------------------------------------------------
29530
+  (0.0ms) rollback transaction
29531
+  (0.0ms) begin transaction
29532
+ ---------------------------------------------------------
29533
+ BootstrapSelectsTest: test_selects_render_labels_properly
29534
+ ---------------------------------------------------------
29535
+  (0.0ms) rollback transaction
29536
+  (0.0ms) begin transaction
29537
+ ------------------------------------------------------------------
29538
+ BootstrapSelectsTest: test_selects_with_block_use_block_as_content
29539
+ ------------------------------------------------------------------
29540
+  (0.1ms) rollback transaction
29541
+  (0.0ms) begin transaction
29542
+ -------------------------------------------------------------------------------------------
29543
+ BootstrapSelectsTest: test_selects_with_both_options_and_html_options_are_wrapped_correctly
29544
+ -------------------------------------------------------------------------------------------
29545
+  (0.0ms) rollback transaction
29546
+  (0.0ms) begin transaction
29547
+ ---------------------------------------------------------------------
29548
+ BootstrapSelectsTest: test_selects_with_options_are_wrapped_correctly
29549
+ ---------------------------------------------------------------------
29550
+  (0.0ms) rollback transaction
29551
+  (0.0ms) begin transaction
29552
+ -------------------------------------------------------------
29553
+ BootstrapSelectsTest: test_time_selects_are_wrapped_correctly
29554
+ -------------------------------------------------------------
29555
+  (0.0ms) rollback transaction
29556
+  (0.0ms) begin transaction
29557
+ -------------------------------------------------------------------------------------------
29558
+ BootstrapSelectsTest: test_time_selects_with_options_and_html_options_are_wrapped_correctly
29559
+ -------------------------------------------------------------------------------------------
29560
+  (0.1ms) rollback transaction
29561
+  (0.0ms) begin transaction
29562
+ --------------------------------------------------------------------------
29563
+ BootstrapSelectsTest: test_time_selects_with_options_are_wrapped_correctly
29564
+ --------------------------------------------------------------------------
29565
+  (0.1ms) rollback transaction
29566
+  (0.1ms) begin transaction
29567
+ ------------------------------------------------------------------
29568
+ BootstrapSelectsTest: test_time_zone_selects_are_wrapped_correctly
29569
+ ------------------------------------------------------------------
29570
+  (0.1ms) rollback transaction
29571
+  (0.0ms) begin transaction
29572
+ ------------------------------------------------------------------------------------
29573
+ BootstrapOtherComponentsTest: test_custom_control_does't_wrap_given_block_in_a_p_tag
29574
+ ------------------------------------------------------------------------------------
29575
+  (0.0ms) rollback transaction
29576
+  (0.0ms) begin transaction
29577
+ ------------------------------------------------------------------------
29578
+ BootstrapOtherComponentsTest: test_custom_control_doesn't_require_a_name
29579
+ ------------------------------------------------------------------------
29580
+  (0.0ms) rollback transaction
29581
+  (0.0ms) begin transaction
29582
+ -------------------------------------------------------------------------------------
29583
+ BootstrapOtherComponentsTest: test_custom_control_doesn't_require_an_actual_attribute
29584
+ -------------------------------------------------------------------------------------
29585
+  (0.0ms) rollback transaction
29586
+  (0.0ms) begin transaction
29587
+ ------------------------------------------------------------------
29588
+ BootstrapOtherComponentsTest: test_override_primary_button_classes
29589
+ ------------------------------------------------------------------
29590
+  (0.0ms) rollback transaction
29591
+  (0.0ms) begin transaction
29592
+ -----------------------------------------------------------------
29593
+ BootstrapOtherComponentsTest: test_override_submit_button_classes
29594
+ -----------------------------------------------------------------
29595
+  (0.0ms) rollback transaction
29596
+  (0.0ms) begin transaction
29597
+ -------------------------------------------------------------------------
29598
+ BootstrapOtherComponentsTest: test_primary_button_uses_proper_css_classes
29599
+ -------------------------------------------------------------------------
29600
+  (0.0ms) rollback transaction
29601
+  (0.0ms) begin transaction
29602
+ -------------------------------------------------
29603
+ BootstrapOtherComponentsTest: test_static_control
29604
+ -------------------------------------------------
29605
+  (0.0ms) rollback transaction
29606
+  (0.0ms) begin transaction
29607
+ ------------------------------------------------------------------------
29608
+ BootstrapOtherComponentsTest: test_static_control_doesn't_require_a_name
29609
+ ------------------------------------------------------------------------
29610
+  (0.0ms) rollback transaction
29611
+  (0.0ms) begin transaction
29612
+ -------------------------------------------------------------------------------------
29613
+ BootstrapOtherComponentsTest: test_static_control_doesn't_require_an_actual_attribute
29614
+ -------------------------------------------------------------------------------------
29615
+  (0.0ms) rollback transaction
29616
+  (0.0ms) begin transaction
29617
+ ------------------------------------------------------------------------------
29618
+ BootstrapOtherComponentsTest: test_submit_button_defaults_to_rails_action_name
29619
+ ------------------------------------------------------------------------------
29620
+  (0.0ms) rollback transaction
29621
+  (0.0ms) begin transaction
29622
+ ----------------------------------------------------------------------------
29623
+ BootstrapOtherComponentsTest: test_submit_button_uses_default_button_classes
29624
+ ----------------------------------------------------------------------------
29625
+  (0.0ms) rollback transaction
29626
+  (0.0ms) begin transaction
29627
+ --------------------------------------------------------------------------
29628
+ BootstrapFieldsTest: test_bootstrap_form_for_helper_works_for_associations
29629
+ --------------------------------------------------------------------------
29630
+  (0.1ms) rollback transaction
29631
+  (0.0ms) begin transaction
29632
+ ----------------------------------------------------------------------------------------
29633
+ BootstrapFieldsTest: test_bootstrap_form_for_helper_works_for_serialized_hash_attributes
29634
+ ----------------------------------------------------------------------------------------
29635
+  (0.1ms) rollback transaction
29636
+  (0.0ms) begin transaction
29637
+ ------------------------------------------------------------
29638
+ BootstrapFieldsTest: test_color_fields_are_wrapped_correctly
29639
+ ------------------------------------------------------------
29640
+  (0.0ms) rollback transaction
29641
+  (0.0ms) begin transaction
29642
+ -----------------------------------------------------------
29643
+ BootstrapFieldsTest: test_date_fields_are_wrapped_correctly
29644
+ -----------------------------------------------------------
29645
+  (0.1ms) rollback transaction
29646
+  (0.0ms) begin transaction
29647
+ ----------------------------------------------------------------
29648
+ BootstrapFieldsTest: test_date_time_fields_are_wrapped_correctly
29649
+ ----------------------------------------------------------------
29650
+  (0.1ms) rollback transaction
29651
+  (0.0ms) begin transaction
29652
+ ----------------------------------------------------------------------
29653
+ BootstrapFieldsTest: test_date_time_local_fields_are_wrapped_correctly
29654
+ ----------------------------------------------------------------------
29655
+  (0.0ms) rollback transaction
29656
+  (0.0ms) begin transaction
29657
+ ------------------------------------------------------------
29658
+ BootstrapFieldsTest: test_email_fields_are_wrapped_correctly
29659
+ ------------------------------------------------------------
29660
+  (0.0ms) rollback transaction
29661
+  (0.0ms) begin transaction
29662
+ ------------------------------------------------------------------------------------------
29663
+ BootstrapFieldsTest: test_fields_for_correctly_passes_horizontal_style_from_parent_builder
29664
+ ------------------------------------------------------------------------------------------
29665
+  (0.0ms) rollback transaction
29666
+  (0.0ms) begin transaction
29667
+ --------------------------------------------------------------------------------------
29668
+ BootstrapFieldsTest: test_fields_for_correctly_passes_inline_style_from_parent_builder
29669
+ --------------------------------------------------------------------------------------
29670
+  (0.0ms) rollback transaction
29671
+  (0.0ms) begin transaction
29672
+ -----------------------------------------------------------
29673
+ BootstrapFieldsTest: test_file_fields_are_wrapped_correctly
29674
+ -----------------------------------------------------------
29675
+  (0.1ms) rollback transaction
29676
+  (0.0ms) begin transaction
29677
+ -----------------------------------------------------
29678
+ BootstrapFieldsTest: test_hidden_fields_are_supported
29679
+ -----------------------------------------------------
29680
+  (0.0ms) rollback transaction
29681
+  (0.0ms) begin transaction
29682
+ ------------------------------------------------------------------
29683
+ BootstrapFieldsTest: test_month_local_fields_are_wrapped_correctly
29684
+ ------------------------------------------------------------------
29685
+  (0.1ms) rollback transaction
29686
+  (0.0ms) begin transaction
29687
+ -------------------------------------------------------------
29688
+ BootstrapFieldsTest: test_number_fields_are_wrapped_correctly
29689
+ -------------------------------------------------------------
29690
+  (0.0ms) rollback transaction
29691
+  (0.0ms) begin transaction
29692
+ ---------------------------------------------------------------
29693
+ BootstrapFieldsTest: test_password_fields_are_wrapped_correctly
29694
+ ---------------------------------------------------------------
29695
+  (0.0ms) rollback transaction
29696
+  (0.0ms) begin transaction
29697
+ ----------------------------------------------------------------------
29698
+ BootstrapFieldsTest: test_phone/telephone_fields_are_wrapped_correctly
29699
+ ----------------------------------------------------------------------
29700
+  (0.1ms) rollback transaction
29701
+  (0.0ms) begin transaction
29702
+ ------------------------------------------------------------
29703
+ BootstrapFieldsTest: test_range_fields_are_wrapped_correctly
29704
+ ------------------------------------------------------------
29705
+  (0.1ms) rollback transaction
29706
+  (0.0ms) begin transaction
29707
+ -------------------------------------------------------------
29708
+ BootstrapFieldsTest: test_search_fields_are_wrapped_correctly
29709
+ -------------------------------------------------------------
29710
+  (0.0ms) rollback transaction
29711
+  (0.0ms) begin transaction
29712
+ ----------------------------------------------------------
29713
+ BootstrapFieldsTest: test_text_areas_are_wrapped_correctly
29714
+ ----------------------------------------------------------
29715
+  (0.1ms) rollback transaction
29716
+  (0.0ms) begin transaction
29717
+ -----------------------------------------------------------
29718
+ BootstrapFieldsTest: test_text_fields_are_wrapped_correctly
29719
+ -----------------------------------------------------------
29720
+  (0.0ms) rollback transaction
29721
+  (0.0ms) begin transaction
29722
+ -----------------------------------------------------------
29723
+ BootstrapFieldsTest: test_time_fields_are_wrapped_correctly
29724
+ -----------------------------------------------------------
29725
+  (0.1ms) rollback transaction
29726
+  (0.0ms) begin transaction
29727
+ ----------------------------------------------------------
29728
+ BootstrapFieldsTest: test_url_fields_are_wrapped_correctly
29729
+ ----------------------------------------------------------
29730
+  (0.0ms) rollback transaction
29731
+  (0.0ms) begin transaction
29732
+ -----------------------------------------------------------
29733
+ BootstrapFieldsTest: test_week_fields_are_wrapped_correctly
29734
+ -----------------------------------------------------------
29735
+  (0.1ms) rollback transaction
29736
+  (0.1ms) begin transaction
29737
+ --------------------------------------------------------------------------------
29738
+ SpecialFormClassModelsTest: test_Anonymous_models_are_supported_for_form_builder
29739
+ --------------------------------------------------------------------------------
29740
+  (0.1ms) rollback transaction
29741
+  (0.0ms) begin transaction
29742
+ --------------------------------------------------------------------------
29743
+ SpecialFormClassModelsTest: test_Nil_models_are_supported_for_form_builder
29744
+ --------------------------------------------------------------------------
29745
+  (0.0ms) rollback transaction
29746
+  (0.0ms) begin transaction
29747
+ -------------------------------------------------------------------------------------------
29748
+ SpecialFormClassModelsTest: test_Objects_without_model_names_are_supported_for_form_builder
29749
+ -------------------------------------------------------------------------------------------
29750
+  (0.1ms) rollback transaction
29751
+  (0.0ms) begin transaction
29752
+ -------------------------------------------------------------------------------
29753
+ BootstrapFormTest: test_alert_message_allows_the_error_summary_to_be_turned_off
29754
+ -------------------------------------------------------------------------------
29755
+  (0.1ms) rollback transaction
29756
+  (0.0ms) begin transaction
29757
+ ----------------------------------------------------------------------------------------------------------------
29758
+ BootstrapFormTest: test_alert_message_allows_the_error_summary_to_be_turned_on_with_inline_errors_also_turned_on
29759
+ ----------------------------------------------------------------------------------------------------------------
29760
+  (0.1ms) rollback transaction
29761
+  (0.0ms) begin transaction
29762
+ --------------------------------------------------------------------------------------------------
29763
+ BootstrapFormTest: test_alert_message_contains_the_error_summary_when_inline_errors_are_turned_off
29764
+ --------------------------------------------------------------------------------------------------
29765
+  (0.1ms) rollback transaction
29766
+  (0.0ms) begin transaction
29767
+ ----------------------------------------------------------
29768
+ BootstrapFormTest: test_alert_message_is_wrapped_correctly
29769
+ ----------------------------------------------------------
29770
+  (0.0ms) rollback transaction
29771
+  (0.0ms) begin transaction
29772
+ --------------------------------------------------------
29773
+ BootstrapFormTest: test_allows_the_form_object_to_be_nil
29774
+ --------------------------------------------------------
29775
+  (0.0ms) rollback transaction
29776
+  (0.0ms) begin transaction
29777
+ ---------------------------------------------------------------
29778
+ BootstrapFormTest: test_bootstrap_form_tag_acts_like_a_form_tag
29779
+ ---------------------------------------------------------------
29780
+  (0.0ms) rollback transaction
29781
+  (0.0ms) begin transaction
29782
+ ------------------------------------------------------------------------------
29783
+ BootstrapFormTest: test_bootstrap_form_tag_allows_an_empty_name_for_checkboxes
29784
+ ------------------------------------------------------------------------------
29785
+  (0.0ms) rollback transaction
29786
+  (0.0ms) begin transaction
29787
+ --------------------------------------------------------------------------
29788
+ BootstrapFormTest: test_bootstrap_form_tag_does_not_clobber_custom_options
29789
+ --------------------------------------------------------------------------
29790
+  (0.0ms) rollback transaction
29791
+  (0.0ms) begin transaction
29792
+ ---------------------------------------------------------------------
29793
+ BootstrapFormTest: test_changing_the_class_name_for_the_alert_message
29794
+ ---------------------------------------------------------------------
29795
+  (0.0ms) rollback transaction
29796
+  (0.0ms) begin transaction
29797
+ ---------------------------------------------------------------
29798
+ BootstrapFormTest: test_custom_input_width_for_horizontal_forms
29799
+ ---------------------------------------------------------------
29800
+  (0.0ms) rollback transaction
29801
+  (0.0ms) begin transaction
29802
+ ---------------------------------------------------------------
29803
+ BootstrapFormTest: test_custom_label_width_for_horizontal_forms
29804
+ ---------------------------------------------------------------
29805
+  (0.0ms) rollback transaction
29806
+  (0.0ms) begin transaction
29807
+ -------------------------------------------
29808
+ BootstrapFormTest: test_default-style_forms
29809
+ -------------------------------------------
29810
+  (0.0ms) rollback transaction
29811
+  (0.0ms) begin transaction
29812
+ -------------------------------------------------------------------------
29813
+ BootstrapFormTest: test_error_summary_returns_an_unordered_list_of_errors
29814
+ -------------------------------------------------------------------------
29815
+  (0.1ms) rollback transaction
29816
+  (0.0ms) begin transaction
29817
+ ----------------------------------------------------------------------------------------------------------------------
29818
+ BootstrapFormTest: test_errors_display_correctly_and_inline_errors_are_turned_off_by_default_when_label_errors_is_true
29819
+ ----------------------------------------------------------------------------------------------------------------------
29820
+  (0.0ms) rollback transaction
29821
+  (0.0ms) begin transaction
29822
+ -----------------------------------------------------------------------------------------------------------
29823
+ BootstrapFormTest: test_errors_display_correctly_and_inline_errors_can_also_be_on_when_label_errors_is_true
29824
+ -----------------------------------------------------------------------------------------------------------
29825
+  (0.0ms) rollback transaction
29826
+  (0.0ms) begin transaction
29827
+ ----------------------------------------------------------------
29828
+ BootstrapFormTest: test_errors_on_hide_attribute_name_in_message
29829
+ ----------------------------------------------------------------
29830
+  (0.0ms) rollback transaction
29831
+  (0.0ms) begin transaction
29832
+ ------------------------------------------------------------------------------------------
29833
+ BootstrapFormTest: test_errors_on_renders_the_errors_for_a_specific_attribute_when_invalid
29834
+ ------------------------------------------------------------------------------------------
29835
+  (0.0ms) rollback transaction
29836
+  (0.0ms) begin transaction
29837
+ -------------------------------------------------------------------------------------
29838
+ BootstrapFormTest: test_existing_styles_aren't_clobbered_when_specifying_a_form_style
29839
+ -------------------------------------------------------------------------------------
29840
+  (0.0ms) rollback transaction
29841
+  (0.0ms) begin transaction
29842
+ --------------------------------------------------------------------------------------------
29843
+ BootstrapFormTest: test_given_role_attribute_should_not_be_covered_by_default_role_attribute
29844
+ --------------------------------------------------------------------------------------------
29845
+  (0.0ms) rollback transaction
29846
+  (0.0ms) begin transaction
29847
+ ---------------------------------------------------------------------------------------------------
29848
+ BootstrapFormTest: test_help_is_preserved_when_inline_errors:_false_is_passed_to_bootstrap_form_for
29849
+ ---------------------------------------------------------------------------------------------------
29850
+  (0.0ms) rollback transaction
29851
+  (0.0ms) begin transaction
29852
+ ----------------------------------------------
29853
+ BootstrapFormTest: test_horizontal-style_forms
29854
+ ----------------------------------------------
29855
+  (0.0ms) rollback transaction
29856
+  (0.0ms) begin transaction
29857
+ ------------------------------------------
29858
+ BootstrapFormTest: test_inline-style_forms
29859
+ ------------------------------------------
29860
+  (0.0ms) rollback transaction
29861
+  (0.0ms) begin transaction
29862
+ --------------------------------------------------------------------------
29863
+ BootstrapFormTest: test_label_error_messages_use_humanized_attribute_names
29864
+ --------------------------------------------------------------------------
29865
+  (0.0ms) rollback transaction
29866
+  (0.1ms) begin transaction
29867
+ -----------------------------------------------------------------------------------------------------
29868
+ BootstrapFormTest: test_offset_for_form_group_without_label_respects_label_width_for_horizontal_forms
29869
+ -----------------------------------------------------------------------------------------------------
29870
+  (0.0ms) rollback transaction
29871
+  (0.0ms) begin transaction
29872
+ --------------------------------------------------------------------------------------------------------------------------------
29873
+ BootstrapFormTest: test_the_field_contains_the_error_and_is_not_wrapped_in_div.field_with_errors_when_bootstrap_form_for_is_used
29874
+ --------------------------------------------------------------------------------------------------------------------------------
29875
+  (0.0ms) rollback transaction
29876
+  (0.0ms) begin transaction
29877
+ ---------------------------------------------------------------------------------------------
29878
+ BootstrapFormTest: test_the_field_is_wrapped_with_div.field_with_errors_when_form_for_is_used
29879
+ ---------------------------------------------------------------------------------------------
29880
+  (0.1ms) rollback transaction