bootstrap4_form_builder 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 974db139d9433498cc39cea61e94e6826ee75115
4
- data.tar.gz: 1a2e42618302f022c07014728766d947fef4c923
3
+ metadata.gz: d8b28f0c9f1b4c4767f3e351d21027760826d7e8
4
+ data.tar.gz: 25900eacf7b9ecf509ccc094825d566552a6cd8c
5
5
  SHA512:
6
- metadata.gz: c5ccd4d4992daa7ba8ee9269b9106927fe7d3d83850600f5b785a14bfba0e09856e6d6e3be963ed352cd510b9047e9637c4fa7fa5ca02095a2c10ad94fcf9711
7
- data.tar.gz: 079aca0f9a5fb7a914722bda45e63cc4295ba35e299a4759a334e8e78290e4e1086ba866bb815001441d3284fad0cdcb443731a2236dd2c85c9c4b3d0e93cfa1
6
+ metadata.gz: de641609d755e07a901a57b6ad6e60fcc6d43e7c1b3b8596c99abf581ab43f44f4af5e1662a1f20aa87b7ec0f3c088b178be42fa81680702c012f6f7fa0bc43d
7
+ data.tar.gz: 806644215636d1fd3f36e5539e0874bc96186275d59c35cff7af15b5cee640233b4cd9289cc7bb554bcfc4dc8c6a72fd90f9913e4291e56940bcb7ab42eb9e13
@@ -181,7 +181,8 @@ module Bootstrap4FormBuilder
181
181
  def generate_label(name, *args)
182
182
  options = args.extract_options!
183
183
  label_class = options.delete(:label_class)
184
- label_class = ["form-control-label", @label_col, label_class]
184
+ label_class = [@label_col, label_class]
185
+ label_class << "form-control-label" if gridded_form?
185
186
  label_class << hide_label_class if hide_label?(options)
186
187
  label_class << label_error_class if has_errors?(name)
187
188
  label_class = label_class.compact.join(" ")
@@ -7,15 +7,7 @@ module Bootstrap4FormBuilder
7
7
  options[:html] ||= {}
8
8
  options[:html][:role] ||= "form"
9
9
 
10
- #Done in Builder
11
- # if options[:layout] == :inline
12
- # options[:html][:class] = [options[:html][:class], "form-inline"].compact.join(" ")
13
- # end
14
-
15
- #Done in Builder
16
- #temporarily_disable_field_error_proc do
17
- form_for(object, options, &block)
18
- #end
10
+ form_for(object, options, &block)
19
11
  end
20
12
 
21
13
 
@@ -1,3 +1,3 @@
1
1
  module Bootstrap4FormBuilder
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -4,17 +4,17 @@ class Bootstap4FormBuilderHelperTest < ActionView::TestCase
4
4
  include Bootstrap4FormBuilder::Helper
5
5
 
6
6
  test "default forms" do
7
- expected = %{<form role="form" class="new_user" id="new_user" action="/users" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="&#x2713;" /><div class="form-group"><label class="form-control-label" for="user_name">Name</label><input class="form-control" type="text" name="user[name]" id="user_name" /></div></form>}
7
+ expected = %{<form role="form" class="new_user" id="new_user" action="/users" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="&#x2713;" /><div class="form-group"><label class="" for="user_name">Name</label><input class="form-control" type="text" name="user[name]" id="user_name" /></div></form>}
8
8
  assert_equal expected, bootstrap_form_for(User.new) { |f| f.text_field(:name)}
9
9
  end
10
10
 
11
11
  test "inline forms" do
12
- expected = %{<form role="form" class="new_user form-inline" id="new_user" action="/users" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="&#x2713;" /><div class="form-group"><label class="form-control-label" for="user_name">Name</label><input class="form-control" type="text" name="user[name]" id="user_name" /></div></form>}
12
+ expected = %{<form role="form" class="new_user form-inline" id="new_user" action="/users" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="&#x2713;" /><div class="form-group"><label class="" for="user_name">Name</label><input class="form-control" type="text" name="user[name]" id="user_name" /></div></form>}
13
13
  assert_equal expected, bootstrap_form_for(User.new, layout: :inline) { |f| f.text_field(:name)}
14
14
  end
15
15
 
16
16
  test "gridded forms" do
17
- expected = %{<form role="form" class="new_user" id="new_user" action="/users" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="&#x2713;" /><div class="form-group row"><label class="form-control-label col-sm-2" for="user_name">Name</label><div class="col-sm-10"><input class="form-control" type="text" name="user[name]" id="user_name" /></div></div></form>}
17
+ expected = %{<form role="form" class="new_user" id="new_user" action="/users" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="&#x2713;" /><div class="form-group row"><label class="col-sm-2 form-control-label" for="user_name">Name</label><div class="col-sm-10"><input class="form-control" type="text" name="user[name]" id="user_name" /></div></div></form>}
18
18
  assert_equal expected, bootstrap_form_for(User.new, label_col: 'col-sm-2', control_col: 'col-sm-10') { |f| f.text_field(:name)}
19
19
  end
20
20
  end
@@ -9,92 +9,92 @@ class Bootstrap4FormBuilderTest < ActionView::TestCase
9
9
  end
10
10
 
11
11
  test "color_field is wrapped correctly" do
12
- expected = %{<div class="form-group"><label class="form-control-label" for="user_color">Color</label><input class="form-control" value="#000000" type="color" name="user[color]" id="user_color" /></div>}
12
+ expected = %{<div class="form-group"><label class="" for="user_color">Color</label><input class="form-control" value="#000000" type="color" name="user[color]" id="user_color" /></div>}
13
13
  assert_equal expected, @builder.color_field(:color)
14
14
  end
15
15
 
16
16
  test "date_field is wrapped correctly" do
17
- expected = %{<div class="form-group"><label class="form-control-label" for="user_birthdate">Birthdate</label><input class="form-control" value="#000000" type="color" name="user[birthdate]" id="user_birthdate" /></div>}
17
+ expected = %{<div class="form-group"><label class="" for="user_birthdate">Birthdate</label><input class="form-control" value="#000000" type="color" name="user[birthdate]" id="user_birthdate" /></div>}
18
18
  assert_equal expected, @builder.color_field(:birthdate)
19
19
  end
20
20
 
21
21
  test "datetime_local_field is wrapped correctly" do
22
- expected = %{<div class="form-group"><label class="form-control-label" for="user_birthdate">Birthdate</label><input class="form-control" type="datetime-local" name="user[birthdate]" id="user_birthdate" /></div>}
22
+ expected = %{<div class="form-group"><label class="" for="user_birthdate">Birthdate</label><input class="form-control" type="datetime-local" name="user[birthdate]" id="user_birthdate" /></div>}
23
23
  assert_equal expected, @builder.datetime_local_field(:birthdate)
24
24
  end
25
25
 
26
26
  test "email_field is wrapped correctly" do
27
- expected = %{<div class="form-group"><label class="form-control-label" for="user_email">Email</label><input class="form-control" type="email" name="user[email]" id="user_email" /></div>}
27
+ expected = %{<div class="form-group"><label class="" for="user_email">Email</label><input class="form-control" type="email" name="user[email]" id="user_email" /></div>}
28
28
  assert_equal expected, @builder.email_field(:email)
29
29
  end
30
30
 
31
31
  test "month_field is wrapped correctly" do
32
- expected = %{<div class="form-group"><label class="form-control-label" for="user_month">Month</label><input class="form-control" type="month" name="user[month]" id="user_month" /></div>}
32
+ expected = %{<div class="form-group"><label class="" for="user_month">Month</label><input class="form-control" type="month" name="user[month]" id="user_month" /></div>}
33
33
  assert_equal expected, @builder.month_field(:month)
34
34
  end
35
35
 
36
36
  test "number_field is wrapped correctly" do
37
- expected = %{<div class="form-group"><label class="form-control-label" for="user_number">Number</label><input class="form-control" type="number" name="user[number]" id="user_number" /></div>}
37
+ expected = %{<div class="form-group"><label class="" for="user_number">Number</label><input class="form-control" type="number" name="user[number]" id="user_number" /></div>}
38
38
  assert_equal expected, @builder.number_field(:number)
39
39
  end
40
40
 
41
41
  test "password_field is wrapped correctly" do
42
- expected = %{<div class="form-group"><label class="form-control-label" for="user_password">Password</label><input class="form-control" type="password" name="user[password]" id="user_password" /></div>}
42
+ expected = %{<div class="form-group"><label class="" for="user_password">Password</label><input class="form-control" type="password" name="user[password]" id="user_password" /></div>}
43
43
  assert_equal expected, @builder.password_field(:password)
44
44
  end
45
45
 
46
46
  test "phone_field is wrapped correctly" do
47
- expected = %{<div class="form-group"><label class="form-control-label" for="user_phone">Phone</label><input class="form-control" type="tel" name="user[phone]" id="user_phone" /></div>}
47
+ expected = %{<div class="form-group"><label class="" for="user_phone">Phone</label><input class="form-control" type="tel" name="user[phone]" id="user_phone" /></div>}
48
48
  assert_equal expected, @builder.phone_field(:phone)
49
49
  end
50
50
 
51
51
  test "range_field is wrapped correctly" do
52
- expected = %{<div class="form-group"><label class="form-control-label" for="user_range">Range</label><input class="form-control" type="range" name="user[range]" id="user_range" /></div>}
52
+ expected = %{<div class="form-group"><label class="" for="user_range">Range</label><input class="form-control" type="range" name="user[range]" id="user_range" /></div>}
53
53
  assert_equal expected, @builder.range_field(:range)
54
54
  end
55
55
 
56
56
  test "search_field is wrapped correctly" do
57
- expected = %{<div class="form-group"><label class="form-control-label" for="user_search">Search</label><input class="form-control" type="search" name="user[search]" id="user_search" /></div>}
57
+ expected = %{<div class="form-group"><label class="" for="user_search">Search</label><input class="form-control" type="search" name="user[search]" id="user_search" /></div>}
58
58
  assert_equal expected, @builder.search_field(:search)
59
59
  end
60
60
 
61
61
  test "telephone_field is wrapped correctly" do
62
- expected = %{<div class="form-group"><label class="form-control-label" for="user_phone">Phone</label><input class="form-control" type="tel" name="user[phone]" id="user_phone" /></div>}
62
+ expected = %{<div class="form-group"><label class="" for="user_phone">Phone</label><input class="form-control" type="tel" name="user[phone]" id="user_phone" /></div>}
63
63
  assert_equal expected, @builder.telephone_field(:phone)
64
64
  end
65
65
 
66
66
  test "text_field is wrapped correctly" do
67
- expected = %{<div class="form-group"><label class="form-control-label" for="user_name">Name</label><input class="form-control" type="text" name="user[name]" id="user_name" /></div>}
67
+ expected = %{<div class="form-group"><label class="" for="user_name">Name</label><input class="form-control" type="text" name="user[name]" id="user_name" /></div>}
68
68
  assert_equal expected, @builder.text_field(:name)
69
69
  end
70
70
 
71
71
  test "text_area is wrapped correctly" do
72
- expected = %{<div class="form-group"><label class="form-control-label" for="user_comments">Comments</label><textarea class="form-control" name="user[comments]" id="user_comments">\n</textarea></div>}
72
+ expected = %{<div class="form-group"><label class="" for="user_comments">Comments</label><textarea class="form-control" name="user[comments]" id="user_comments">\n</textarea></div>}
73
73
  assert_equal expected, @builder.text_area(:comments)
74
74
  end
75
75
 
76
76
  test "time_field is wrapped correctly" do
77
- expected = %{<div class="form-group"><label class="form-control-label" for="user_time">Time</label><input class="form-control" type="time" name="user[time]" id="user_time" /></div>}
77
+ expected = %{<div class="form-group"><label class="" for="user_time">Time</label><input class="form-control" type="time" name="user[time]" id="user_time" /></div>}
78
78
  assert_equal expected, @builder.time_field(:time)
79
79
  end
80
80
 
81
81
  test "url_field is wrapped correctly" do
82
- expected = %{<div class="form-group"><label class="form-control-label" for="user_url">Url</label><input class="form-control" type="url" name="user[url]" id="user_url" /></div>}
82
+ expected = %{<div class="form-group"><label class="" for="user_url">Url</label><input class="form-control" type="url" name="user[url]" id="user_url" /></div>}
83
83
  assert_equal expected, @builder.url_field(:url)
84
84
  end
85
85
 
86
86
  test "week_field is wrapped correctly" do
87
- expected = %{<div class="form-group"><label class="form-control-label" for="user_week">Week</label><input class="form-control" type="week" name="user[week]" id="user_week" /></div>}
87
+ expected = %{<div class="form-group"><label class="" for="user_week">Week</label><input class="form-control" type="week" name="user[week]" id="user_week" /></div>}
88
88
  assert_equal expected, @builder.week_field(:week)
89
89
  end
90
90
 
91
91
  test "inline text_field is wrapped correctly" do
92
- expected = %{<div class="form-group"><label class="form-control-label" for="user_name">Name</label><input placeholder="Name" class="form-control" type="text" name="user[name]" id="user_name" /></div>}
92
+ expected = %{<div class="form-group"><label class="" for="user_name">Name</label><input placeholder="Name" class="form-control" type="text" name="user[name]" id="user_name" /></div>}
93
93
  assert_equal expected, @inline_builder.text_field(:name, placeholder: "Name")
94
94
  end
95
95
 
96
96
  test "gridded form field is wrapped correctly" do
97
- expected = %{<div class="form-group row"><label class="form-control-label col-sm-2" for="user_name">Name</label><div class="col-sm-8"><input class="form-control" type="text" name="user[name]" id="user_name" /></div></div>}
97
+ expected = %{<div class="form-group row"><label class="col-sm-2 form-control-label" for="user_name">Name</label><div class="col-sm-8"><input class="form-control" type="text" name="user[name]" id="user_name" /></div></div>}
98
98
  assert_equal expected, @gridded_builder.text_field(:name)
99
99
  end
100
100
 
@@ -109,22 +109,22 @@ class Bootstrap4FormBuilderTest < ActionView::TestCase
109
109
  end
110
110
 
111
111
  test "custom label text is included" do
112
- expected = %{<div class="form-group"><label class="form-control-label" for="user_name">Full Name</label><input class="form-control" type="text" name="user[name]" id="user_name" /></div>}
112
+ expected = %{<div class="form-group"><label class="" for="user_name">Full Name</label><input class="form-control" type="text" name="user[name]" id="user_name" /></div>}
113
113
  assert_equal expected, @builder.text_field(:name, label: "Full Name")
114
114
  end
115
115
 
116
116
  test "custom label class is included" do
117
- expected = %{<div class="form-group"><label class="form-control-label custom-label" for="user_name">Name</label><input class="form-control" type="text" name="user[name]" id="user_name" /></div>}
117
+ expected = %{<div class="form-group"><label class="custom-label" for="user_name">Name</label><input class="form-control" type="text" name="user[name]" id="user_name" /></div>}
118
118
  assert_equal expected, @builder.text_field(:name, label_class: "custom-label")
119
119
  end
120
120
 
121
121
  test "label is hidden when requested" do
122
- expected = %{<div class="form-group"><label class="form-control-label sr-only" for="user_name">Name</label><input class="form-control" type="text" name="user[name]" id="user_name" /></div>}
122
+ expected = %{<div class="form-group"><label class="sr-only" for="user_name">Name</label><input class="form-control" type="text" name="user[name]" id="user_name" /></div>}
123
123
  assert_equal expected, @builder.text_field(:name, hide_label: true)
124
124
  end
125
125
 
126
126
  test "custom container class is include" do
127
- expected = %{<div class="form-group custom-class"><label class="form-control-label" for="user_name">Name</label><input class="form-control" type="text" name="user[name]" id="user_name" /></div>}
127
+ expected = %{<div class="form-group custom-class"><label class="" for="user_name">Name</label><input class="form-control" type="text" name="user[name]" id="user_name" /></div>}
128
128
  assert_equal expected, @builder.text_field(:name, container_class: "custom-class")
129
129
  end
130
130
  end
@@ -10,22 +10,22 @@ class Bootstrap4FormErrorTest < ActionView::TestCase
10
10
  end
11
11
 
12
12
  test "text_field with errors is wrapped correctly" do
