formtastic 3.1.3 → 5.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (179) hide show
  1. checksums.yaml +7 -0
  2. data/.gitattributes +1 -0
  3. data/.github/workflows/test.yml +61 -0
  4. data/.gitignore +3 -2
  5. data/CHANGELOG.md +61 -0
  6. data/Gemfile.lock +140 -0
  7. data/MIT-LICENSE +1 -1
  8. data/{README.textile → README.md} +183 -167
  9. data/RELEASE_PROCESS +3 -1
  10. data/Rakefile +20 -1
  11. data/app/assets/stylesheets/formtastic.css +1 -1
  12. data/bin/appraisal +8 -0
  13. data/formtastic.gemspec +12 -16
  14. data/gemfiles/rails_6.0/Gemfile +5 -0
  15. data/gemfiles/rails_6.1/Gemfile +5 -0
  16. data/gemfiles/rails_7.0/Gemfile +5 -0
  17. data/gemfiles/rails_7.1/Gemfile +5 -0
  18. data/gemfiles/rails_edge/Gemfile +13 -0
  19. data/lib/formtastic/action_class_finder.rb +1 -0
  20. data/lib/formtastic/actions/base.rb +1 -0
  21. data/lib/formtastic/actions/button_action.rb +1 -0
  22. data/lib/formtastic/actions/buttonish.rb +1 -0
  23. data/lib/formtastic/actions/input_action.rb +1 -0
  24. data/lib/formtastic/actions/link_action.rb +1 -0
  25. data/lib/formtastic/actions.rb +7 -3
  26. data/lib/formtastic/deprecation.rb +2 -38
  27. data/lib/formtastic/engine.rb +4 -1
  28. data/lib/formtastic/form_builder.rb +12 -24
  29. data/lib/formtastic/helpers/action_helper.rb +2 -48
  30. data/lib/formtastic/helpers/actions_helper.rb +1 -0
  31. data/lib/formtastic/helpers/enum.rb +14 -0
  32. data/lib/formtastic/helpers/errors_helper.rb +3 -2
  33. data/lib/formtastic/helpers/fieldset_wrapper.rb +14 -9
  34. data/lib/formtastic/helpers/file_column_detection.rb +1 -0
  35. data/lib/formtastic/helpers/form_helper.rb +2 -1
  36. data/lib/formtastic/helpers/input_helper.rb +20 -76
  37. data/lib/formtastic/helpers/inputs_helper.rb +29 -23
  38. data/lib/formtastic/helpers/reflection.rb +1 -0
  39. data/lib/formtastic/helpers.rb +2 -2
  40. data/lib/formtastic/html_attributes.rb +1 -0
  41. data/lib/formtastic/i18n.rb +2 -1
  42. data/lib/formtastic/input_class_finder.rb +1 -0
  43. data/lib/formtastic/inputs/base/associations.rb +1 -0
  44. data/lib/formtastic/inputs/base/choices.rb +3 -2
  45. data/lib/formtastic/inputs/base/collections.rb +46 -10
  46. data/lib/formtastic/inputs/base/database.rb +5 -7
  47. data/lib/formtastic/inputs/base/datetime_pickerish.rb +1 -0
  48. data/lib/formtastic/inputs/base/errors.rb +7 -6
  49. data/lib/formtastic/inputs/base/fileish.rb +1 -0
  50. data/lib/formtastic/inputs/base/hints.rb +2 -1
  51. data/lib/formtastic/inputs/base/html.rb +9 -7
  52. data/lib/formtastic/inputs/base/labelling.rb +3 -2
  53. data/lib/formtastic/inputs/base/naming.rb +5 -4
  54. data/lib/formtastic/inputs/base/numeric.rb +1 -0
  55. data/lib/formtastic/inputs/base/options.rb +3 -3
  56. data/lib/formtastic/inputs/base/placeholder.rb +1 -0
  57. data/lib/formtastic/inputs/base/stringish.rb +1 -0
  58. data/lib/formtastic/inputs/base/timeish.rb +9 -4
  59. data/lib/formtastic/inputs/base/validations.rb +39 -12
  60. data/lib/formtastic/inputs/base/wrapping.rb +1 -0
  61. data/lib/formtastic/inputs/base.rb +3 -2
  62. data/lib/formtastic/inputs/boolean_input.rb +2 -1
  63. data/lib/formtastic/inputs/check_boxes_input.rb +15 -6
  64. data/lib/formtastic/inputs/color_input.rb +1 -1
  65. data/lib/formtastic/inputs/country_input.rb +4 -1
  66. data/lib/formtastic/inputs/datalist_input.rb +1 -0
  67. data/lib/formtastic/inputs/date_picker_input.rb +1 -0
  68. data/lib/formtastic/inputs/date_select_input.rb +1 -0
  69. data/lib/formtastic/inputs/datetime_picker_input.rb +1 -0
  70. data/lib/formtastic/inputs/datetime_select_input.rb +1 -0
  71. data/lib/formtastic/inputs/email_input.rb +1 -0
  72. data/lib/formtastic/inputs/file_input.rb +1 -0
  73. data/lib/formtastic/inputs/hidden_input.rb +3 -2
  74. data/lib/formtastic/inputs/number_input.rb +1 -0
  75. data/lib/formtastic/inputs/password_input.rb +1 -0
  76. data/lib/formtastic/inputs/phone_input.rb +1 -0
  77. data/lib/formtastic/inputs/radio_input.rb +21 -0
  78. data/lib/formtastic/inputs/range_input.rb +1 -0
  79. data/lib/formtastic/inputs/search_input.rb +1 -0
  80. data/lib/formtastic/inputs/select_input.rb +30 -1
  81. data/lib/formtastic/inputs/string_input.rb +1 -0
  82. data/lib/formtastic/inputs/text_input.rb +1 -0
  83. data/lib/formtastic/inputs/time_picker_input.rb +1 -0
  84. data/lib/formtastic/inputs/time_select_input.rb +1 -0
  85. data/lib/formtastic/inputs/time_zone_input.rb +17 -6
  86. data/lib/formtastic/inputs/url_input.rb +1 -0
  87. data/lib/formtastic/inputs.rb +33 -29
  88. data/lib/formtastic/localized_string.rb +1 -0
  89. data/lib/formtastic/localizer.rb +21 -22
  90. data/lib/formtastic/namespaced_class_finder.rb +8 -9
  91. data/lib/formtastic/version.rb +2 -1
  92. data/lib/formtastic.rb +10 -11
  93. data/lib/generators/formtastic/form/form_generator.rb +2 -1
  94. data/lib/generators/formtastic/input/input_generator.rb +47 -0
  95. data/lib/generators/formtastic/install/install_generator.rb +1 -0
  96. data/lib/generators/templates/formtastic.rb +15 -13
  97. data/lib/generators/templates/input.rb +19 -0
  98. data/sample/basic_inputs.html +1 -1
  99. data/script/integration-template.rb +73 -0
  100. data/script/integration.sh +19 -0
  101. data/spec/action_class_finder_spec.rb +2 -1
  102. data/spec/actions/button_action_spec.rb +21 -20
  103. data/spec/actions/generic_action_spec.rb +134 -133
  104. data/spec/actions/input_action_spec.rb +20 -19
  105. data/spec/actions/link_action_spec.rb +30 -29
  106. data/spec/builder/custom_builder_spec.rb +39 -22
  107. data/spec/builder/error_proc_spec.rb +6 -5
  108. data/spec/builder/semantic_fields_for_spec.rb +46 -45
  109. data/spec/fast_spec_helper.rb +13 -0
  110. data/spec/generators/formtastic/form/form_generator_spec.rb +33 -32
  111. data/spec/generators/formtastic/input/input_generator_spec.rb +125 -0
  112. data/spec/generators/formtastic/install/install_generator_spec.rb +10 -9
  113. data/spec/helpers/action_helper_spec.rb +329 -10
  114. data/spec/helpers/actions_helper_spec.rb +43 -42
  115. data/spec/helpers/form_helper_spec.rb +45 -38
  116. data/spec/helpers/input_helper_spec.rb +976 -2
  117. data/spec/helpers/inputs_helper_spec.rb +217 -202
  118. data/spec/helpers/reflection_helper_spec.rb +7 -6
  119. data/spec/helpers/semantic_errors_helper_spec.rb +26 -25
  120. data/spec/i18n_spec.rb +30 -29
  121. data/spec/input_class_finder_spec.rb +2 -1
  122. data/spec/inputs/base/collections_spec.rb +78 -0
  123. data/spec/inputs/base/validations_spec.rb +481 -0
  124. data/spec/inputs/boolean_input_spec.rb +73 -72
  125. data/spec/inputs/check_boxes_input_spec.rb +169 -121
  126. data/spec/inputs/color_input_spec.rb +53 -64
  127. data/spec/inputs/country_input_spec.rb +23 -22
  128. data/spec/inputs/custom_input_spec.rb +3 -6
  129. data/spec/inputs/datalist_input_spec.rb +3 -2
  130. data/spec/inputs/date_picker_input_spec.rb +114 -113
  131. data/spec/inputs/date_select_input_spec.rb +76 -61
  132. data/spec/inputs/datetime_picker_input_spec.rb +123 -122
  133. data/spec/inputs/datetime_select_input_spec.rb +85 -68
  134. data/spec/inputs/email_input_spec.rb +17 -16
  135. data/spec/inputs/file_input_spec.rb +18 -17
  136. data/spec/inputs/hidden_input_spec.rb +32 -31
  137. data/spec/inputs/include_blank_spec.rb +10 -9
  138. data/spec/inputs/label_spec.rb +26 -25
  139. data/spec/inputs/number_input_spec.rb +212 -211
  140. data/spec/inputs/password_input_spec.rb +17 -16
  141. data/spec/inputs/phone_input_spec.rb +17 -16
  142. data/spec/inputs/placeholder_spec.rb +18 -17
  143. data/spec/inputs/radio_input_spec.rb +92 -65
  144. data/spec/inputs/range_input_spec.rb +136 -135
  145. data/spec/inputs/readonly_spec.rb +51 -0
  146. data/spec/inputs/search_input_spec.rb +16 -15
  147. data/spec/inputs/select_input_spec.rb +209 -102
  148. data/spec/inputs/string_input_spec.rb +51 -50
  149. data/spec/inputs/text_input_spec.rb +34 -33
  150. data/spec/inputs/time_picker_input_spec.rb +115 -114
  151. data/spec/inputs/time_select_input_spec.rb +84 -70
  152. data/spec/inputs/time_zone_input_spec.rb +58 -31
  153. data/spec/inputs/url_input_spec.rb +17 -16
  154. data/spec/inputs/with_options_spec.rb +9 -8
  155. data/spec/localizer_spec.rb +18 -17
  156. data/spec/namespaced_class_finder_spec.rb +18 -6
  157. data/spec/schema.rb +22 -0
  158. data/spec/spec_helper.rb +172 -260
  159. data/spec/support/custom_macros.rb +74 -76
  160. data/spec/support/deprecation.rb +2 -1
  161. data/spec/support/shared_examples.rb +2 -1233
  162. data/spec/support/specialized_class_finder_shared_example.rb +1 -0
  163. data/spec/support/test_environment.rb +24 -9
  164. metadata +78 -170
  165. data/.travis.yml +0 -29
  166. data/Appraisals +0 -29
  167. data/CHANGELOG +0 -39
  168. data/DEPRECATIONS +0 -49
  169. data/gemfiles/rails_3.2.gemfile +0 -7
  170. data/gemfiles/rails_4.0.4.gemfile +0 -7
  171. data/gemfiles/rails_4.1.gemfile +0 -7
  172. data/gemfiles/rails_4.2.gemfile +0 -7
  173. data/gemfiles/rails_4.gemfile +0 -7
  174. data/gemfiles/rails_edge.gemfile +0 -10
  175. data/lib/formtastic/util.rb +0 -57
  176. data/spec/helpers/namespaced_action_helper_spec.rb +0 -43
  177. data/spec/helpers/namespaced_input_helper_spec.rb +0 -36
  178. data/spec/support/deferred_garbage_collection.rb +0 -21
  179. data/spec/util_spec.rb +0 -66