13
- expected = %{<div class="form-group field-with-errors"><label class="form-control-label label-error" for="user_name">Name</label><input class="form-control" type="text" name="user[name]" id="user_name" /><small class="text-muted error-text">can&#39;t be blank</small></div>}
13
+ expected = %{<div class="form-group field-with-errors"><label class="label-error" for="user_name">Name</label><input class="form-control" type="text" name="user[name]" id="user_name" /><small class="text-muted error-text">can&#39;t be blank</small></div>}
14
14
  assert_equal expected, @builder.text_field(:name)
15
15
  end
16
16
 
17
17
  test "text_field with errors includes inline-error-class" do
18
- expected = %{<div class="form-group field-with-errors"><label class="form-control-label label-error" for="user_name">Name</label><input class="form-control" type="text" name="user[name]" id="user_name" /><small class="text-muted error-text col-sm-2">can&#39;t be blank</small></div>}
18
+ expected = %{<div class="form-group field-with-errors"><label class="label-error" for="user_name">Name</label><input class="form-control" type="text" name="user[name]" id="user_name" /><small class="text-muted error-text col-sm-2">can&#39;t be blank</small></div>}
19
19
  assert_equal expected, @inline_builder.text_field(:name)
20
20
  end
21
21
 
22
22
  test "email_field with errors is wrapped correctly" do
23
- expected = %{<div class="form-group field-with-errors"><label class="form-control-label label-error" for="user_email">Email</label><input class="form-control" type="email" value="wrong" name="user[email]" id="user_email" /><small class="text-muted error-text">must have an @</small></div>}
23
+ expected = %{<div class="form-group field-with-errors"><label class="label-error" for="user_email">Email</label><input class="form-control" type="email" value="wrong" name="user[email]" id="user_email" /><small class="text-muted error-text">must have an @</small></div>}
24
24
  assert_equal expected, @builder.email_field(:email)
25
25
  end
26
26
 
27
27
  test "text_field with errors, without inline errors is wrapped correctly" do
28
- expected = %{<div class="form-group field-with-errors"><label class="form-control-label label-error" for="user_name">Name</label><input class="form-control" type="text" name="user[name]" id="user_name" /></div>}
28
+ expected = %{<div class="form-group field-with-errors"><label class="label-error" for="user_name">Name</label><input class="form-control" type="text" name="user[name]" id="user_name" /></div>}
29
29
  assert_equal expected, @noninline_error_builder.text_field(:name)
30
30
  end
31
31
 
@@ -1406,3 +1406,2159 @@ Bootstap4FormBuilderHelperTest: test_gridded_forms
1406
1406
  Bootstap4FormBuilderHelperTest: test_inline_forms
1407
1407
  -------------------------------------------------
1408
1408
   (0.0ms) rollback transaction
1409
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1410
+  (0.1ms) begin transaction
1411
+ --------------------------------------------------------------------
1412
+ Bootstrap4FormBuilderTest: test_telephone_field_is_wrapped_correctly
1413
+ --------------------------------------------------------------------
1414
+  (0.1ms) rollback transaction
1415
+  (0.0ms) begin transaction
1416
+ ---------------------------------------------------------------
1417
+ Bootstrap4FormBuilderTest: test_text_field_is_wrapped_correctly
1418
+ ---------------------------------------------------------------
1419
+  (0.0ms) rollback transaction
1420
+  (0.1ms) begin transaction
1421
+ -------------------------------------------------------------
1422
+ Bootstrap4FormBuilderTest: test_custom_label_text_is_included
1423
+ -------------------------------------------------------------
1424
+  (0.0ms) rollback transaction
1425
+  (0.0ms) begin transaction
1426
+ ------------------------------------------------------------
1427
+ Bootstrap4FormBuilderTest: test_primary_is_classed_correctly
1428
+ ------------------------------------------------------------
1429
+  (0.0ms) rollback transaction
1430
+  (0.0ms) begin transaction
1431
+ -----------------------------------------------------------------
1432
+ Bootstrap4FormBuilderTest: test_search_field_is_wrapped_correctly
1433
+ -----------------------------------------------------------------
1434
+  (0.0ms) rollback transaction
1435
+  (0.0ms) begin transaction
1436
+ -----------------------------------------------------------------
1437
+ Bootstrap4FormBuilderTest: test_custom_container_class_is_include
1438
+ -----------------------------------------------------------------
1439
+  (0.0ms) rollback transaction
1440
+  (0.1ms) begin transaction
1441
+ ----------------------------------------------------------------
1442
+ Bootstrap4FormBuilderTest: test_color_field_is_wrapped_correctly
1443
+ ----------------------------------------------------------------
1444
+  (0.1ms) rollback transaction
1445
+  (0.0ms) begin transaction
1446
+ --------------------------------------------------------------
1447
+ Bootstrap4FormBuilderTest: test_label_is_hidden_when_requested
1448
+ --------------------------------------------------------------
1449
+  (0.0ms) rollback transaction
1450
+  (0.0ms) begin transaction
1451
+ ----------------------------------------------------------------------
1452
+ Bootstrap4FormBuilderTest: test_inline_text_field_is_wrapped_correctly
1453
+ ----------------------------------------------------------------------
1454
+  (0.0ms) rollback transaction
1455
+  (0.0ms) begin transaction
1456
+ ----------------------------------------------------------------
1457
+ Bootstrap4FormBuilderTest: test_range_field_is_wrapped_correctly
1458
+ ----------------------------------------------------------------
1459
+  (0.1ms) rollback transaction
1460
+  (0.1ms) begin transaction
1461
+ --------------------------------------------------------------
1462
+ Bootstrap4FormBuilderTest: test_custom_label_class_is_included
1463
+ --------------------------------------------------------------
1464
+  (0.0ms) rollback transaction
1465
+  (0.0ms) begin transaction
1466
+ ---------------------------------------------------------------
1467
+ Bootstrap4FormBuilderTest: test_date_field_is_wrapped_correctly
1468
+ ---------------------------------------------------------------
1469
+  (0.0ms) rollback transaction
1470
+  (0.0ms) begin transaction
1471
+ -----------------------------------------------------------------------
1472
+ Bootstrap4FormBuilderTest: test_gridded_form_field_is_wrapped_correctly
1473
+ -----------------------------------------------------------------------
1474
+  (0.0ms) rollback transaction
1475
+  (0.0ms) begin transaction
1476
+ ----------------------------------------------------------------
1477
+ Bootstrap4FormBuilderTest: test_phone_field_is_wrapped_correctly
1478
+ ----------------------------------------------------------------
1479
+  (0.0ms) rollback transaction
1480
+  (0.0ms) begin transaction
1481
+ ---------------------------------------------------------------
1482
+ Bootstrap4FormBuilderTest: test_time_field_is_wrapped_correctly
1483
+ ---------------------------------------------------------------
1484
+  (0.1ms) rollback transaction
1485
+  (0.0ms) begin transaction
1486
+ ----------------------------------------------------------------
1487
+ Bootstrap4FormBuilderTest: test_email_field_is_wrapped_correctly
1488
+ ----------------------------------------------------------------
1489
+  (0.0ms) rollback transaction
1490
+  (0.0ms) begin transaction
1491
+ --------------------------------------------------------------
1492
+ Bootstrap4FormBuilderTest: test_url_field_is_wrapped_correctly
1493
+ --------------------------------------------------------------
1494
+  (0.1ms) rollback transaction
1495
+  (0.0ms) begin transaction
1496
+ ----------------------------------------------------------------
1497
+ Bootstrap4FormBuilderTest: test_month_field_is_wrapped_correctly
1498
+ ----------------------------------------------------------------
1499
+  (0.1ms) rollback transaction
1500
+  (0.0ms) begin transaction
1501
+ -----------------------------------------------------------------
1502
+ Bootstrap4FormBuilderTest: test_number_field_is_wrapped_correctly
1503
+ -----------------------------------------------------------------
1504
+  (0.0ms) rollback transaction
1505
+  (0.0ms) begin transaction
1506
+ -----------------------------------------------------------
1507
+ Bootstrap4FormBuilderTest: test_submit_is_classed_correctly
1508
+ -----------------------------------------------------------
1509
+  (0.0ms) rollback transaction
1510
+  (0.0ms) begin transaction
1511
+ ---------------------------------------------------------------
1512
+ Bootstrap4FormBuilderTest: test_week_field_is_wrapped_correctly
1513
+ ---------------------------------------------------------------
1514
+  (0.1ms) rollback transaction
1515
+  (0.0ms) begin transaction
1516
+ --------------------------------------------------------------
1517
+ Bootstrap4FormBuilderTest: test_text_area_is_wrapped_correctly
1518
+ --------------------------------------------------------------
1519
+  (0.0ms) rollback transaction
1520
+  (0.0ms) begin transaction
1521
+ -------------------------------------------------------------------------
1522
+ Bootstrap4FormBuilderTest: test_datetime_local_field_is_wrapped_correctly
1523
+ -------------------------------------------------------------------------
1524
+  (0.0ms) rollback transaction
1525
+  (0.0ms) begin transaction
1526
+ -------------------------------------------------------------------
1527
+ Bootstrap4FormBuilderTest: test_password_field_is_wrapped_correctly
1528
+ -------------------------------------------------------------------
1529
+  (0.0ms) rollback transaction
1530
+  (0.0ms) begin transaction
1531
+ -------------------------------------------------------------------------------
1532
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_inline_is_wrapped_correctly
1533
+ -------------------------------------------------------------------------------
1534
+  (0.0ms) rollback transaction
1535
+  (0.0ms) begin transaction
1536
+ ------------------------------------------------------------------------
1537
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_is_wrapped_correctly
1538
+ ------------------------------------------------------------------------
1539
+  (0.0ms) rollback transaction
1540
+  (0.0ms) begin transaction
1541
+ ---------------------------------------------------------------------------
1542
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_is_wrapped_correctly
1543
+ ---------------------------------------------------------------------------
1544
+  (0.0ms) rollback transaction
1545
+  (0.0ms) begin transaction
1546
+ ----------------------------------------------------------------------------------
1547
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_inline_is_wrapped_correctly
1548
+ ----------------------------------------------------------------------------------
1549
+  (0.0ms) rollback transaction
1550
+  (0.0ms) begin transaction
1551
+ ---------------------------------------------------------------------------------------
1552
+ Bootstrap4FormBuilderRadioCheckTest: test_form_group_label_and_label_class_are_included
1553
+ ---------------------------------------------------------------------------------------
1554
+  (0.0ms) rollback transaction
1555
+  (0.0ms) begin transaction
1556
+ ------------------------------------------------------------------------------------------------
1557
+ Bootstrap4FormErrorTest: test_text_field_with_errors,_without_inline_errors_is_wrapped_correctly
1558
+ ------------------------------------------------------------------------------------------------
1559
+  (0.0ms) rollback transaction
1560
+  (0.0ms) begin transaction
1561
+ ----------------------------------------------------------------------------------------
1562
+ Bootstrap4FormErrorTest: test_alert_message_with_error_summary_produces_the_correct_html
1563
+ ----------------------------------------------------------------------------------------
1564
+  (0.0ms) rollback transaction
1565
+  (0.0ms) begin transaction
1566
+ --------------------------------------------------------------------------------
1567
+ Bootstrap4FormErrorTest: test_text_field_with_errors_includes_inline-error-class
1568
+ --------------------------------------------------------------------------------
1569
+  (0.0ms) rollback transaction
1570
+  (0.0ms) begin transaction
1571
+ -------------------------------------------------------------------------
1572
+ Bootstrap4FormErrorTest: test_text_field_with_errors_is_wrapped_correctly
1573
+ -------------------------------------------------------------------------
1574
+  (0.0ms) rollback transaction
1575
+  (0.0ms) begin transaction
1576
+ ---------------------------------------------------------------------
1577
+ Bootstrap4FormErrorTest: test_error_summary_produces_the_correct_html
1578
+ ---------------------------------------------------------------------
1579
+  (0.0ms) rollback transaction
1580
+  (0.0ms) begin transaction
1581
+ --------------------------------------------------------------------------
1582
+ Bootstrap4FormErrorTest: test_email_field_with_errors_is_wrapped_correctly
1583
+ --------------------------------------------------------------------------
1584
+  (0.0ms) rollback transaction
1585
+  (0.0ms) begin transaction
1586
+ ---------------------------------------------------------------------
1587
+ Bootstrap4FormErrorTest: test_alert_message_produces_the_correct_html
1588
+ ---------------------------------------------------------------------
1589
+  (0.0ms) rollback transaction
1590
+  (0.0ms) begin transaction
1591
+ --------------------------------------------------
1592
+ Bootstap4FormBuilderHelperTest: test_default_forms
1593
+ --------------------------------------------------
1594
+  (0.0ms) rollback transaction
1595
+  (0.0ms) begin transaction
1596
+ --------------------------------------------------
1597
+ Bootstap4FormBuilderHelperTest: test_gridded_forms
1598
+ --------------------------------------------------
1599
+  (0.0ms) rollback transaction
1600
+  (0.0ms) begin transaction
1601
+ -------------------------------------------------
1602
+ Bootstap4FormBuilderHelperTest: test_inline_forms
1603
+ -------------------------------------------------
1604
+  (0.0ms) rollback transaction
1605
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1606
+  (0.1ms) begin transaction
1607
+ ------------------------------------------------------------------------------------------------
1608
+ Bootstrap4FormErrorTest: test_text_field_with_errors,_without_inline_errors_is_wrapped_correctly
1609
+ ------------------------------------------------------------------------------------------------
1610
+  (0.1ms) rollback transaction
1611
+  (0.0ms) begin transaction
1612
+ --------------------------------------------------------------------------------
1613
+ Bootstrap4FormErrorTest: test_text_field_with_errors_includes_inline-error-class
1614
+ --------------------------------------------------------------------------------
1615
+  (0.1ms) rollback transaction
1616
+  (0.1ms) begin transaction
1617
+ ----------------------------------------------------------------------------------------
1618
+ Bootstrap4FormErrorTest: test_alert_message_with_error_summary_produces_the_correct_html
1619
+ ----------------------------------------------------------------------------------------
1620
+  (0.1ms) rollback transaction
1621
+  (0.0ms) begin transaction
1622
+ ---------------------------------------------------------------------
1623
+ Bootstrap4FormErrorTest: test_error_summary_produces_the_correct_html
1624
+ ---------------------------------------------------------------------
1625
+  (0.0ms) rollback transaction
1626
+  (0.0ms) begin transaction
1627
+ ---------------------------------------------------------------------
1628
+ Bootstrap4FormErrorTest: test_alert_message_produces_the_correct_html
1629
+ ---------------------------------------------------------------------
1630
+  (0.0ms) rollback transaction
1631
+  (0.0ms) begin transaction
1632
+ -------------------------------------------------------------------------
1633
+ Bootstrap4FormErrorTest: test_text_field_with_errors_is_wrapped_correctly
1634
+ -------------------------------------------------------------------------
1635
+  (0.1ms) rollback transaction
1636
+  (0.0ms) begin transaction
1637
+ --------------------------------------------------------------------------
1638
+ Bootstrap4FormErrorTest: test_email_field_with_errors_is_wrapped_correctly
1639
+ --------------------------------------------------------------------------
1640
+  (0.1ms) rollback transaction
1641
+  (0.0ms) begin transaction
1642
+ -------------------------------------------------
1643
+ Bootstap4FormBuilderHelperTest: test_inline_forms
1644
+ -------------------------------------------------
1645
+  (0.1ms) rollback transaction
1646
+  (0.0ms) begin transaction
1647
+ --------------------------------------------------
1648
+ Bootstap4FormBuilderHelperTest: test_default_forms
1649
+ --------------------------------------------------
1650
+  (0.1ms) rollback transaction
1651
+  (0.0ms) begin transaction
1652
+ --------------------------------------------------
1653
+ Bootstap4FormBuilderHelperTest: test_gridded_forms
1654
+ --------------------------------------------------
1655
+  (0.2ms) rollback transaction
1656
+  (0.0ms) begin transaction
1657
+ --------------------------------------------------------------------
1658
+ Bootstrap4FormBuilderTest: test_telephone_field_is_wrapped_correctly
1659
+ --------------------------------------------------------------------
1660
+  (0.1ms) rollback transaction
1661
+  (0.0ms) begin transaction
1662
+ ----------------------------------------------------------------
1663
+ Bootstrap4FormBuilderTest: test_color_field_is_wrapped_correctly
1664
+ ----------------------------------------------------------------
1665
+  (0.1ms) rollback transaction
1666
+  (0.0ms) begin transaction
1667
+ ------------------------------------------------------------
1668
+ Bootstrap4FormBuilderTest: test_primary_is_classed_correctly
1669
+ ------------------------------------------------------------
1670
+  (0.0ms) rollback transaction
1671
+  (0.0ms) begin transaction
1672
+ ----------------------------------------------------------------------
1673
+ Bootstrap4FormBuilderTest: test_inline_text_field_is_wrapped_correctly
1674
+ ----------------------------------------------------------------------
1675
+  (0.1ms) rollback transaction
1676
+  (0.0ms) begin transaction
1677
+ -------------------------------------------------------------------
1678
+ Bootstrap4FormBuilderTest: test_password_field_is_wrapped_correctly
1679
+ -------------------------------------------------------------------
1680
+  (0.1ms) rollback transaction
1681
+  (0.0ms) begin transaction
1682
+ --------------------------------------------------------------
1683
+ Bootstrap4FormBuilderTest: test_label_is_hidden_when_requested
1684
+ --------------------------------------------------------------
1685
+  (0.1ms) rollback transaction
1686
+  (0.0ms) begin transaction
1687
+ --------------------------------------------------------------
1688
+ Bootstrap4FormBuilderTest: test_text_area_is_wrapped_correctly
1689
+ --------------------------------------------------------------
1690
+  (0.1ms) rollback transaction
1691
+  (0.0ms) begin transaction
1692
+ --------------------------------------------------------------
1693
+ Bootstrap4FormBuilderTest: test_url_field_is_wrapped_correctly
1694
+ --------------------------------------------------------------
1695
+  (0.1ms) rollback transaction
1696
+  (0.0ms) begin transaction
1697
+ ---------------------------------------------------------------
1698
+ Bootstrap4FormBuilderTest: test_time_field_is_wrapped_correctly
1699
+ ---------------------------------------------------------------
1700
+  (0.1ms) rollback transaction
1701
+  (0.1ms) begin transaction
1702
+ ---------------------------------------------------------------
1703
+ Bootstrap4FormBuilderTest: test_text_field_is_wrapped_correctly
1704
+ ---------------------------------------------------------------
1705
+  (0.1ms) rollback transaction
1706
+  (0.0ms) begin transaction
1707
+ ---------------------------------------------------------------
1708
+ Bootstrap4FormBuilderTest: test_date_field_is_wrapped_correctly
1709
+ ---------------------------------------------------------------
1710
+  (0.1ms) rollback transaction
1711
+  (0.0ms) begin transaction
1712
+ -----------------------------------------------------------------------
1713
+ Bootstrap4FormBuilderTest: test_gridded_form_field_is_wrapped_correctly
1714
+ -----------------------------------------------------------------------
1715
+  (0.1ms) rollback transaction
1716
+  (0.0ms) begin transaction
1717
+ -------------------------------------------------------------
1718
+ Bootstrap4FormBuilderTest: test_custom_label_text_is_included
1719
+ -------------------------------------------------------------
1720
+  (0.1ms) rollback transaction
1721
+  (0.0ms) begin transaction
1722
+ ----------------------------------------------------------------
1723
+ Bootstrap4FormBuilderTest: test_email_field_is_wrapped_correctly
1724
+ ----------------------------------------------------------------
1725
+  (0.1ms) rollback transaction
1726
+  (0.0ms) begin transaction
1727
+ ----------------------------------------------------------------
1728
+ Bootstrap4FormBuilderTest: test_month_field_is_wrapped_correctly
1729
+ ----------------------------------------------------------------
1730
+  (0.1ms) rollback transaction
1731
+  (0.0ms) begin transaction
1732
+ ----------------------------------------------------------------
1733
+ Bootstrap4FormBuilderTest: test_phone_field_is_wrapped_correctly
1734
+ ----------------------------------------------------------------
1735
+  (0.2ms) rollback transaction
1736
+  (0.1ms) begin transaction
1737
+ ----------------------------------------------------------------
1738
+ Bootstrap4FormBuilderTest: test_range_field_is_wrapped_correctly
1739
+ ----------------------------------------------------------------
1740
+  (0.1ms) rollback transaction
1741
+  (0.1ms) begin transaction
1742
+ -----------------------------------------------------------------
1743
+ Bootstrap4FormBuilderTest: test_number_field_is_wrapped_correctly
1744
+ -----------------------------------------------------------------
1745
+  (0.1ms) rollback transaction
1746
+  (0.1ms) begin transaction
1747
+ -----------------------------------------------------------------
1748
+ Bootstrap4FormBuilderTest: test_custom_container_class_is_include
1749
+ -----------------------------------------------------------------
1750
+  (0.1ms) rollback transaction
1751
+  (0.0ms) begin transaction
1752
+ -------------------------------------------------------------------------
1753
+ Bootstrap4FormBuilderTest: test_datetime_local_field_is_wrapped_correctly
1754
+ -------------------------------------------------------------------------
1755
+  (0.1ms) rollback transaction
1756
+  (0.0ms) begin transaction
1757
+ -----------------------------------------------------------------
1758
+ Bootstrap4FormBuilderTest: test_search_field_is_wrapped_correctly
1759
+ -----------------------------------------------------------------
1760
+  (0.2ms) rollback transaction
1761
+  (0.0ms) begin transaction
1762
+ ---------------------------------------------------------------
1763
+ Bootstrap4FormBuilderTest: test_week_field_is_wrapped_correctly
1764
+ ---------------------------------------------------------------
1765
+  (0.1ms) rollback transaction
1766
+  (0.0ms) begin transaction
1767
+ --------------------------------------------------------------
1768
+ Bootstrap4FormBuilderTest: test_custom_label_class_is_included
1769
+ --------------------------------------------------------------
1770
+  (0.1ms) rollback transaction
1771
+  (0.0ms) begin transaction
1772
+ -----------------------------------------------------------
1773
+ Bootstrap4FormBuilderTest: test_submit_is_classed_correctly
1774
+ -----------------------------------------------------------
1775
+  (0.0ms) rollback transaction
1776
+  (0.0ms) begin transaction
1777
+ -------------------------------------------------------------------------------
1778
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_inline_is_wrapped_correctly
1779
+ -------------------------------------------------------------------------------
1780
+  (0.0ms) rollback transaction
1781
+  (0.0ms) begin transaction
1782
+ ---------------------------------------------------------------------------------------
1783
+ Bootstrap4FormBuilderRadioCheckTest: test_form_group_label_and_label_class_are_included
1784
+ ---------------------------------------------------------------------------------------
1785
+  (0.1ms) rollback transaction
1786
+  (0.1ms) begin transaction
1787
+ ------------------------------------------------------------------------
1788
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_is_wrapped_correctly
1789
+ ------------------------------------------------------------------------
1790
+  (0.0ms) rollback transaction
1791
+  (0.0ms) begin transaction
1792
+ ---------------------------------------------------------------------------
1793
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_is_wrapped_correctly
1794
+ ---------------------------------------------------------------------------
1795
+  (0.1ms) rollback transaction
1796
+  (0.0ms) begin transaction
1797
+ ----------------------------------------------------------------------------------
1798
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_inline_is_wrapped_correctly
1799
+ ----------------------------------------------------------------------------------
1800
+  (0.0ms) rollback transaction
1801
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1802
+  (0.1ms) begin transaction
1803
+ ---------------------------------------------------------------------------
1804
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_is_wrapped_correctly
1805
+ ---------------------------------------------------------------------------
1806
+  (0.0ms) rollback transaction
1807
+  (0.0ms) begin transaction
1808
+ ------------------------------------------------------------------------
1809
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_is_wrapped_correctly
1810
+ ------------------------------------------------------------------------
1811
+  (0.0ms) rollback transaction
1812
+  (0.0ms) begin transaction
1813
+ ----------------------------------------------------------------------------------
1814
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_inline_is_wrapped_correctly
1815
+ ----------------------------------------------------------------------------------
1816
+  (0.0ms) rollback transaction
1817
+  (0.0ms) begin transaction
1818
+ ---------------------------------------------------------------------------------------
1819
+ Bootstrap4FormBuilderRadioCheckTest: test_form_group_label_and_label_class_are_included
1820
+ ---------------------------------------------------------------------------------------
1821
+  (0.0ms) rollback transaction
1822
+  (0.0ms) begin transaction
1823
+ -------------------------------------------------------------------------------
1824
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_inline_is_wrapped_correctly
1825
+ -------------------------------------------------------------------------------
1826
+  (0.0ms) rollback transaction
1827
+  (0.0ms) begin transaction
1828
+ -------------------------------------------------
1829
+ Bootstap4FormBuilderHelperTest: test_inline_forms
1830
+ -------------------------------------------------
1831
+  (0.1ms) rollback transaction
1832
+  (0.0ms) begin transaction
1833
+ --------------------------------------------------
1834
+ Bootstap4FormBuilderHelperTest: test_default_forms
1835
+ --------------------------------------------------
1836
+  (0.1ms) rollback transaction
1837
+  (0.0ms) begin transaction
1838
+ --------------------------------------------------
1839
+ Bootstap4FormBuilderHelperTest: test_gridded_forms
1840
+ --------------------------------------------------
1841
+  (0.1ms) rollback transaction
1842
+  (0.1ms) begin transaction
1843
+ ------------------------------------------------------------------------------------------------
1844
+ Bootstrap4FormErrorTest: test_text_field_with_errors,_without_inline_errors_is_wrapped_correctly
1845
+ ------------------------------------------------------------------------------------------------
1846
+  (0.1ms) rollback transaction
1847
+  (0.1ms) begin transaction
1848
+ --------------------------------------------------------------------------------
1849
+ Bootstrap4FormErrorTest: test_text_field_with_errors_includes_inline-error-class
1850
+ --------------------------------------------------------------------------------
1851
+  (0.1ms) rollback transaction
1852
+  (0.0ms) begin transaction
1853
+ -------------------------------------------------------------------------
1854
+ Bootstrap4FormErrorTest: test_text_field_with_errors_is_wrapped_correctly
1855
+ -------------------------------------------------------------------------
1856
+  (0.3ms) rollback transaction
1857
+  (0.0ms) begin transaction
1858
+ ---------------------------------------------------------------------
1859
+ Bootstrap4FormErrorTest: test_error_summary_produces_the_correct_html
1860
+ ---------------------------------------------------------------------
1861
+  (0.0ms) rollback transaction
1862
+  (0.0ms) begin transaction
1863
+ ---------------------------------------------------------------------
1864
+ Bootstrap4FormErrorTest: test_alert_message_produces_the_correct_html
1865
+ ---------------------------------------------------------------------
1866
+  (0.0ms) rollback transaction
1867
+  (0.0ms) begin transaction
1868
+ ----------------------------------------------------------------------------------------
1869
+ Bootstrap4FormErrorTest: test_alert_message_with_error_summary_produces_the_correct_html
1870
+ ----------------------------------------------------------------------------------------
1871
+  (0.0ms) rollback transaction
1872
+  (0.1ms) begin transaction
1873
+ --------------------------------------------------------------------------
1874
+ Bootstrap4FormErrorTest: test_email_field_with_errors_is_wrapped_correctly
1875
+ --------------------------------------------------------------------------
1876
+  (0.1ms) rollback transaction
1877
+  (0.0ms) begin transaction
1878
+ --------------------------------------------------------------
1879
+ Bootstrap4FormBuilderTest: test_label_is_hidden_when_requested
1880
+ --------------------------------------------------------------
1881
+  (0.1ms) rollback transaction
1882
+  (0.0ms) begin transaction
1883
+ ----------------------------------------------------------------
1884
+ Bootstrap4FormBuilderTest: test_color_field_is_wrapped_correctly
1885
+ ----------------------------------------------------------------
1886
+  (0.1ms) rollback transaction
1887
+  (0.0ms) begin transaction
1888
+ ----------------------------------------------------------------
1889
+ Bootstrap4FormBuilderTest: test_email_field_is_wrapped_correctly
1890
+ ----------------------------------------------------------------
1891
+  (0.0ms) rollback transaction
1892
+  (0.0ms) begin transaction
1893
+ -----------------------------------------------------------------------
1894
+ Bootstrap4FormBuilderTest: test_gridded_form_field_is_wrapped_correctly
1895
+ -----------------------------------------------------------------------
1896
+  (0.1ms) rollback transaction
1897
+  (0.0ms) begin transaction
1898
+ --------------------------------------------------------------
1899
+ Bootstrap4FormBuilderTest: test_url_field_is_wrapped_correctly
1900
+ --------------------------------------------------------------
1901
+  (0.0ms) rollback transaction
1902
+  (0.0ms) begin transaction
1903
+ -----------------------------------------------------------------
1904
+ Bootstrap4FormBuilderTest: test_number_field_is_wrapped_correctly
1905
+ -----------------------------------------------------------------
1906
+  (0.0ms) rollback transaction
1907
+  (0.0ms) begin transaction
1908
+ -----------------------------------------------------------------
1909
+ Bootstrap4FormBuilderTest: test_custom_container_class_is_include
1910
+ -----------------------------------------------------------------
1911
+  (0.0ms) rollback transaction
1912
+  (0.1ms) begin transaction
1913
+ -----------------------------------------------------------
1914
+ Bootstrap4FormBuilderTest: test_submit_is_classed_correctly
1915
+ -----------------------------------------------------------
1916
+  (0.0ms) rollback transaction
1917
+  (0.0ms) begin transaction
1918
+ ------------------------------------------------------------
1919
+ Bootstrap4FormBuilderTest: test_primary_is_classed_correctly
1920
+ ------------------------------------------------------------
1921
+  (0.0ms) rollback transaction
1922
+  (0.0ms) begin transaction
1923
+ --------------------------------------------------------------------
1924
+ Bootstrap4FormBuilderTest: test_telephone_field_is_wrapped_correctly
1925
+ --------------------------------------------------------------------
1926
+  (0.0ms) rollback transaction
1927
+  (0.0ms) begin transaction
1928
+ ----------------------------------------------------------------
1929
+ Bootstrap4FormBuilderTest: test_phone_field_is_wrapped_correctly
1930
+ ----------------------------------------------------------------
1931
+  (0.0ms) rollback transaction
1932
+  (0.0ms) begin transaction
1933
+ --------------------------------------------------------------
1934
+ Bootstrap4FormBuilderTest: test_text_area_is_wrapped_correctly
1935
+ --------------------------------------------------------------
1936
+  (0.0ms) rollback transaction
1937
+  (0.0ms) begin transaction
1938
+ ----------------------------------------------------------------
1939
+ Bootstrap4FormBuilderTest: test_range_field_is_wrapped_correctly
1940
+ ----------------------------------------------------------------
1941
+  (0.0ms) rollback transaction
1942
+  (0.0ms) begin transaction
1943
+ ----------------------------------------------------------------
1944
+ Bootstrap4FormBuilderTest: test_month_field_is_wrapped_correctly
1945
+ ----------------------------------------------------------------
1946
+  (0.0ms) rollback transaction
1947
+  (0.1ms) begin transaction
1948
+ --------------------------------------------------------------
1949
+ Bootstrap4FormBuilderTest: test_custom_label_class_is_included
1950
+ --------------------------------------------------------------
1951
+  (0.1ms) rollback transaction
1952
+  (0.0ms) begin transaction
1953
+ ---------------------------------------------------------------
1954
+ Bootstrap4FormBuilderTest: test_date_field_is_wrapped_correctly
1955
+ ---------------------------------------------------------------
1956
+  (0.0ms) rollback transaction
1957
+  (0.0ms) begin transaction
1958
+ -------------------------------------------------------------------
1959
+ Bootstrap4FormBuilderTest: test_password_field_is_wrapped_correctly
1960
+ -------------------------------------------------------------------
1961
+  (0.0ms) rollback transaction
1962
+  (0.0ms) begin transaction
1963
+ -------------------------------------------------------------
1964
+ Bootstrap4FormBuilderTest: test_custom_label_text_is_included
1965
+ -------------------------------------------------------------
1966
+  (0.0ms) rollback transaction
1967
+  (0.0ms) begin transaction
1968
+ -----------------------------------------------------------------
1969
+ Bootstrap4FormBuilderTest: test_search_field_is_wrapped_correctly
1970
+ -----------------------------------------------------------------
1971
+  (0.0ms) rollback transaction
1972
+  (0.0ms) begin transaction
1973
+ ---------------------------------------------------------------
1974
+ Bootstrap4FormBuilderTest: test_time_field_is_wrapped_correctly
1975
+ ---------------------------------------------------------------
1976
+  (0.0ms) rollback transaction
1977
+  (0.1ms) begin transaction
1978
+ ---------------------------------------------------------------
1979
+ Bootstrap4FormBuilderTest: test_week_field_is_wrapped_correctly
1980
+ ---------------------------------------------------------------
1981
+  (0.0ms) rollback transaction
1982
+  (0.0ms) begin transaction
1983
+ -------------------------------------------------------------------------
1984
+ Bootstrap4FormBuilderTest: test_datetime_local_field_is_wrapped_correctly
1985
+ -------------------------------------------------------------------------
1986
+  (0.0ms) rollback transaction
1987
+  (0.0ms) begin transaction
1988
+ ----------------------------------------------------------------------
1989
+ Bootstrap4FormBuilderTest: test_inline_text_field_is_wrapped_correctly
1990
+ ----------------------------------------------------------------------
1991
+  (0.0ms) rollback transaction
1992
+  (0.0ms) begin transaction
1993
+ ---------------------------------------------------------------
1994
+ Bootstrap4FormBuilderTest: test_text_field_is_wrapped_correctly
1995
+ ---------------------------------------------------------------
1996
+  (0.0ms) rollback transaction
1997
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1998
+  (0.1ms) begin transaction
1999
+ -------------------------------------------------
2000
+ Bootstap4FormBuilderHelperTest: test_inline_forms
2001
+ -------------------------------------------------
2002
+  (0.0ms) rollback transaction
2003
+  (0.0ms) begin transaction
2004
+ --------------------------------------------------
2005
+ Bootstap4FormBuilderHelperTest: test_gridded_forms
2006
+ --------------------------------------------------
2007
+  (0.1ms) rollback transaction
2008
+  (0.0ms) begin transaction
2009
+ --------------------------------------------------
2010
+ Bootstap4FormBuilderHelperTest: test_default_forms
2011
+ --------------------------------------------------
2012
+  (0.0ms) rollback transaction
2013
+  (0.0ms) begin transaction
2014
+ -------------------------------------------------------------------------
2015
+ Bootstrap4FormBuilderTest: test_datetime_local_field_is_wrapped_correctly
2016
+ -------------------------------------------------------------------------
2017
+  (0.0ms) rollback transaction
2018
+  (0.0ms) begin transaction
2019
+ ---------------------------------------------------------------
2020
+ Bootstrap4FormBuilderTest: test_text_field_is_wrapped_correctly
2021
+ ---------------------------------------------------------------
2022
+  (0.0ms) rollback transaction
2023
+  (0.0ms) begin transaction
2024
+ -----------------------------------------------------------------
2025
+ Bootstrap4FormBuilderTest: test_search_field_is_wrapped_correctly
2026
+ -----------------------------------------------------------------
2027
+  (0.1ms) rollback transaction
2028
+  (0.1ms) begin transaction
2029
+ --------------------------------------------------------------------
2030
+ Bootstrap4FormBuilderTest: test_telephone_field_is_wrapped_correctly
2031
+ --------------------------------------------------------------------
2032
+  (0.1ms) rollback transaction
2033
+  (0.0ms) begin transaction
2034
+ --------------------------------------------------------------
2035
+ Bootstrap4FormBuilderTest: test_text_area_is_wrapped_correctly
2036
+ --------------------------------------------------------------
2037
+  (0.0ms) rollback transaction
2038
+  (0.1ms) begin transaction
2039
+ -----------------------------------------------------------------
2040
+ Bootstrap4FormBuilderTest: test_number_field_is_wrapped_correctly
2041
+ -----------------------------------------------------------------
2042
+  (0.1ms) rollback transaction
2043
+  (0.7ms) begin transaction
2044
+ -----------------------------------------------------------
2045
+ Bootstrap4FormBuilderTest: test_submit_is_classed_correctly
2046
+ -----------------------------------------------------------
2047
+  (0.0ms) rollback transaction
2048
+  (0.0ms) begin transaction
2049
+ ----------------------------------------------------------------
2050
+ Bootstrap4FormBuilderTest: test_color_field_is_wrapped_correctly
2051
+ ----------------------------------------------------------------
2052
+  (0.1ms) rollback transaction
2053
+  (0.0ms) begin transaction
2054
+ -------------------------------------------------------------------
2055
+ Bootstrap4FormBuilderTest: test_password_field_is_wrapped_correctly
2056
+ -------------------------------------------------------------------
2057
+  (0.0ms) rollback transaction
2058
+  (0.0ms) begin transaction
2059
+ ----------------------------------------------------------------
2060
+ Bootstrap4FormBuilderTest: test_email_field_is_wrapped_correctly
2061
+ ----------------------------------------------------------------
2062
+  (0.0ms) rollback transaction
2063
+  (0.1ms) begin transaction
2064
+ ----------------------------------------------------------------
2065
+ Bootstrap4FormBuilderTest: test_range_field_is_wrapped_correctly
2066
+ ----------------------------------------------------------------
2067
+  (0.0ms) rollback transaction
2068
+  (0.0ms) begin transaction
2069
+ ----------------------------------------------------------------------
2070
+ Bootstrap4FormBuilderTest: test_inline_text_field_is_wrapped_correctly
2071
+ ----------------------------------------------------------------------
2072
+  (0.0ms) rollback transaction
2073
+  (0.0ms) begin transaction
2074
+ ---------------------------------------------------------------
2075
+ Bootstrap4FormBuilderTest: test_date_field_is_wrapped_correctly
2076
+ ---------------------------------------------------------------
2077
+  (0.0ms) rollback transaction
2078
+  (0.0ms) begin transaction
2079
+ ---------------------------------------------------------------
2080
+ Bootstrap4FormBuilderTest: test_time_field_is_wrapped_correctly
2081
+ ---------------------------------------------------------------
2082
+  (0.0ms) rollback transaction
2083
+  (0.1ms) begin transaction
2084
+ ------------------------------------------------------------
2085
+ Bootstrap4FormBuilderTest: test_primary_is_classed_correctly
2086
+ ------------------------------------------------------------
2087
+  (0.0ms) rollback transaction
2088
+  (0.1ms) begin transaction
2089
+ ---------------------------------------------------------------
2090
+ Bootstrap4FormBuilderTest: test_week_field_is_wrapped_correctly
2091
+ ---------------------------------------------------------------
2092
+  (0.0ms) rollback transaction
2093
+  (0.1ms) begin transaction
2094
+ -------------------------------------------------------------
2095
+ Bootstrap4FormBuilderTest: test_custom_label_text_is_included
2096
+ -------------------------------------------------------------
2097
+  (0.0ms) rollback transaction
2098
+  (0.0ms) begin transaction
2099
+ --------------------------------------------------------------
2100
+ Bootstrap4FormBuilderTest: test_url_field_is_wrapped_correctly
2101
+ --------------------------------------------------------------
2102
+  (0.0ms) rollback transaction
2103
+  (0.0ms) begin transaction
2104
+ -----------------------------------------------------------------------
2105
+ Bootstrap4FormBuilderTest: test_gridded_form_field_is_wrapped_correctly
2106
+ -----------------------------------------------------------------------
2107
+  (0.1ms) rollback transaction
2108
+  (0.0ms) begin transaction
2109
+ --------------------------------------------------------------
2110
+ Bootstrap4FormBuilderTest: test_custom_label_class_is_included
2111
+ --------------------------------------------------------------
2112
+  (0.1ms) rollback transaction
2113
+  (0.1ms) begin transaction
2114
+ ----------------------------------------------------------------
2115
+ Bootstrap4FormBuilderTest: test_phone_field_is_wrapped_correctly
2116
+ ----------------------------------------------------------------
2117
+  (0.0ms) rollback transaction
2118
+  (0.0ms) begin transaction
2119
+ ----------------------------------------------------------------
2120
+ Bootstrap4FormBuilderTest: test_month_field_is_wrapped_correctly
2121
+ ----------------------------------------------------------------
2122
+  (0.0ms) rollback transaction
2123
+  (0.0ms) begin transaction
2124
+ --------------------------------------------------------------
2125
+ Bootstrap4FormBuilderTest: test_label_is_hidden_when_requested
2126
+ --------------------------------------------------------------
2127
+  (0.1ms) rollback transaction
2128
+  (0.0ms) begin transaction
2129
+ -----------------------------------------------------------------
2130
+ Bootstrap4FormBuilderTest: test_custom_container_class_is_include
2131
+ -----------------------------------------------------------------
2132
+  (0.0ms) rollback transaction
2133
+  (0.0ms) begin transaction
2134
+ ---------------------------------------------------------------------
2135
+ Bootstrap4FormErrorTest: test_alert_message_produces_the_correct_html
2136
+ ---------------------------------------------------------------------
2137
+  (0.1ms) rollback transaction
2138
+  (0.0ms) begin transaction
2139
+ --------------------------------------------------------------------------------
2140
+ Bootstrap4FormErrorTest: test_text_field_with_errors_includes_inline-error-class
2141
+ --------------------------------------------------------------------------------
2142
+  (0.1ms) rollback transaction
2143
+  (0.0ms) begin transaction
2144
+ ---------------------------------------------------------------------
2145
+ Bootstrap4FormErrorTest: test_error_summary_produces_the_correct_html
2146
+ ---------------------------------------------------------------------
2147
+  (0.0ms) rollback transaction
2148
+  (0.0ms) begin transaction
2149
+ -------------------------------------------------------------------------
2150
+ Bootstrap4FormErrorTest: test_text_field_with_errors_is_wrapped_correctly
2151
+ -------------------------------------------------------------------------
2152
+  (0.2ms) rollback transaction
2153
+  (0.0ms) begin transaction
2154
+ ------------------------------------------------------------------------------------------------
2155
+ Bootstrap4FormErrorTest: test_text_field_with_errors,_without_inline_errors_is_wrapped_correctly
2156
+ ------------------------------------------------------------------------------------------------
2157
+  (0.2ms) rollback transaction
2158
+  (0.0ms) begin transaction
2159
+ ----------------------------------------------------------------------------------------
2160
+ Bootstrap4FormErrorTest: test_alert_message_with_error_summary_produces_the_correct_html
2161
+ ----------------------------------------------------------------------------------------
2162
+  (0.0ms) rollback transaction
2163
+  (0.0ms) begin transaction
2164
+ --------------------------------------------------------------------------
2165
+ Bootstrap4FormErrorTest: test_email_field_with_errors_is_wrapped_correctly
2166
+ --------------------------------------------------------------------------
2167
+  (0.1ms) rollback transaction
2168
+  (0.1ms) begin transaction
2169
+ ---------------------------------------------------------------------------------------
2170
+ Bootstrap4FormBuilderRadioCheckTest: test_form_group_label_and_label_class_are_included
2171
+ ---------------------------------------------------------------------------------------
2172
+  (0.0ms) rollback transaction
2173
+  (0.1ms) begin transaction
2174
+ -------------------------------------------------------------------------------
2175
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_inline_is_wrapped_correctly
2176
+ -------------------------------------------------------------------------------
2177
+  (0.0ms) rollback transaction
2178
+  (0.0ms) begin transaction
2179
+ ------------------------------------------------------------------------
2180
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_is_wrapped_correctly
2181
+ ------------------------------------------------------------------------
2182
+  (0.0ms) rollback transaction
2183
+  (0.0ms) begin transaction
2184
+ ----------------------------------------------------------------------------------
2185
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_inline_is_wrapped_correctly
2186
+ ----------------------------------------------------------------------------------
2187
+  (0.0ms) rollback transaction
2188
+  (0.0ms) begin transaction
2189
+ ---------------------------------------------------------------------------
2190
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_is_wrapped_correctly
2191
+ ---------------------------------------------------------------------------
2192
+  (0.0ms) rollback transaction
2193
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2194
+  (0.1ms) begin transaction
2195
+ -----------------------------------------------------------------
2196
+ Bootstrap4FormBuilderTest: test_number_field_is_wrapped_correctly
2197
+ -----------------------------------------------------------------
2198
+  (0.0ms) rollback transaction
2199
+  (0.0ms) begin transaction
2200
+ -----------------------------------------------------------------------
2201
+ Bootstrap4FormBuilderTest: test_gridded_form_field_is_wrapped_correctly
2202
+ -----------------------------------------------------------------------
2203
+  (0.1ms) rollback transaction
2204
+  (0.0ms) begin transaction
2205
+ --------------------------------------------------------------
2206
+ Bootstrap4FormBuilderTest: test_label_is_hidden_when_requested
2207
+ --------------------------------------------------------------
2208
+  (0.1ms) rollback transaction
2209
+  (0.0ms) begin transaction
2210
+ -------------------------------------------------------------------
2211
+ Bootstrap4FormBuilderTest: test_password_field_is_wrapped_correctly
2212
+ -------------------------------------------------------------------
2213
+  (0.1ms) rollback transaction
2214
+  (0.1ms) begin transaction
2215
+ -------------------------------------------------------------
2216
+ Bootstrap4FormBuilderTest: test_custom_label_text_is_included
2217
+ -------------------------------------------------------------
2218
+  (0.0ms) rollback transaction
2219
+  (0.0ms) begin transaction
2220
+ ---------------------------------------------------------------
2221
+ Bootstrap4FormBuilderTest: test_week_field_is_wrapped_correctly
2222
+ ---------------------------------------------------------------
2223
+  (0.0ms) rollback transaction
2224
+  (0.0ms) begin transaction
2225
+ --------------------------------------------------------------
2226
+ Bootstrap4FormBuilderTest: test_custom_label_class_is_included
2227
+ --------------------------------------------------------------
2228
+  (0.1ms) rollback transaction
2229
+  (0.0ms) begin transaction
2230
+ ---------------------------------------------------------------
2231
+ Bootstrap4FormBuilderTest: test_text_field_is_wrapped_correctly
2232
+ ---------------------------------------------------------------
2233
+  (0.0ms) rollback transaction
2234
+  (0.0ms) begin transaction
2235
+ ----------------------------------------------------------------------
2236
+ Bootstrap4FormBuilderTest: test_inline_text_field_is_wrapped_correctly
2237
+ ----------------------------------------------------------------------
2238
+  (0.0ms) rollback transaction
2239
+  (0.0ms) begin transaction
2240
+ ---------------------------------------------------------------
2241
+ Bootstrap4FormBuilderTest: test_time_field_is_wrapped_correctly
2242
+ ---------------------------------------------------------------
2243
+  (0.0ms) rollback transaction
2244
+  (0.0ms) begin transaction
2245
+ ---------------------------------------------------------------
2246
+ Bootstrap4FormBuilderTest: test_date_field_is_wrapped_correctly
2247
+ ---------------------------------------------------------------
2248
+  (0.0ms) rollback transaction
2249
+  (0.0ms) begin transaction
2250
+ ----------------------------------------------------------------
2251
+ Bootstrap4FormBuilderTest: test_email_field_is_wrapped_correctly
2252
+ ----------------------------------------------------------------
2253
+  (0.0ms) rollback transaction
2254
+  (0.0ms) begin transaction
2255
+ ----------------------------------------------------------------
2256
+ Bootstrap4FormBuilderTest: test_phone_field_is_wrapped_correctly
2257
+ ----------------------------------------------------------------
2258
+  (0.0ms) rollback transaction
2259
+  (0.1ms) begin transaction
2260
+ ----------------------------------------------------------------
2261
+ Bootstrap4FormBuilderTest: test_range_field_is_wrapped_correctly
2262
+ ----------------------------------------------------------------
2263
+  (0.0ms) rollback transaction
2264
+  (0.0ms) begin transaction
2265
+ ------------------------------------------------------------
2266
+ Bootstrap4FormBuilderTest: test_primary_is_classed_correctly
2267
+ ------------------------------------------------------------
2268
+  (0.0ms) rollback transaction
2269
+  (0.0ms) begin transaction
2270
+ -----------------------------------------------------------------
2271
+ Bootstrap4FormBuilderTest: test_custom_container_class_is_include
2272
+ -----------------------------------------------------------------
2273
+  (0.0ms) rollback transaction
2274
+  (0.0ms) begin transaction
2275
+ ----------------------------------------------------------------
2276
+ Bootstrap4FormBuilderTest: test_month_field_is_wrapped_correctly
2277
+ ----------------------------------------------------------------
2278
+  (0.0ms) rollback transaction
2279
+  (0.0ms) begin transaction
2280
+ --------------------------------------------------------------
2281
+ Bootstrap4FormBuilderTest: test_text_area_is_wrapped_correctly
2282
+ --------------------------------------------------------------
2283
+  (0.0ms) rollback transaction
2284
+  (0.1ms) begin transaction
2285
+ -------------------------------------------------------------------------
2286
+ Bootstrap4FormBuilderTest: test_datetime_local_field_is_wrapped_correctly
2287
+ -------------------------------------------------------------------------
2288
+  (0.0ms) rollback transaction
2289
+  (0.0ms) begin transaction
2290
+ ----------------------------------------------------------------
2291
+ Bootstrap4FormBuilderTest: test_color_field_is_wrapped_correctly
2292
+ ----------------------------------------------------------------
2293
+  (0.0ms) rollback transaction
2294
+  (0.0ms) begin transaction
2295
+ -----------------------------------------------------------
2296
+ Bootstrap4FormBuilderTest: test_submit_is_classed_correctly
2297
+ -----------------------------------------------------------
2298
+  (0.0ms) rollback transaction
2299
+  (0.1ms) begin transaction
2300
+ -----------------------------------------------------------------
2301
+ Bootstrap4FormBuilderTest: test_search_field_is_wrapped_correctly
2302
+ -----------------------------------------------------------------
2303
+  (0.0ms) rollback transaction
2304
+  (0.0ms) begin transaction
2305
+ --------------------------------------------------------------
2306
+ Bootstrap4FormBuilderTest: test_url_field_is_wrapped_correctly
2307
+ --------------------------------------------------------------
2308
+  (0.0ms) rollback transaction
2309
+  (0.0ms) begin transaction
2310
+ --------------------------------------------------------------------
2311
+ Bootstrap4FormBuilderTest: test_telephone_field_is_wrapped_correctly
2312
+ --------------------------------------------------------------------
2313
+  (0.0ms) rollback transaction
2314
+  (0.0ms) begin transaction
2315
+ --------------------------------------------------
2316
+ Bootstap4FormBuilderHelperTest: test_default_forms
2317
+ --------------------------------------------------
2318
+  (0.0ms) rollback transaction
2319
+  (0.0ms) begin transaction
2320
+ --------------------------------------------------
2321
+ Bootstap4FormBuilderHelperTest: test_gridded_forms
2322
+ --------------------------------------------------
2323
+  (0.1ms) rollback transaction
2324
+  (0.0ms) begin transaction
2325
+ -------------------------------------------------
2326
+ Bootstap4FormBuilderHelperTest: test_inline_forms
2327
+ -------------------------------------------------
2328
+  (0.0ms) rollback transaction
2329
+  (0.0ms) begin transaction
2330
+ --------------------------------------------------------------------------------
2331
+ Bootstrap4FormErrorTest: test_text_field_with_errors_includes_inline-error-class
2332
+ --------------------------------------------------------------------------------
2333
+  (0.1ms) rollback transaction
2334
+  (0.1ms) begin transaction
2335
+ ---------------------------------------------------------------------
2336
+ Bootstrap4FormErrorTest: test_error_summary_produces_the_correct_html
2337
+ ---------------------------------------------------------------------
2338
+  (0.0ms) rollback transaction
2339
+  (0.0ms) begin transaction
2340
+ ---------------------------------------------------------------------
2341
+ Bootstrap4FormErrorTest: test_alert_message_produces_the_correct_html
2342
+ ---------------------------------------------------------------------
2343
+  (0.0ms) rollback transaction
2344
+  (0.0ms) begin transaction
2345
+ --------------------------------------------------------------------------
2346
+ Bootstrap4FormErrorTest: test_email_field_with_errors_is_wrapped_correctly
2347
+ --------------------------------------------------------------------------
2348
+  (0.1ms) rollback transaction
2349
+  (0.0ms) begin transaction
2350
+ ----------------------------------------------------------------------------------------
2351
+ Bootstrap4FormErrorTest: test_alert_message_with_error_summary_produces_the_correct_html
2352
+ ----------------------------------------------------------------------------------------
2353
+  (0.1ms) rollback transaction
2354
+  (0.0ms) begin transaction
2355
+ -------------------------------------------------------------------------
2356
+ Bootstrap4FormErrorTest: test_text_field_with_errors_is_wrapped_correctly
2357
+ -------------------------------------------------------------------------
2358
+  (0.1ms) rollback transaction
2359
+  (0.0ms) begin transaction
2360
+ ------------------------------------------------------------------------------------------------
2361
+ Bootstrap4FormErrorTest: test_text_field_with_errors,_without_inline_errors_is_wrapped_correctly
2362
+ ------------------------------------------------------------------------------------------------
2363
+  (0.1ms) rollback transaction
2364
+  (0.0ms) begin transaction
2365
+ -------------------------------------------------------------------------------
2366
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_inline_is_wrapped_correctly
2367
+ -------------------------------------------------------------------------------
2368
+  (0.0ms) rollback transaction
2369
+  (0.0ms) begin transaction
2370
+ ------------------------------------------------------------------------
2371
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_is_wrapped_correctly
2372
+ ------------------------------------------------------------------------
2373
+  (0.0ms) rollback transaction
2374
+  (0.0ms) begin transaction
2375
+ ---------------------------------------------------------------------------------------
2376
+ Bootstrap4FormBuilderRadioCheckTest: test_form_group_label_and_label_class_are_included
2377
+ ---------------------------------------------------------------------------------------
2378
+  (0.0ms) rollback transaction
2379
+  (0.0ms) begin transaction
2380
+ ----------------------------------------------------------------------------------
2381
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_inline_is_wrapped_correctly
2382
+ ----------------------------------------------------------------------------------
2383
+  (0.1ms) rollback transaction
2384
+  (0.1ms) begin transaction
2385
+ ---------------------------------------------------------------------------
2386
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_is_wrapped_correctly
2387
+ ---------------------------------------------------------------------------
2388
+  (0.0ms) rollback transaction
2389
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2390
+  (0.1ms) begin transaction
2391
+ ------------------------------------------------------------------------------------------------
2392
+ Bootstrap4FormErrorTest: test_text_field_with_errors,_without_inline_errors_is_wrapped_correctly
2393
+ ------------------------------------------------------------------------------------------------
2394
+  (0.1ms) rollback transaction
2395
+  (0.0ms) begin transaction
2396
+ ----------------------------------------------------------------------------------------
2397
+ Bootstrap4FormErrorTest: test_alert_message_with_error_summary_produces_the_correct_html
2398
+ ----------------------------------------------------------------------------------------
2399
+  (0.0ms) rollback transaction
2400
+  (0.0ms) begin transaction
2401
+ ---------------------------------------------------------------------
2402
+ Bootstrap4FormErrorTest: test_alert_message_produces_the_correct_html
2403
+ ---------------------------------------------------------------------
2404
+  (0.0ms) rollback transaction
2405
+  (0.0ms) begin transaction
2406
+ --------------------------------------------------------------------------------
2407
+ Bootstrap4FormErrorTest: test_text_field_with_errors_includes_inline-error-class
2408
+ --------------------------------------------------------------------------------
2409
+  (0.1ms) rollback transaction
2410
+  (0.0ms) begin transaction
2411
+ ---------------------------------------------------------------------
2412
+ Bootstrap4FormErrorTest: test_error_summary_produces_the_correct_html
2413
+ ---------------------------------------------------------------------
2414
+  (0.0ms) rollback transaction
2415
+  (0.0ms) begin transaction
2416
+ -------------------------------------------------------------------------
2417
+ Bootstrap4FormErrorTest: test_text_field_with_errors_is_wrapped_correctly
2418
+ -------------------------------------------------------------------------
2419
+  (0.1ms) rollback transaction
2420
+  (0.0ms) begin transaction
2421
+ --------------------------------------------------------------------------
2422
+ Bootstrap4FormErrorTest: test_email_field_with_errors_is_wrapped_correctly
2423
+ --------------------------------------------------------------------------
2424
+  (0.1ms) rollback transaction
2425
+  (0.0ms) begin transaction
2426
+ ------------------------------------------------------------------------
2427
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_is_wrapped_correctly
2428
+ ------------------------------------------------------------------------
2429
+  (0.1ms) rollback transaction
2430
+  (0.0ms) begin transaction
2431
+ -------------------------------------------------------------------------------
2432
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_inline_is_wrapped_correctly
2433
+ -------------------------------------------------------------------------------
2434
+  (0.1ms) rollback transaction
2435
+  (0.0ms) begin transaction
2436
+ ---------------------------------------------------------------------------------------
2437
+ Bootstrap4FormBuilderRadioCheckTest: test_form_group_label_and_label_class_are_included
2438
+ ---------------------------------------------------------------------------------------
2439
+  (0.0ms) rollback transaction
2440
+  (0.0ms) begin transaction
2441
+ ----------------------------------------------------------------------------------
2442
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_inline_is_wrapped_correctly
2443
+ ----------------------------------------------------------------------------------
2444
+  (0.0ms) rollback transaction
2445
+  (0.0ms) begin transaction
2446
+ ---------------------------------------------------------------------------
2447
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_is_wrapped_correctly
2448
+ ---------------------------------------------------------------------------
2449
+  (0.0ms) rollback transaction
2450
+  (0.0ms) begin transaction
2451
+ ---------------------------------------------------------------
2452
+ Bootstrap4FormBuilderTest: test_text_field_is_wrapped_correctly
2453
+ ---------------------------------------------------------------
2454
+  (0.0ms) rollback transaction
2455
+  (0.0ms) begin transaction
2456
+ ----------------------------------------------------------------
2457
+ Bootstrap4FormBuilderTest: test_range_field_is_wrapped_correctly
2458
+ ----------------------------------------------------------------
2459
+  (0.0ms) rollback transaction
2460
+  (0.0ms) begin transaction
2461
+ --------------------------------------------------------------
2462
+ Bootstrap4FormBuilderTest: test_label_is_hidden_when_requested
2463
+ --------------------------------------------------------------
2464
+  (0.1ms) rollback transaction
2465
+  (0.0ms) begin transaction
2466
+ --------------------------------------------------------------
2467
+ Bootstrap4FormBuilderTest: test_url_field_is_wrapped_correctly
2468
+ --------------------------------------------------------------
2469
+  (0.0ms) rollback transaction
2470
+  (0.0ms) begin transaction
2471
+ ---------------------------------------------------------------
2472
+ Bootstrap4FormBuilderTest: test_week_field_is_wrapped_correctly
2473
+ ---------------------------------------------------------------
2474
+  (0.0ms) rollback transaction
2475
+  (0.0ms) begin transaction
2476
+ ------------------------------------------------------------
2477
+ Bootstrap4FormBuilderTest: test_primary_is_classed_correctly
2478
+ ------------------------------------------------------------
2479
+  (0.0ms) rollback transaction
2480
+  (0.0ms) begin transaction
2481
+ -----------------------------------------------------------------------
2482
+ Bootstrap4FormBuilderTest: test_gridded_form_field_is_wrapped_correctly
2483
+ -----------------------------------------------------------------------
2484
+  (0.1ms) rollback transaction
2485
+  (0.0ms) begin transaction
2486
+ ---------------------------------------------------------------
2487
+ Bootstrap4FormBuilderTest: test_time_field_is_wrapped_correctly
2488
+ ---------------------------------------------------------------
2489
+  (0.0ms) rollback transaction
2490
+  (0.0ms) begin transaction
2491
+ -----------------------------------------------------------
2492
+ Bootstrap4FormBuilderTest: test_submit_is_classed_correctly
2493
+ -----------------------------------------------------------
2494
+  (0.0ms) rollback transaction
2495
+  (0.0ms) begin transaction
2496
+ -----------------------------------------------------------------
2497
+ Bootstrap4FormBuilderTest: test_number_field_is_wrapped_correctly
2498
+ -----------------------------------------------------------------
2499
+  (0.1ms) rollback transaction
2500
+  (0.1ms) begin transaction
2501
+ --------------------------------------------------------------
2502
+ Bootstrap4FormBuilderTest: test_custom_label_class_is_included
2503
+ --------------------------------------------------------------
2504
+  (0.1ms) rollback transaction
2505
+  (0.1ms) begin transaction
2506
+ -----------------------------------------------------------------
2507
+ Bootstrap4FormBuilderTest: test_custom_container_class_is_include
2508
+ -----------------------------------------------------------------
2509
+  (0.0ms) rollback transaction
2510
+  (0.0ms) begin transaction
2511
+ ----------------------------------------------------------------
2512
+ Bootstrap4FormBuilderTest: test_phone_field_is_wrapped_correctly
2513
+ ----------------------------------------------------------------
2514
+  (0.0ms) rollback transaction
2515
+  (0.0ms) begin transaction
2516
+ ---------------------------------------------------------------
2517
+ Bootstrap4FormBuilderTest: test_date_field_is_wrapped_correctly
2518
+ ---------------------------------------------------------------
2519
+  (0.0ms) rollback transaction
2520
+  (0.0ms) begin transaction
2521
+ ----------------------------------------------------------------------
2522
+ Bootstrap4FormBuilderTest: test_inline_text_field_is_wrapped_correctly
2523
+ ----------------------------------------------------------------------
2524
+  (0.1ms) rollback transaction
2525
+  (0.0ms) begin transaction
2526
+ --------------------------------------------------------------------
2527
+ Bootstrap4FormBuilderTest: test_telephone_field_is_wrapped_correctly
2528
+ --------------------------------------------------------------------
2529
+  (0.1ms) rollback transaction
2530
+  (0.0ms) begin transaction
2531
+ ----------------------------------------------------------------
2532
+ Bootstrap4FormBuilderTest: test_email_field_is_wrapped_correctly
2533
+ ----------------------------------------------------------------
2534
+  (0.0ms) rollback transaction
2535
+  (0.0ms) begin transaction
2536
+ -----------------------------------------------------------------
2537
+ Bootstrap4FormBuilderTest: test_search_field_is_wrapped_correctly
2538
+ -----------------------------------------------------------------
2539
+  (0.0ms) rollback transaction
2540
+  (0.0ms) begin transaction
2541
+ -------------------------------------------------------------------
2542
+ Bootstrap4FormBuilderTest: test_password_field_is_wrapped_correctly
2543
+ -------------------------------------------------------------------
2544
+  (0.1ms) rollback transaction
2545
+  (0.0ms) begin transaction
2546
+ -------------------------------------------------------------------------
2547
+ Bootstrap4FormBuilderTest: test_datetime_local_field_is_wrapped_correctly
2548
+ -------------------------------------------------------------------------
2549
+  (0.0ms) rollback transaction
2550
+  (0.0ms) begin transaction
2551
+ -------------------------------------------------------------
2552
+ Bootstrap4FormBuilderTest: test_custom_label_text_is_included
2553
+ -------------------------------------------------------------
2554
+  (0.0ms) rollback transaction
2555
+  (0.0ms) begin transaction
2556
+ ----------------------------------------------------------------
2557
+ Bootstrap4FormBuilderTest: test_color_field_is_wrapped_correctly
2558
+ ----------------------------------------------------------------
2559
+  (0.0ms) rollback transaction
2560
+  (0.0ms) begin transaction
2561
+ ----------------------------------------------------------------
2562
+ Bootstrap4FormBuilderTest: test_month_field_is_wrapped_correctly
2563
+ ----------------------------------------------------------------
2564
+  (0.0ms) rollback transaction
2565
+  (0.0ms) begin transaction
2566
+ --------------------------------------------------------------
2567
+ Bootstrap4FormBuilderTest: test_text_area_is_wrapped_correctly
2568
+ --------------------------------------------------------------
2569
+  (0.0ms) rollback transaction
2570
+  (0.0ms) begin transaction
2571
+ --------------------------------------------------
2572
+ Bootstap4FormBuilderHelperTest: test_default_forms
2573
+ --------------------------------------------------
2574
+  (0.0ms) rollback transaction
2575
+  (0.0ms) begin transaction
2576
+ -------------------------------------------------
2577
+ Bootstap4FormBuilderHelperTest: test_inline_forms
2578
+ -------------------------------------------------
2579
+  (0.0ms) rollback transaction
2580
+  (0.0ms) begin transaction
2581
+ --------------------------------------------------
2582
+ Bootstap4FormBuilderHelperTest: test_gridded_forms
2583
+ --------------------------------------------------
2584
+  (0.0ms) rollback transaction
2585
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2586
+  (0.1ms) begin transaction
2587
+ ---------------------------------------------------------------------
2588
+ Bootstrap4FormErrorTest: test_alert_message_produces_the_correct_html
2589
+ ---------------------------------------------------------------------
2590
+  (0.1ms) rollback transaction
2591
+  (0.0ms) begin transaction
2592
+ --------------------------------------------------------------------------
2593
+ Bootstrap4FormErrorTest: test_email_field_with_errors_is_wrapped_correctly
2594
+ --------------------------------------------------------------------------
2595
+  (0.1ms) rollback transaction
2596
+  (0.0ms) begin transaction
2597
+ --------------------------------------------------------------------------------
2598
+ Bootstrap4FormErrorTest: test_text_field_with_errors_includes_inline-error-class
2599
+ --------------------------------------------------------------------------------
2600
+  (0.1ms) rollback transaction
2601
+  (0.0ms) begin transaction
2602
+ ------------------------------------------------------------------------------------------------
2603
+ Bootstrap4FormErrorTest: test_text_field_with_errors,_without_inline_errors_is_wrapped_correctly
2604
+ ------------------------------------------------------------------------------------------------
2605
+  (0.1ms) rollback transaction
2606
+  (0.0ms) begin transaction
2607
+ ---------------------------------------------------------------------
2608
+ Bootstrap4FormErrorTest: test_error_summary_produces_the_correct_html
2609
+ ---------------------------------------------------------------------
2610
+  (0.0ms) rollback transaction
2611
+  (0.0ms) begin transaction
2612
+ ----------------------------------------------------------------------------------------
2613
+ Bootstrap4FormErrorTest: test_alert_message_with_error_summary_produces_the_correct_html
2614
+ ----------------------------------------------------------------------------------------
2615
+  (0.0ms) rollback transaction
2616
+  (0.1ms) begin transaction
2617
+ -------------------------------------------------------------------------
2618
+ Bootstrap4FormErrorTest: test_text_field_with_errors_is_wrapped_correctly
2619
+ -------------------------------------------------------------------------
2620
+  (0.1ms) rollback transaction
2621
+  (0.0ms) begin transaction
2622
+ ------------------------------------------------------------------------
2623
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_is_wrapped_correctly
2624
+ ------------------------------------------------------------------------
2625
+  (0.0ms) rollback transaction
2626
+  (0.0ms) begin transaction
2627
+ -------------------------------------------------------------------------------
2628
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_inline_is_wrapped_correctly
2629
+ -------------------------------------------------------------------------------
2630
+  (0.0ms) rollback transaction
2631
+  (0.0ms) begin transaction
2632
+ ---------------------------------------------------------------------------
2633
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_is_wrapped_correctly
2634
+ ---------------------------------------------------------------------------
2635
+  (0.0ms) rollback transaction
2636
+  (0.0ms) begin transaction
2637
+ ----------------------------------------------------------------------------------
2638
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_inline_is_wrapped_correctly
2639
+ ----------------------------------------------------------------------------------
2640
+  (0.0ms) rollback transaction
2641
+  (0.0ms) begin transaction
2642
+ ---------------------------------------------------------------------------------------
2643
+ Bootstrap4FormBuilderRadioCheckTest: test_form_group_label_and_label_class_are_included
2644
+ ---------------------------------------------------------------------------------------
2645
+  (0.0ms) rollback transaction
2646
+  (0.1ms) begin transaction
2647
+ --------------------------------------------------------------------
2648
+ Bootstrap4FormBuilderTest: test_telephone_field_is_wrapped_correctly
2649
+ --------------------------------------------------------------------
2650
+  (0.0ms) rollback transaction
2651
+  (0.0ms) begin transaction
2652
+ -----------------------------------------------------------------
2653
+ Bootstrap4FormBuilderTest: test_search_field_is_wrapped_correctly
2654
+ -----------------------------------------------------------------
2655
+  (0.1ms) rollback transaction
2656
+  (0.0ms) begin transaction
2657
+ ----------------------------------------------------------------
2658
+ Bootstrap4FormBuilderTest: test_email_field_is_wrapped_correctly
2659
+ ----------------------------------------------------------------
2660
+  (0.0ms) rollback transaction
2661
+  (0.0ms) begin transaction
2662
+ --------------------------------------------------------------
2663
+ Bootstrap4FormBuilderTest: test_url_field_is_wrapped_correctly
2664
+ --------------------------------------------------------------
2665
+  (0.0ms) rollback transaction
2666
+  (0.0ms) begin transaction
2667
+ ----------------------------------------------------------------------
2668
+ Bootstrap4FormBuilderTest: test_inline_text_field_is_wrapped_correctly
2669
+ ----------------------------------------------------------------------
2670
+  (0.0ms) rollback transaction
2671
+  (0.0ms) begin transaction
2672
+ ---------------------------------------------------------------
2673
+ Bootstrap4FormBuilderTest: test_time_field_is_wrapped_correctly
2674
+ ---------------------------------------------------------------
2675
+  (0.1ms) rollback transaction
2676
+  (0.0ms) begin transaction
2677
+ -----------------------------------------------------------------------
2678
+ Bootstrap4FormBuilderTest: test_gridded_form_field_is_wrapped_correctly
2679
+ -----------------------------------------------------------------------
2680
+  (0.0ms) rollback transaction
2681
+  (0.0ms) begin transaction
2682
+ -------------------------------------------------------------------------
2683
+ Bootstrap4FormBuilderTest: test_datetime_local_field_is_wrapped_correctly
2684
+ -------------------------------------------------------------------------
2685
+  (0.0ms) rollback transaction
2686
+  (0.0ms) begin transaction
2687
+ -----------------------------------------------------------------
2688
+ Bootstrap4FormBuilderTest: test_custom_container_class_is_include
2689
+ -----------------------------------------------------------------
2690
+  (0.0ms) rollback transaction
2691
+  (0.0ms) begin transaction
2692
+ -------------------------------------------------------------------
2693
+ Bootstrap4FormBuilderTest: test_password_field_is_wrapped_correctly
2694
+ -------------------------------------------------------------------
2695
+  (0.0ms) rollback transaction
2696
+  (0.0ms) begin transaction
2697
+ -----------------------------------------------------------------
2698
+ Bootstrap4FormBuilderTest: test_number_field_is_wrapped_correctly
2699
+ -----------------------------------------------------------------
2700
+  (0.0ms) rollback transaction
2701
+  (0.0ms) begin transaction
2702
+ ----------------------------------------------------------------
2703
+ Bootstrap4FormBuilderTest: test_phone_field_is_wrapped_correctly
2704
+ ----------------------------------------------------------------
2705
+  (0.0ms) rollback transaction
2706
+  (0.0ms) begin transaction
2707
+ --------------------------------------------------------------
2708
+ Bootstrap4FormBuilderTest: test_custom_label_class_is_included
2709
+ --------------------------------------------------------------
2710
+  (0.1ms) rollback transaction
2711
+  (0.0ms) begin transaction
2712
+ ---------------------------------------------------------------
2713
+ Bootstrap4FormBuilderTest: test_text_field_is_wrapped_correctly
2714
+ ---------------------------------------------------------------
2715
+  (0.0ms) rollback transaction
2716
+  (0.3ms) begin transaction
2717
+ ----------------------------------------------------------------
2718
+ Bootstrap4FormBuilderTest: test_month_field_is_wrapped_correctly
2719
+ ----------------------------------------------------------------
2720
+  (0.1ms) rollback transaction
2721
+  (0.0ms) begin transaction
2722
+ ----------------------------------------------------------------
2723
+ Bootstrap4FormBuilderTest: test_range_field_is_wrapped_correctly
2724
+ ----------------------------------------------------------------
2725
+  (0.0ms) rollback transaction
2726
+  (0.0ms) begin transaction
2727
+ ---------------------------------------------------------------
2728
+ Bootstrap4FormBuilderTest: test_date_field_is_wrapped_correctly
2729
+ ---------------------------------------------------------------
2730
+  (0.0ms) rollback transaction
2731
+  (0.1ms) begin transaction
2732
+ -------------------------------------------------------------
2733
+ Bootstrap4FormBuilderTest: test_custom_label_text_is_included
2734
+ -------------------------------------------------------------
2735
+  (0.0ms) rollback transaction
2736
+  (0.0ms) begin transaction
2737
+ ----------------------------------------------------------------
2738
+ Bootstrap4FormBuilderTest: test_color_field_is_wrapped_correctly
2739
+ ----------------------------------------------------------------
2740
+  (0.0ms) rollback transaction
2741
+  (0.0ms) begin transaction
2742
+ --------------------------------------------------------------
2743
+ Bootstrap4FormBuilderTest: test_text_area_is_wrapped_correctly
2744
+ --------------------------------------------------------------
2745
+  (0.1ms) rollback transaction
2746
+  (0.0ms) begin transaction
2747
+ -----------------------------------------------------------
2748
+ Bootstrap4FormBuilderTest: test_submit_is_classed_correctly
2749
+ -----------------------------------------------------------
2750
+  (0.0ms) rollback transaction
2751
+  (0.0ms) begin transaction
2752
+ --------------------------------------------------------------
2753
+ Bootstrap4FormBuilderTest: test_label_is_hidden_when_requested
2754
+ --------------------------------------------------------------
2755
+  (0.1ms) rollback transaction
2756
+  (0.0ms) begin transaction
2757
+ ------------------------------------------------------------
2758
+ Bootstrap4FormBuilderTest: test_primary_is_classed_correctly
2759
+ ------------------------------------------------------------
2760
+  (0.0ms) rollback transaction
2761
+  (0.0ms) begin transaction
2762
+ ---------------------------------------------------------------
2763
+ Bootstrap4FormBuilderTest: test_week_field_is_wrapped_correctly
2764
+ ---------------------------------------------------------------
2765
+  (0.0ms) rollback transaction
2766
+  (0.0ms) begin transaction
2767
+ -------------------------------------------------
2768
+ Bootstap4FormBuilderHelperTest: test_inline_forms
2769
+ -------------------------------------------------
2770
+  (0.1ms) rollback transaction
2771
+  (0.1ms) begin transaction
2772
+ --------------------------------------------------
2773
+ Bootstap4FormBuilderHelperTest: test_gridded_forms
2774
+ --------------------------------------------------
2775
+  (0.0ms) rollback transaction
2776
+  (0.0ms) begin transaction
2777
+ --------------------------------------------------
2778
+ Bootstap4FormBuilderHelperTest: test_default_forms
2779
+ --------------------------------------------------
2780
+  (0.0ms) rollback transaction
2781
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2782
+  (0.1ms) begin transaction
2783
+ --------------------------------------------------
2784
+ Bootstap4FormBuilderHelperTest: test_default_forms
2785
+ --------------------------------------------------
2786
+  (0.0ms) rollback transaction
2787
+  (0.0ms) begin transaction
2788
+ -------------------------------------------------
2789
+ Bootstap4FormBuilderHelperTest: test_inline_forms
2790
+ -------------------------------------------------
2791
+  (0.1ms) rollback transaction
2792
+  (0.0ms) begin transaction
2793
+ --------------------------------------------------
2794
+ Bootstap4FormBuilderHelperTest: test_gridded_forms
2795
+ --------------------------------------------------
2796
+  (0.0ms) rollback transaction
2797
+  (0.0ms) begin transaction
2798
+ -------------------------------------------------------------------------
2799
+ Bootstrap4FormErrorTest: test_text_field_with_errors_is_wrapped_correctly
2800
+ -------------------------------------------------------------------------
2801
+  (0.1ms) rollback transaction
2802
+  (0.0ms) begin transaction
2803
+ ----------------------------------------------------------------------------------------
2804
+ Bootstrap4FormErrorTest: test_alert_message_with_error_summary_produces_the_correct_html
2805
+ ----------------------------------------------------------------------------------------
2806
+  (0.0ms) rollback transaction
2807
+  (0.0ms) begin transaction
2808
+ --------------------------------------------------------------------------------
2809
+ Bootstrap4FormErrorTest: test_text_field_with_errors_includes_inline-error-class
2810
+ --------------------------------------------------------------------------------
2811
+  (0.7ms) rollback transaction
2812
+  (0.0ms) begin transaction
2813
+ ---------------------------------------------------------------------
2814
+ Bootstrap4FormErrorTest: test_error_summary_produces_the_correct_html
2815
+ ---------------------------------------------------------------------
2816
+  (0.1ms) rollback transaction
2817
+  (0.0ms) begin transaction
2818
+ ---------------------------------------------------------------------
2819
+ Bootstrap4FormErrorTest: test_alert_message_produces_the_correct_html
2820
+ ---------------------------------------------------------------------
2821
+  (0.0ms) rollback transaction
2822
+  (0.0ms) begin transaction
2823
+ --------------------------------------------------------------------------
2824
+ Bootstrap4FormErrorTest: test_email_field_with_errors_is_wrapped_correctly
2825
+ --------------------------------------------------------------------------
2826
+  (0.0ms) rollback transaction
2827
+  (0.1ms) begin transaction
2828
+ ------------------------------------------------------------------------------------------------
2829
+ Bootstrap4FormErrorTest: test_text_field_with_errors,_without_inline_errors_is_wrapped_correctly
2830
+ ------------------------------------------------------------------------------------------------
2831
+  (0.1ms) rollback transaction
2832
+  (0.0ms) begin transaction
2833
+ ----------------------------------------------------------------
2834
+ Bootstrap4FormBuilderTest: test_phone_field_is_wrapped_correctly
2835
+ ----------------------------------------------------------------
2836
+  (0.0ms) rollback transaction
2837
+  (0.0ms) begin transaction
2838
+ ---------------------------------------------------------------
2839
+ Bootstrap4FormBuilderTest: test_time_field_is_wrapped_correctly
2840
+ ---------------------------------------------------------------
2841
+  (0.0ms) rollback transaction
2842
+  (0.0ms) begin transaction
2843
+ -------------------------------------------------------------
2844
+ Bootstrap4FormBuilderTest: test_custom_label_text_is_included
2845
+ -------------------------------------------------------------
2846
+  (0.0ms) rollback transaction
2847
+  (0.0ms) begin transaction
2848
+ --------------------------------------------------------------
2849
+ Bootstrap4FormBuilderTest: test_custom_label_class_is_included
2850
+ --------------------------------------------------------------
2851
+  (0.1ms) rollback transaction
2852
+  (0.1ms) begin transaction
2853
+ ----------------------------------------------------------------
2854
+ Bootstrap4FormBuilderTest: test_month_field_is_wrapped_correctly
2855
+ ----------------------------------------------------------------
2856
+  (0.0ms) rollback transaction
2857
+  (0.0ms) begin transaction
2858
+ -----------------------------------------------------------
2859
+ Bootstrap4FormBuilderTest: test_submit_is_classed_correctly
2860
+ -----------------------------------------------------------
2861
+  (0.0ms) rollback transaction
2862
+  (0.0ms) begin transaction
2863
+ --------------------------------------------------------------
2864
+ Bootstrap4FormBuilderTest: test_text_area_is_wrapped_correctly
2865
+ --------------------------------------------------------------
2866
+  (0.0ms) rollback transaction
2867
+  (0.0ms) begin transaction
2868
+ -----------------------------------------------------------------
2869
+ Bootstrap4FormBuilderTest: test_custom_container_class_is_include
2870
+ -----------------------------------------------------------------
2871
+  (0.0ms) rollback transaction
2872
+  (0.1ms) begin transaction
2873
+ ----------------------------------------------------------------------
2874
+ Bootstrap4FormBuilderTest: test_inline_text_field_is_wrapped_correctly
2875
+ ----------------------------------------------------------------------
2876
+  (0.0ms) rollback transaction
2877
+  (0.1ms) begin transaction
2878
+ ----------------------------------------------------------------
2879
+ Bootstrap4FormBuilderTest: test_range_field_is_wrapped_correctly
2880
+ ----------------------------------------------------------------
2881
+  (0.0ms) rollback transaction
2882
+  (0.1ms) begin transaction
2883
+ ---------------------------------------------------------------
2884
+ Bootstrap4FormBuilderTest: test_week_field_is_wrapped_correctly
2885
+ ---------------------------------------------------------------
2886
+  (0.0ms) rollback transaction
2887
+  (0.0ms) begin transaction
2888
+ -------------------------------------------------------------------------
2889
+ Bootstrap4FormBuilderTest: test_datetime_local_field_is_wrapped_correctly
2890
+ -------------------------------------------------------------------------
2891
+  (0.0ms) rollback transaction
2892
+  (0.0ms) begin transaction
2893
+ --------------------------------------------------------------
2894
+ Bootstrap4FormBuilderTest: test_url_field_is_wrapped_correctly
2895
+ --------------------------------------------------------------
2896
+  (0.0ms) rollback transaction
2897
+  (0.0ms) begin transaction
2898
+ -----------------------------------------------------------------------
2899
+ Bootstrap4FormBuilderTest: test_gridded_form_field_is_wrapped_correctly
2900
+ -----------------------------------------------------------------------
2901
+  (0.0ms) rollback transaction
2902
+  (0.0ms) begin transaction
2903
+ ----------------------------------------------------------------
2904
+ Bootstrap4FormBuilderTest: test_color_field_is_wrapped_correctly
2905
+ ----------------------------------------------------------------
2906
+  (0.0ms) rollback transaction
2907
+  (0.0ms) begin transaction
2908
+ -------------------------------------------------------------------
2909
+ Bootstrap4FormBuilderTest: test_password_field_is_wrapped_correctly
2910
+ -------------------------------------------------------------------
2911
+  (0.0ms) rollback transaction
2912
+  (0.1ms) begin transaction
2913
+ -----------------------------------------------------------------
2914
+ Bootstrap4FormBuilderTest: test_number_field_is_wrapped_correctly
2915
+ -----------------------------------------------------------------
2916
+  (0.0ms) rollback transaction
2917
+  (0.0ms) begin transaction
2918
+ --------------------------------------------------------------
2919
+ Bootstrap4FormBuilderTest: test_label_is_hidden_when_requested
2920
+ --------------------------------------------------------------
2921
+  (0.1ms) rollback transaction
2922
+  (0.1ms) begin transaction
2923
+ ------------------------------------------------------------
2924
+ Bootstrap4FormBuilderTest: test_primary_is_classed_correctly
2925
+ ------------------------------------------------------------
2926
+  (0.0ms) rollback transaction
2927
+  (0.0ms) begin transaction
2928
+ ----------------------------------------------------------------
2929
+ Bootstrap4FormBuilderTest: test_email_field_is_wrapped_correctly
2930
+ ----------------------------------------------------------------
2931
+  (0.0ms) rollback transaction
2932
+  (0.1ms) begin transaction
2933
+ ---------------------------------------------------------------
2934
+ Bootstrap4FormBuilderTest: test_text_field_is_wrapped_correctly
2935
+ ---------------------------------------------------------------
2936
+  (0.0ms) rollback transaction
2937
+  (0.0ms) begin transaction
2938
+ -----------------------------------------------------------------
2939
+ Bootstrap4FormBuilderTest: test_search_field_is_wrapped_correctly
2940
+ -----------------------------------------------------------------
2941
+  (0.0ms) rollback transaction
2942
+  (0.0ms) begin transaction
2943
+ ---------------------------------------------------------------
2944
+ Bootstrap4FormBuilderTest: test_date_field_is_wrapped_correctly
2945
+ ---------------------------------------------------------------
2946
+  (0.0ms) rollback transaction
2947
+  (0.0ms) begin transaction
2948
+ --------------------------------------------------------------------
2949
+ Bootstrap4FormBuilderTest: test_telephone_field_is_wrapped_correctly
2950
+ --------------------------------------------------------------------
2951
+  (0.0ms) rollback transaction
2952
+  (0.1ms) begin transaction
2953
+ ---------------------------------------------------------------------------------------
2954
+ Bootstrap4FormBuilderRadioCheckTest: test_form_group_label_and_label_class_are_included
2955
+ ---------------------------------------------------------------------------------------
2956
+  (0.0ms) rollback transaction
2957
+  (0.0ms) begin transaction
2958
+ ------------------------------------------------------------------------
2959
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_is_wrapped_correctly
2960
+ ------------------------------------------------------------------------
2961
+  (0.0ms) rollback transaction
2962
+  (0.0ms) begin transaction
2963
+ -------------------------------------------------------------------------------
2964
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_inline_is_wrapped_correctly
2965
+ -------------------------------------------------------------------------------
2966
+  (0.0ms) rollback transaction
2967
+  (0.0ms) begin transaction
2968
+ ---------------------------------------------------------------------------
2969
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_is_wrapped_correctly
2970
+ ---------------------------------------------------------------------------
2971
+  (0.0ms) rollback transaction
2972
+  (0.1ms) begin transaction
2973
+ ----------------------------------------------------------------------------------
2974
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_inline_is_wrapped_correctly
2975
+ ----------------------------------------------------------------------------------
2976
+  (0.0ms) rollback transaction
2977
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2978
+  (0.1ms) begin transaction
2979
+ -------------------------------------------------
2980
+ Bootstap4FormBuilderHelperTest: test_inline_forms
2981
+ -------------------------------------------------
2982
+  (0.0ms) rollback transaction
2983
+  (0.0ms) begin transaction
2984
+ --------------------------------------------------
2985
+ Bootstap4FormBuilderHelperTest: test_gridded_forms
2986
+ --------------------------------------------------
2987
+  (0.0ms) rollback transaction
2988
+  (0.0ms) begin transaction
2989
+ --------------------------------------------------
2990
+ Bootstap4FormBuilderHelperTest: test_default_forms
2991
+ --------------------------------------------------
2992
+  (0.0ms) rollback transaction
2993
+  (0.0ms) begin transaction
2994
+ ---------------------------------------------------------------
2995
+ Bootstrap4FormBuilderTest: test_week_field_is_wrapped_correctly
2996
+ ---------------------------------------------------------------
2997
+  (0.0ms) rollback transaction
2998
+  (0.0ms) begin transaction
2999
+ --------------------------------------------------------------
3000
+ Bootstrap4FormBuilderTest: test_url_field_is_wrapped_correctly
3001
+ --------------------------------------------------------------
3002
+  (0.0ms) rollback transaction
3003
+  (0.0ms) begin transaction
3004
+ -------------------------------------------------------------
3005
+ Bootstrap4FormBuilderTest: test_custom_label_text_is_included
3006
+ -------------------------------------------------------------
3007
+  (0.0ms) rollback transaction
3008
+  (0.0ms) begin transaction
3009
+ -------------------------------------------------------------------
3010
+ Bootstrap4FormBuilderTest: test_password_field_is_wrapped_correctly
3011
+ -------------------------------------------------------------------
3012
+  (0.0ms) rollback transaction
3013
+  (0.0ms) begin transaction
3014
+ ----------------------------------------------------------------
3015
+ Bootstrap4FormBuilderTest: test_email_field_is_wrapped_correctly
3016
+ ----------------------------------------------------------------
3017
+  (0.0ms) rollback transaction
3018
+  (0.0ms) begin transaction
3019
+ -----------------------------------------------------------------
3020
+ Bootstrap4FormBuilderTest: test_custom_container_class_is_include
3021
+ -----------------------------------------------------------------
3022
+  (0.0ms) rollback transaction
3023
+  (0.0ms) begin transaction
3024
+ -----------------------------------------------------------------
3025
+ Bootstrap4FormBuilderTest: test_number_field_is_wrapped_correctly
3026
+ -----------------------------------------------------------------
3027
+  (0.0ms) rollback transaction
3028
+  (0.0ms) begin transaction
3029
+ ---------------------------------------------------------------
3030
+ Bootstrap4FormBuilderTest: test_date_field_is_wrapped_correctly
3031
+ ---------------------------------------------------------------
3032
+  (0.0ms) rollback transaction
3033
+  (0.0ms) begin transaction
3034
+ ----------------------------------------------------------------
3035
+ Bootstrap4FormBuilderTest: test_phone_field_is_wrapped_correctly
3036
+ ----------------------------------------------------------------
3037
+  (0.0ms) rollback transaction
3038
+  (0.0ms) begin transaction
3039
+ ---------------------------------------------------------------
3040
+ Bootstrap4FormBuilderTest: test_time_field_is_wrapped_correctly
3041
+ ---------------------------------------------------------------
3042
+  (0.0ms) rollback transaction
3043
+  (0.0ms) begin transaction
3044
+ --------------------------------------------------------------
3045
+ Bootstrap4FormBuilderTest: test_label_is_hidden_when_requested
3046
+ --------------------------------------------------------------
3047
+  (0.0ms) rollback transaction
3048
+  (0.0ms) begin transaction
3049
+ --------------------------------------------------------------
3050
+ Bootstrap4FormBuilderTest: test_custom_label_class_is_included
3051
+ --------------------------------------------------------------
3052
+  (0.1ms) rollback transaction
3053
+  (0.1ms) begin transaction
3054
+ -----------------------------------------------------------------------
3055
+ Bootstrap4FormBuilderTest: test_gridded_form_field_is_wrapped_correctly
3056
+ -----------------------------------------------------------------------
3057
+  (0.1ms) rollback transaction
3058
+  (0.1ms) begin transaction
3059
+ --------------------------------------------------------------
3060
+ Bootstrap4FormBuilderTest: test_text_area_is_wrapped_correctly
3061
+ --------------------------------------------------------------
3062
+  (0.1ms) rollback transaction
3063
+  (0.0ms) begin transaction
3064
+ ----------------------------------------------------------------
3065
+ Bootstrap4FormBuilderTest: test_range_field_is_wrapped_correctly
3066
+ ----------------------------------------------------------------
3067
+  (0.0ms) rollback transaction
3068
+  (0.0ms) begin transaction
3069
+ --------------------------------------------------------------------
3070
+ Bootstrap4FormBuilderTest: test_telephone_field_is_wrapped_correctly
3071
+ --------------------------------------------------------------------
3072
+  (0.0ms) rollback transaction
3073
+  (0.1ms) begin transaction
3074
+ ------------------------------------------------------------
3075
+ Bootstrap4FormBuilderTest: test_primary_is_classed_correctly
3076
+ ------------------------------------------------------------
3077
+  (0.0ms) rollback transaction
3078
+  (0.0ms) begin transaction
3079
+ ---------------------------------------------------------------
3080
+ Bootstrap4FormBuilderTest: test_text_field_is_wrapped_correctly
3081
+ ---------------------------------------------------------------
3082
+  (0.1ms) rollback transaction
3083
+  (0.0ms) begin transaction
3084
+ ----------------------------------------------------------------
3085
+ Bootstrap4FormBuilderTest: test_color_field_is_wrapped_correctly
3086
+ ----------------------------------------------------------------
3087
+  (0.0ms) rollback transaction
3088
+  (0.1ms) begin transaction
3089
+ ----------------------------------------------------------------
3090
+ Bootstrap4FormBuilderTest: test_month_field_is_wrapped_correctly
3091
+ ----------------------------------------------------------------
3092
+  (0.0ms) rollback transaction
3093
+  (0.0ms) begin transaction
3094
+ -----------------------------------------------------------------
3095
+ Bootstrap4FormBuilderTest: test_search_field_is_wrapped_correctly
3096
+ -----------------------------------------------------------------
3097
+  (0.0ms) rollback transaction
3098
+  (0.0ms) begin transaction
3099
+ ----------------------------------------------------------------------
3100
+ Bootstrap4FormBuilderTest: test_inline_text_field_is_wrapped_correctly
3101
+ ----------------------------------------------------------------------
3102
+  (0.0ms) rollback transaction
3103
+  (0.0ms) begin transaction
3104
+ -------------------------------------------------------------------------
3105
+ Bootstrap4FormBuilderTest: test_datetime_local_field_is_wrapped_correctly
3106
+ -------------------------------------------------------------------------
3107
+  (0.0ms) rollback transaction
3108
+  (0.0ms) begin transaction
3109
+ -----------------------------------------------------------
3110
+ Bootstrap4FormBuilderTest: test_submit_is_classed_correctly
3111
+ -----------------------------------------------------------
3112
+  (0.0ms) rollback transaction
3113
+  (0.0ms) begin transaction
3114
+ ---------------------------------------------------------------------------
3115
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_is_wrapped_correctly
3116
+ ---------------------------------------------------------------------------
3117
+  (0.0ms) rollback transaction
3118
+  (0.0ms) begin transaction
3119
+ ------------------------------------------------------------------------
3120
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_is_wrapped_correctly
3121
+ ------------------------------------------------------------------------
3122
+  (0.0ms) rollback transaction
3123
+  (0.0ms) begin transaction
3124
+ ---------------------------------------------------------------------------------------
3125
+ Bootstrap4FormBuilderRadioCheckTest: test_form_group_label_and_label_class_are_included
3126
+ ---------------------------------------------------------------------------------------
3127
+  (0.0ms) rollback transaction
3128
+  (0.0ms) begin transaction
3129
+ -------------------------------------------------------------------------------
3130
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_inline_is_wrapped_correctly
3131
+ -------------------------------------------------------------------------------
3132
+  (0.0ms) rollback transaction
3133
+  (0.0ms) begin transaction
3134
+ ----------------------------------------------------------------------------------
3135
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_inline_is_wrapped_correctly
3136
+ ----------------------------------------------------------------------------------
3137
+  (0.0ms) rollback transaction
3138
+  (0.0ms) begin transaction
3139
+ ---------------------------------------------------------------------
3140
+ Bootstrap4FormErrorTest: test_error_summary_produces_the_correct_html
3141
+ ---------------------------------------------------------------------
3142
+  (0.0ms) rollback transaction
3143
+  (0.0ms) begin transaction
3144
+ ------------------------------------------------------------------------------------------------
3145
+ Bootstrap4FormErrorTest: test_text_field_with_errors,_without_inline_errors_is_wrapped_correctly
3146
+ ------------------------------------------------------------------------------------------------
3147
+  (0.1ms) rollback transaction
3148
+  (0.0ms) begin transaction
3149
+ ----------------------------------------------------------------------------------------
3150
+ Bootstrap4FormErrorTest: test_alert_message_with_error_summary_produces_the_correct_html
3151
+ ----------------------------------------------------------------------------------------
3152
+  (0.0ms) rollback transaction
3153
+  (0.0ms) begin transaction
3154
+ --------------------------------------------------------------------------------
3155
+ Bootstrap4FormErrorTest: test_text_field_with_errors_includes_inline-error-class
3156
+ --------------------------------------------------------------------------------
3157
+  (0.2ms) rollback transaction
3158
+  (0.0ms) begin transaction
3159
+ --------------------------------------------------------------------------
3160
+ Bootstrap4FormErrorTest: test_email_field_with_errors_is_wrapped_correctly
3161
+ --------------------------------------------------------------------------
3162
+  (0.0ms) rollback transaction
3163
+  (0.0ms) begin transaction
3164
+ ---------------------------------------------------------------------
3165
+ Bootstrap4FormErrorTest: test_alert_message_produces_the_correct_html
3166
+ ---------------------------------------------------------------------
3167
+  (0.0ms) rollback transaction
3168
+  (0.1ms) begin transaction
3169
+ -------------------------------------------------------------------------
3170
+ Bootstrap4FormErrorTest: test_text_field_with_errors_is_wrapped_correctly
3171
+ -------------------------------------------------------------------------
3172
+  (0.1ms) rollback transaction
3173
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3174
+  (0.1ms) begin transaction
3175
+ --------------------------------------------------------------
3176
+ Bootstrap4FormBuilderTest: test_text_area_is_wrapped_correctly
3177
+ --------------------------------------------------------------
3178
+  (0.0ms) rollback transaction
3179
+  (0.0ms) begin transaction
3180
+ -----------------------------------------------------------------
3181
+ Bootstrap4FormBuilderTest: test_custom_container_class_is_include
3182
+ -----------------------------------------------------------------
3183
+  (0.0ms) rollback transaction
3184
+  (0.0ms) begin transaction
3185
+ ----------------------------------------------------------------
3186
+ Bootstrap4FormBuilderTest: test_range_field_is_wrapped_correctly
3187
+ ----------------------------------------------------------------
3188
+  (0.0ms) rollback transaction
3189
+  (0.1ms) begin transaction
3190
+ ---------------------------------------------------------------
3191
+ Bootstrap4FormBuilderTest: test_date_field_is_wrapped_correctly
3192
+ ---------------------------------------------------------------
3193
+  (0.0ms) rollback transaction
3194
+  (0.0ms) begin transaction
3195
+ -------------------------------------------------------------------------
3196
+ Bootstrap4FormBuilderTest: test_datetime_local_field_is_wrapped_correctly
3197
+ -------------------------------------------------------------------------
3198
+  (0.0ms) rollback transaction
3199
+  (0.0ms) begin transaction
3200
+ ----------------------------------------------------------------
3201
+ Bootstrap4FormBuilderTest: test_email_field_is_wrapped_correctly
3202
+ ----------------------------------------------------------------
3203
+  (0.0ms) rollback transaction
3204
+  (0.0ms) begin transaction
3205
+ ---------------------------------------------------------------
3206
+ Bootstrap4FormBuilderTest: test_text_field_is_wrapped_correctly
3207
+ ---------------------------------------------------------------
3208
+  (0.0ms) rollback transaction
3209
+  (0.0ms) begin transaction
3210
+ ----------------------------------------------------------------------
3211
+ Bootstrap4FormBuilderTest: test_inline_text_field_is_wrapped_correctly
3212
+ ----------------------------------------------------------------------
3213
+  (0.0ms) rollback transaction
3214
+  (0.0ms) begin transaction
3215
+ --------------------------------------------------------------------
3216
+ Bootstrap4FormBuilderTest: test_telephone_field_is_wrapped_correctly
3217
+ --------------------------------------------------------------------
3218
+  (0.0ms) rollback transaction
3219
+  (0.0ms) begin transaction
3220
+ -----------------------------------------------------------------
3221
+ Bootstrap4FormBuilderTest: test_number_field_is_wrapped_correctly
3222
+ -----------------------------------------------------------------
3223
+  (0.0ms) rollback transaction
3224
+  (0.0ms) begin transaction
3225
+ -------------------------------------------------------------
3226
+ Bootstrap4FormBuilderTest: test_custom_label_text_is_included
3227
+ -------------------------------------------------------------
3228
+  (0.0ms) rollback transaction
3229
+  (0.0ms) begin transaction
3230
+ --------------------------------------------------------------
3231
+ Bootstrap4FormBuilderTest: test_label_is_hidden_when_requested
3232
+ --------------------------------------------------------------
3233
+  (0.0ms) rollback transaction
3234
+  (0.0ms) begin transaction
3235
+ --------------------------------------------------------------
3236
+ Bootstrap4FormBuilderTest: test_url_field_is_wrapped_correctly
3237
+ --------------------------------------------------------------
3238
+  (0.0ms) rollback transaction
3239
+  (0.0ms) begin transaction
3240
+ ----------------------------------------------------------------
3241
+ Bootstrap4FormBuilderTest: test_phone_field_is_wrapped_correctly
3242
+ ----------------------------------------------------------------
3243
+  (0.0ms) rollback transaction
3244
+  (0.0ms) begin transaction
3245
+ --------------------------------------------------------------
3246
+ Bootstrap4FormBuilderTest: test_custom_label_class_is_included
3247
+ --------------------------------------------------------------
3248
+  (0.1ms) rollback transaction
3249
+  (0.0ms) begin transaction
3250
+ ----------------------------------------------------------------
3251
+ Bootstrap4FormBuilderTest: test_color_field_is_wrapped_correctly
3252
+ ----------------------------------------------------------------
3253
+  (0.0ms) rollback transaction
3254
+  (0.0ms) begin transaction
3255
+ ------------------------------------------------------------
3256
+ Bootstrap4FormBuilderTest: test_primary_is_classed_correctly
3257
+ ------------------------------------------------------------
3258
+  (0.0ms) rollback transaction
3259
+  (0.0ms) begin transaction
3260
+ -------------------------------------------------------------------
3261
+ Bootstrap4FormBuilderTest: test_password_field_is_wrapped_correctly
3262
+ -------------------------------------------------------------------
3263
+  (0.1ms) rollback transaction
3264
+  (0.0ms) begin transaction
3265
+ ---------------------------------------------------------------
3266
+ Bootstrap4FormBuilderTest: test_time_field_is_wrapped_correctly
3267
+ ---------------------------------------------------------------
3268
+  (0.0ms) rollback transaction
3269
+  (0.0ms) begin transaction
3270
+ -----------------------------------------------------------------
3271
+ Bootstrap4FormBuilderTest: test_search_field_is_wrapped_correctly
3272
+ -----------------------------------------------------------------
3273
+  (0.0ms) rollback transaction
3274
+  (0.1ms) begin transaction
3275
+ ---------------------------------------------------------------
3276
+ Bootstrap4FormBuilderTest: test_week_field_is_wrapped_correctly
3277
+ ---------------------------------------------------------------
3278
+  (0.0ms) rollback transaction
3279
+  (0.1ms) begin transaction
3280
+ -----------------------------------------------------------------------
3281
+ Bootstrap4FormBuilderTest: test_gridded_form_field_is_wrapped_correctly
3282
+ -----------------------------------------------------------------------
3283
+  (0.0ms) rollback transaction
3284
+  (0.1ms) begin transaction
3285
+ ----------------------------------------------------------------
3286
+ Bootstrap4FormBuilderTest: test_month_field_is_wrapped_correctly
3287
+ ----------------------------------------------------------------
3288
+  (0.0ms) rollback transaction
3289
+  (0.0ms) begin transaction
3290
+ -----------------------------------------------------------
3291
+ Bootstrap4FormBuilderTest: test_submit_is_classed_correctly
3292
+ -----------------------------------------------------------
3293
+  (0.1ms) rollback transaction
3294
+  (0.0ms) begin transaction
3295
+ ---------------------------------------------------------------------
3296
+ Bootstrap4FormErrorTest: test_error_summary_produces_the_correct_html
3297
+ ---------------------------------------------------------------------
3298
+  (0.1ms) rollback transaction
3299
+  (0.1ms) begin transaction
3300
+ --------------------------------------------------------------------------------
3301
+ Bootstrap4FormErrorTest: test_text_field_with_errors_includes_inline-error-class
3302
+ --------------------------------------------------------------------------------
3303
+  (0.0ms) rollback transaction
3304
+  (0.0ms) begin transaction
3305
+ ------------------------------------------------------------------------------------------------
3306
+ Bootstrap4FormErrorTest: test_text_field_with_errors,_without_inline_errors_is_wrapped_correctly
3307
+ ------------------------------------------------------------------------------------------------
3308
+  (0.0ms) rollback transaction
3309
+  (0.0ms) begin transaction
3310
+ -------------------------------------------------------------------------
3311
+ Bootstrap4FormErrorTest: test_text_field_with_errors_is_wrapped_correctly
3312
+ -------------------------------------------------------------------------
3313
+  (0.0ms) rollback transaction
3314
+  (0.0ms) begin transaction
3315
+ --------------------------------------------------------------------------
3316
+ Bootstrap4FormErrorTest: test_email_field_with_errors_is_wrapped_correctly
3317
+ --------------------------------------------------------------------------
3318
+  (0.0ms) rollback transaction
3319
+  (0.0ms) begin transaction
3320
+ ---------------------------------------------------------------------
3321
+ Bootstrap4FormErrorTest: test_alert_message_produces_the_correct_html
3322
+ ---------------------------------------------------------------------
3323
+  (0.0ms) rollback transaction
3324
+  (0.0ms) begin transaction
3325
+ ----------------------------------------------------------------------------------------
3326
+ Bootstrap4FormErrorTest: test_alert_message_with_error_summary_produces_the_correct_html
3327
+ ----------------------------------------------------------------------------------------
3328
+  (0.0ms) rollback transaction
3329
+  (0.0ms) begin transaction
3330
+ --------------------------------------------------
3331
+ Bootstap4FormBuilderHelperTest: test_default_forms
3332
+ --------------------------------------------------
3333
+  (0.0ms) rollback transaction
3334
+  (0.0ms) begin transaction
3335
+ --------------------------------------------------
3336
+ Bootstap4FormBuilderHelperTest: test_gridded_forms
3337
+ --------------------------------------------------
3338
+  (0.1ms) rollback transaction
3339
+  (0.1ms) begin transaction
3340
+ -------------------------------------------------
3341
+ Bootstap4FormBuilderHelperTest: test_inline_forms
3342
+ -------------------------------------------------
3343
+  (0.0ms) rollback transaction
3344
+  (0.0ms) begin transaction
3345
+ ---------------------------------------------------------------------------
3346
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_is_wrapped_correctly
3347
+ ---------------------------------------------------------------------------
3348
+  (0.1ms) rollback transaction
3349
+  (0.0ms) begin transaction
3350
+ ------------------------------------------------------------------------
3351
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_is_wrapped_correctly
3352
+ ------------------------------------------------------------------------
3353
+  (0.0ms) rollback transaction
3354
+  (0.0ms) begin transaction
3355
+ ----------------------------------------------------------------------------------
3356
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_inline_is_wrapped_correctly
3357
+ ----------------------------------------------------------------------------------
3358
+  (0.0ms) rollback transaction
3359
+  (0.0ms) begin transaction
3360
+ ---------------------------------------------------------------------------------------
3361
+ Bootstrap4FormBuilderRadioCheckTest: test_form_group_label_and_label_class_are_included
3362
+ ---------------------------------------------------------------------------------------
3363
+  (0.0ms) rollback transaction
3364
+  (0.1ms) begin transaction
3365
+ -------------------------------------------------------------------------------
3366
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_inline_is_wrapped_correctly
3367
+ -------------------------------------------------------------------------------
3368
+  (0.0ms) rollback transaction
3369
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3370
+  (0.1ms) begin transaction
3371
+ ---------------------------------------------------------------------------
3372
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_is_wrapped_correctly
3373
+ ---------------------------------------------------------------------------
3374
+  (0.0ms) rollback transaction
3375
+  (0.0ms) begin transaction
3376
+ ---------------------------------------------------------------------------------------
3377
+ Bootstrap4FormBuilderRadioCheckTest: test_form_group_label_and_label_class_are_included
3378
+ ---------------------------------------------------------------------------------------
3379
+  (0.1ms) rollback transaction
3380
+  (0.0ms) begin transaction
3381
+ ------------------------------------------------------------------------
3382
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_is_wrapped_correctly
3383
+ ------------------------------------------------------------------------
3384
+  (0.0ms) rollback transaction
3385
+  (0.0ms) begin transaction
3386
+ ----------------------------------------------------------------------------------
3387
+ Bootstrap4FormBuilderRadioCheckTest: test_radio_button_inline_is_wrapped_correctly
3388
+ ----------------------------------------------------------------------------------
3389
+  (0.0ms) rollback transaction
3390
+  (0.0ms) begin transaction
3391
+ -------------------------------------------------------------------------------
3392
+ Bootstrap4FormBuilderRadioCheckTest: test_check_box_inline_is_wrapped_correctly
3393
+ -------------------------------------------------------------------------------
3394
+  (0.0ms) rollback transaction
3395
+  (0.0ms) begin transaction
3396
+ -------------------------------------------------------------
3397
+ Bootstrap4FormBuilderTest: test_custom_label_text_is_included
3398
+ -------------------------------------------------------------
3399
+  (0.0ms) rollback transaction
3400
+  (0.0ms) begin transaction
3401
+ ----------------------------------------------------------------
3402
+ Bootstrap4FormBuilderTest: test_phone_field_is_wrapped_correctly
3403
+ ----------------------------------------------------------------
3404
+  (0.0ms) rollback transaction
3405
+  (0.0ms) begin transaction
3406
+ -----------------------------------------------------------------
3407
+ Bootstrap4FormBuilderTest: test_number_field_is_wrapped_correctly
3408
+ -----------------------------------------------------------------
3409
+  (0.0ms) rollback transaction
3410
+  (0.0ms) begin transaction
3411
+ -----------------------------------------------------------------
3412
+ Bootstrap4FormBuilderTest: test_search_field_is_wrapped_correctly
3413
+ -----------------------------------------------------------------
3414
+  (0.0ms) rollback transaction
3415
+  (0.0ms) begin transaction
3416
+ -----------------------------------------------------------------------
3417
+ Bootstrap4FormBuilderTest: test_gridded_form_field_is_wrapped_correctly
3418
+ -----------------------------------------------------------------------
3419
+  (0.0ms) rollback transaction
3420
+  (0.0ms) begin transaction
3421
+ -----------------------------------------------------------------
3422
+ Bootstrap4FormBuilderTest: test_custom_container_class_is_include
3423
+ -----------------------------------------------------------------
3424
+  (0.0ms) rollback transaction
3425
+  (0.0ms) begin transaction
3426
+ ----------------------------------------------------------------
3427
+ Bootstrap4FormBuilderTest: test_email_field_is_wrapped_correctly
3428
+ ----------------------------------------------------------------
3429
+  (0.0ms) rollback transaction
3430
+  (0.1ms) begin transaction
3431
+ ----------------------------------------------------------------
3432
+ Bootstrap4FormBuilderTest: test_month_field_is_wrapped_correctly
3433
+ ----------------------------------------------------------------
3434
+  (0.0ms) rollback transaction
3435
+  (0.0ms) begin transaction
3436
+ ---------------------------------------------------------------
3437
+ Bootstrap4FormBuilderTest: test_date_field_is_wrapped_correctly
3438
+ ---------------------------------------------------------------
3439
+  (0.0ms) rollback transaction
3440
+  (0.0ms) begin transaction
3441
+ ---------------------------------------------------------------
3442
+ Bootstrap4FormBuilderTest: test_text_field_is_wrapped_correctly
3443
+ ---------------------------------------------------------------
3444
+  (0.0ms) rollback transaction
3445
+  (0.0ms) begin transaction
3446
+ --------------------------------------------------------------------
3447
+ Bootstrap4FormBuilderTest: test_telephone_field_is_wrapped_correctly
3448
+ --------------------------------------------------------------------
3449
+  (0.0ms) rollback transaction
3450
+  (0.0ms) begin transaction
3451
+ ------------------------------------------------------------
3452
+ Bootstrap4FormBuilderTest: test_primary_is_classed_correctly
3453
+ ------------------------------------------------------------
3454
+  (0.0ms) rollback transaction
3455
+  (0.0ms) begin transaction
3456
+ -----------------------------------------------------------
3457
+ Bootstrap4FormBuilderTest: test_submit_is_classed_correctly
3458
+ -----------------------------------------------------------
3459
+  (0.0ms) rollback transaction
3460
+  (0.0ms) begin transaction
3461
+ -------------------------------------------------------------------------
3462
+ Bootstrap4FormBuilderTest: test_datetime_local_field_is_wrapped_correctly
3463
+ -------------------------------------------------------------------------
3464
+  (0.0ms) rollback transaction
3465
+  (0.0ms) begin transaction
3466
+ ---------------------------------------------------------------
3467
+ Bootstrap4FormBuilderTest: test_time_field_is_wrapped_correctly
3468
+ ---------------------------------------------------------------
3469
+  (0.0ms) rollback transaction
3470
+  (0.0ms) begin transaction
3471
+ ---------------------------------------------------------------
3472
+ Bootstrap4FormBuilderTest: test_week_field_is_wrapped_correctly
3473
+ ---------------------------------------------------------------
3474
+  (0.0ms) rollback transaction
3475
+  (0.0ms) begin transaction
3476
+ --------------------------------------------------------------
3477
+ Bootstrap4FormBuilderTest: test_text_area_is_wrapped_correctly
3478
+ --------------------------------------------------------------
3479
+  (0.0ms) rollback transaction
3480
+  (0.0ms) begin transaction
3481
+ ----------------------------------------------------------------------
3482
+ Bootstrap4FormBuilderTest: test_inline_text_field_is_wrapped_correctly
3483
+ ----------------------------------------------------------------------
3484
+  (0.0ms) rollback transaction
3485
+  (0.0ms) begin transaction
3486
+ ----------------------------------------------------------------
3487
+ Bootstrap4FormBuilderTest: test_color_field_is_wrapped_correctly
3488
+ ----------------------------------------------------------------
3489
+  (0.0ms) rollback transaction
3490
+  (0.0ms) begin transaction
3491
+ ----------------------------------------------------------------
3492
+ Bootstrap4FormBuilderTest: test_range_field_is_wrapped_correctly
3493
+ ----------------------------------------------------------------
3494
+  (0.0ms) rollback transaction
3495
+  (0.0ms) begin transaction
3496
+ -------------------------------------------------------------------
3497
+ Bootstrap4FormBuilderTest: test_password_field_is_wrapped_correctly
3498
+ -------------------------------------------------------------------
3499
+  (0.0ms) rollback transaction
3500
+  (0.0ms) begin transaction
3501
+ --------------------------------------------------------------
3502
+ Bootstrap4FormBuilderTest: test_label_is_hidden_when_requested
3503
+ --------------------------------------------------------------
3504
+  (0.0ms) rollback transaction
3505
+  (0.0ms) begin transaction
3506
+ --------------------------------------------------------------
3507
+ Bootstrap4FormBuilderTest: test_url_field_is_wrapped_correctly
3508
+ --------------------------------------------------------------
3509
+  (0.0ms) rollback transaction
3510
+  (0.0ms) begin transaction
3511
+ --------------------------------------------------------------
3512
+ Bootstrap4FormBuilderTest: test_custom_label_class_is_included
3513
+ --------------------------------------------------------------
3514
+  (0.0ms) rollback transaction
3515
+  (0.0ms) begin transaction
3516
+ --------------------------------------------------
3517
+ Bootstap4FormBuilderHelperTest: test_default_forms
3518
+ --------------------------------------------------
3519
+  (0.1ms) rollback transaction
3520
+  (0.1ms) begin transaction
3521
+ -------------------------------------------------
3522
+ Bootstap4FormBuilderHelperTest: test_inline_forms
3523
+ -------------------------------------------------
3524
+  (0.0ms) rollback transaction
3525
+  (0.0ms) begin transaction
3526
+ --------------------------------------------------
3527
+ Bootstap4FormBuilderHelperTest: test_gridded_forms
3528
+ --------------------------------------------------
3529
+  (0.0ms) rollback transaction
3530
+  (0.0ms) begin transaction
3531
+ ---------------------------------------------------------------------
3532
+ Bootstrap4FormErrorTest: test_alert_message_produces_the_correct_html
3533
+ ---------------------------------------------------------------------
3534
+  (0.0ms) rollback transaction
3535
+  (0.0ms) begin transaction
3536
+ --------------------------------------------------------------------------------
3537
+ Bootstrap4FormErrorTest: test_text_field_with_errors_includes_inline-error-class
3538
+ --------------------------------------------------------------------------------
3539
+  (0.0ms) rollback transaction
3540
+  (0.0ms) begin transaction
3541
+ --------------------------------------------------------------------------
3542
+ Bootstrap4FormErrorTest: test_email_field_with_errors_is_wrapped_correctly
3543
+ --------------------------------------------------------------------------
3544
+  (0.0ms) rollback transaction
3545
+  (0.0ms) begin transaction
3546
+ ---------------------------------------------------------------------
3547
+ Bootstrap4FormErrorTest: test_error_summary_produces_the_correct_html
3548
+ ---------------------------------------------------------------------
3549
+  (0.0ms) rollback transaction
3550
+  (0.0ms) begin transaction
3551
+ ------------------------------------------------------------------------------------------------
3552
+ Bootstrap4FormErrorTest: test_text_field_with_errors,_without_inline_errors_is_wrapped_correctly
3553
+ ------------------------------------------------------------------------------------------------
3554
+  (0.0ms) rollback transaction
3555
+  (0.0ms) begin transaction
3556
+ ----------------------------------------------------------------------------------------
3557
+ Bootstrap4FormErrorTest: test_alert_message_with_error_summary_produces_the_correct_html
3558
+ ----------------------------------------------------------------------------------------
3559
+  (0.0ms) rollback transaction
3560
+  (0.0ms) begin transaction
3561
+ -------------------------------------------------------------------------
3562
+ Bootstrap4FormErrorTest: test_text_field_with_errors_is_wrapped_correctly
3563
+ -------------------------------------------------------------------------
3564
+  (0.0ms) rollback transaction