@@ -1,94 +1,83 @@
1
1
  # encoding: utf-8
2
+ # frozen_string_literal: true
2
3
  require 'spec_helper'
3
4
 
4
- describe 'color input' do
5
+ RSpec.describe 'color input' do
5
6
 
6
7
  include FormtasticSpecHelper
7
8
 
8
9
  before do
9
- @output_buffer = ''
10
+ @output_buffer = ActionView::OutputBuffer.new ''
10
11
  mock_everything
11
12
  end
12
13
 
13
- if Formtastic::Util.rails3?
14
- describe "attempting to use color input with Rails 3" do
15
- it "raises an error" do
16
- expect {
17
- concat(semantic_form_for(@new_post) do |builder|
18
- concat(builder.input(:color))
19
- end)
20
- }.to raise_error "The :color input requires the color_field form helper, which is only available in Rails 4+"
21
- end
14
+ describe "when object is provided" do
15
+ before do
16
+ concat(semantic_form_for(@new_post) do |builder|
17
+ concat(builder.input(:color))
18
+ end)
22
19
  end
23
- else
24
- describe "when object is provided" do
25
- before do
26
- concat(semantic_form_for(@new_post) do |builder|
27
- concat(builder.input(:color))
28
- end)
29
- end
30
20
 
31
- it_should_have_input_wrapper_with_class(:color)
32
- it_should_have_input_wrapper_with_class(:input)
33
- it_should_have_input_wrapper_with_class(:stringish)
34
- it_should_have_input_wrapper_with_id("post_color_input")
35
- it_should_have_label_with_text(/Color/)
36
- it_should_have_label_for("post_color")
37
- it_should_have_input_with_id("post_color")
38
- it_should_have_input_with_type(:color)
39
- it_should_have_input_with_name("post[color]")
21
+ it_should_have_input_wrapper_with_class(:color)
22
+ it_should_have_input_wrapper_with_class(:input)
23
+ it_should_have_input_wrapper_with_class(:stringish)
24
+ it_should_have_input_wrapper_with_id("post_color_input")
25
+ it_should_have_label_with_text(/Color/)
26
+ it_should_have_label_for("post_color")
27
+ it_should_have_input_with_id("post_color")
28
+ it_should_have_input_with_type(:color)
29
+ it_should_have_input_with_name("post[color]")
40
30
 
41
- end
31
+ end
42
32
 
43
- describe "when namespace is provided" do
33
+ describe "when namespace is provided" do
44
34
 
45
- before do
46
- concat(semantic_form_for(@new_post, :namespace => 'context2') do |builder|
47
- concat(builder.input(:color))
48
- end)
49
- end
35
+ before do
36
+ concat(semantic_form_for(@new_post, :namespace => 'context2') do |builder|
37
+ concat(builder.input(:color))
38
+ end)
39
+ end
50
40
 
51
- it_should_have_input_wrapper_with_id("context2_post_color_input")
52
- it_should_have_label_and_input_with_id("context2_post_color")
41
+ it_should_have_input_wrapper_with_id("context2_post_color_input")
42
+ it_should_have_label_and_input_with_id("context2_post_color")
53
43
 
54
- end
44
+ end
55
45
 
56
- describe "when index is provided" do
46
+ describe "when index is provided" do
57
47
 
58
- before do
59
- @output_buffer = ''
60
- mock_everything
48
+ before do
49
+ @output_buffer = ActionView::OutputBuffer.new ''
50
+ mock_everything
61
51
 
62
- concat(semantic_form_for(@new_post) do |builder|
63
- concat(builder.fields_for(:author, :index => 3) do |author|
64
- concat(author.input(:name, :as => :color))
65
- end)
52
+ concat(semantic_form_for(@new_post) do |builder|
53
+ concat(builder.fields_for(:author, :index => 3) do |author|
54
+ concat(author.input(:name, :as => :color))
66
55
  end)
67
- end
68
-
69
- it 'should index the id of the wrapper' do
70
- output_buffer.should have_tag("li#post_author_attributes_3_name_input")
71
- end
56
+ end)
57
+ end
72
58
 
73
- it 'should index the id of the select tag' do
74
- output_buffer.should have_tag("input#post_author_attributes_3_name")
75
- end
59
+ it 'should index the id of the wrapper' do
60
+ expect(output_buffer.to_str).to have_tag("li#post_author_attributes_3_name_input")
61
+ end
76
62
 
77
- it 'should index the name of the select tag' do
78
- output_buffer.should have_tag("input[@name='post[author_attributes][3][name]']")
79
- end
63
+ it 'should index the id of the select tag' do
64
+ expect(output_buffer.to_str).to have_tag("input#post_author_attributes_3_name")
65
+ end
80
66
 
67
+ it 'should index the name of the select tag' do
68
+ expect(output_buffer.to_str).to have_tag("input[@name='post[author_attributes][3][name]']")
81
69
  end
82
70
 
71
+ end
72
+
83
73
 
84
- describe "when required" do
85
- it "should add the required attribute to the input's html options" do
86
- with_config :use_required_attribute, true do
87
- concat(semantic_form_for(@new_post) do |builder|
88
- concat(builder.input(:title, :as => :color, :required => true))
89
- end)
90
- output_buffer.should have_tag("input[@required]")
91
- end
74
+ describe "when required" do
75
+ it "should add the required attribute to the input's html options" do
76
+ with_config :use_required_attribute, true do
77
+ concat(semantic_form_for(@new_post) do |builder|
78
+ concat(builder.input(:title, :as => :color, :required => true))
79
+ end)
80
+ expect(output_buffer.to_str).to have_tag("input[@required]")
92
81
  end
93
82
  end
94
83
  end
@@ -1,23 +1,24 @@
1
1
  # encoding: utf-8
2
+ # frozen_string_literal: true
2
3
  require 'spec_helper'
3
4
 
4
- describe 'country input' do
5
+ RSpec.describe 'country input' do
5
6
 
6
7
  include FormtasticSpecHelper
7
8
 
8
9
  before do
9
- @output_buffer = ''
10
+ @output_buffer = ActionView::OutputBuffer.new ''
10
11
  mock_everything
11
12
  end
12
13
 
13
14
  describe "when country_select is not available as a helper from a plugin" do
14
15
 
15
16
  it "should raise an error, sugesting the author installs a plugin" do
16
- lambda {
17
+ expect {
17
18
  semantic_form_for(@new_post) do |builder|
18
19
  concat(builder.input(:country, :as => :country))
19
20
  end
20
- }.should raise_error
21
+ }.to raise_error(Formtastic::Inputs::CountryInput::CountrySelectPluginMissing)
21
22
  end
22
23
 
23
24
  end
@@ -26,7 +27,7 @@ describe 'country input' do
26
27
 
27
28
  before do
28
29
  concat(semantic_form_for(@new_post) do |builder|
29
- builder.stub(:country_select).and_return(Formtastic::Util.html_safe("<select><option>...</option></select>"))
30
+ allow(builder).to receive(:country_select).and_return("<select><option>...</option></select>".html_safe)
30
31
  concat(builder.input(:country, :as => :country))
31
32
  end)
32
33
  end
@@ -39,13 +40,13 @@ describe 'country input' do
39
40
  #it_should_apply_error_logic_for_input_type(:country)
40
41
 
41
42
  it 'should generate a label for the input' do
42
- output_buffer.should have_tag('form li label')
43
- output_buffer.should have_tag('form li label[@for="post_country"]')
44
- output_buffer.should have_tag('form li label', /Country/)
43
+ expect(output_buffer.to_str).to have_tag('form li label')
44
+ expect(output_buffer.to_str).to have_tag('form li label[@for="post_country"]')
45
+ expect(output_buffer.to_str).to have_tag('form li label', :text => /Country/)
45
46
  end
46
47
 
47
48
  it "should generate a select" do
48
- output_buffer.should have_tag("form li select")
49
+ expect(output_buffer.to_str).to have_tag("form li select")
49
50
  end
50
51
 
51
52
  end
@@ -55,8 +56,8 @@ describe 'country input' do
55
56
  it "should be passed down to the country_select helper when provided" do
56
57
  priority_countries = ["Foo", "Bah"]
57
58
  semantic_form_for(@new_post) do |builder|
58
- builder.stub(:country_select).and_return(Formtastic::Util.html_safe("<select><option>...</option></select>"))
59
- builder.should_receive(:country_select).with(:country, priority_countries, {}, {:id => "post_country", :required => false, :autofocus => false}).and_return(Formtastic::Util.html_safe("<select><option>...</option></select>"))
59
+ allow(builder).to receive(:country_select).and_return("<select><option>...</option></select>".html_safe)
60
+ expect(builder).to receive(:country_select).with(:country, priority_countries, {}, {:id => "post_country", :required => false, :autofocus => false, :readonly => false}).and_return("<select><option>...</option></select>".html_safe)
60
61
 
61
62
  concat(builder.input(:country, :as => :country, :priority_countries => priority_countries))
62
63
  end
@@ -64,12 +65,12 @@ describe 'country input' do
64
65
 
65
66
  it "should default to the @@priority_countries config when absent" do
66
67
  priority_countries = Formtastic::FormBuilder.priority_countries
67
- priority_countries.should_not be_empty
68
- priority_countries.should_not be_nil
68
+ expect(priority_countries).not_to be_empty
69
+ expect(priority_countries).not_to be_nil
69
70
 
70
71
  semantic_form_for(@new_post) do |builder|
71
- builder.stub(:country_select).and_return(Formtastic::Util.html_safe("<select><option>...</option></select>"))
72
- builder.should_receive(:country_select).with(:country, priority_countries, {}, {:id => "post_country", :required => false, :autofocus => false}).and_return(Formtastic::Util.html_safe("<select><option>...</option></select>"))
72
+ allow(builder).to receive(:country_select).and_return("<select><option>...</option></select>".html_safe)
73
+ expect(builder).to receive(:country_select).with(:country, priority_countries, {}, {:id => "post_country", :required => false, :autofocus => false, :readonly => false}).and_return("<select><option>...</option></select>".html_safe)
73
74
 
74
75
  concat(builder.input(:country, :as => :country))
75
76
  end
@@ -80,12 +81,12 @@ describe 'country input' do
80
81
  describe "when namespace is provided" do
81
82
 
82
83
  before do
83
- @output_buffer = ''
84
+ @output_buffer = ActionView::OutputBuffer.new ''
84
85
  mock_everything
85
86
 
86
87
  concat(semantic_form_for(@new_post, :namespace => 'context2') do |builder|
87
- builder.stub(:country_select).and_return(Formtastic::Util.html_safe("<select><option>...</option></select>"))
88
- builder.should_receive(:country_select).with(:country, [], {}, {:id => "context2_post_country", :required => false, :autofocus => false}).and_return(Formtastic::Util.html_safe("<select><option>...</option></select>"))
88
+ allow(builder).to receive(:country_select).and_return("<select><option>...</option></select>".html_safe)
89
+ expect(builder).to receive(:country_select).with(:country, [], {}, {:id => "context2_post_country", :required => false, :autofocus => false, :readonly => false}).and_return("<select><option>...</option></select>".html_safe)
89
90
  concat(builder.input(:country, :priority_countries => []))
90
91
  end)
91
92
  end
@@ -101,13 +102,13 @@ describe 'country input' do
101
102
 
102
103
  before do
103
104
  concat(semantic_form_for(@new_post) do |builder|
104
- builder.stub(:country_select).and_return(Formtastic::Util.html_safe("<select><option>...</option></select>"))
105
+ allow(builder).to receive(:country_select).and_return("<select><option>...</option></select>".html_safe)
105
106
  concat(builder.input(:country))
106
107
  end)
107
108
  end
108
109
 
109
110
  it "should render a country input" do
110
- output_buffer.should have_tag "form li.country"
111
+ expect(output_buffer.to_str).to have_tag "form li.country"
111
112
  end
112
113
  end
113
114
 
@@ -121,8 +122,8 @@ describe 'country input' do
121
122
  end
122
123
 
123
124
  it "should render a country input" do
124
- output_buffer.should_not have_tag "form li.country"
125
- output_buffer.should have_tag "form li.string", :count => 2
125
+ expect(output_buffer.to_str).not_to have_tag "form li.country"
126
+ expect(output_buffer.to_str).to have_tag "form li.string", :count => 2
126
127
  end
127
128
 
128
129
  end
@@ -1,4 +1,5 @@
1
1
  # encoding: utf-8
2
+ # frozen_string_literal: true
2
3
  require 'spec_helper'
3
4
 
4
5
  # TODO extract out
@@ -11,11 +12,7 @@ module TestInputs
11
12
  @method = :title
12
13
  @options = {}
13
14
  @proc = Proc.new {}
14
- if Rails::VERSION::MAJOR == 4
15
- @builder = Formtastic::FormBuilder.new(@object_name, @object, @template, @options)
16
- else
17
- @builder = Formtastic::FormBuilder.new(@object_name, @object, @template, @options, @proc)
18
- end
15
+ @builder = Formtastic::FormBuilder.new(@object_name, @object, @template, @options)
19
16
  [@builder, @template, @object, @object_name, @method, @options]
20
17
  end
21
18
 
@@ -31,7 +28,7 @@ module TestInputs
31
28
 
32
29
  end
33
30
 
34
- describe 'AnyCustomInput' do
31
+ RSpec.describe 'AnyCustomInput' do
35
32
 
36
33
  include TestInputs
37
34
 
@@ -1,11 +1,12 @@
1
1
  # encoding: utf-8
2
+ # frozen_string_literal: true
2
3
  require 'spec_helper'
3
4
 
4
- describe "datalist inputs" do
5
+ RSpec.describe "datalist inputs" do
5
6
  include FormtasticSpecHelper
6
7
 
7
8
  before do
8
- @output_buffer = ''
9
+ @output_buffer = ActionView::OutputBuffer.new ''
9
10
  mock_everything
10
11
  end
11
12