mirror of
https://github.com/heartcombo/simple_form.git
synced 2022-11-09 12:19:26 -05:00
51 lines
No EOL
1.6 KiB
Ruby
51 lines
No EOL
1.6 KiB
Ruby
require 'test_helper'
|
|
|
|
# Tests for f.input_field
|
|
class InputFieldTest < ActionView::TestCase
|
|
test "builder input_field should only render the input tag, nothing else" do
|
|
with_concat_form_for(@user) do |f|
|
|
f.input_field :name
|
|
end
|
|
assert_select 'form > input.required.string'
|
|
assert_no_select 'div.string'
|
|
assert_no_select 'label'
|
|
assert_no_select '.hint'
|
|
end
|
|
|
|
test 'builder input_field should allow overriding default input type' do
|
|
with_concat_form_for(@user) do |f|
|
|
f.input_field :name, :as => :text
|
|
end
|
|
|
|
assert_no_select 'input#user_name'
|
|
assert_select 'textarea#user_name.text'
|
|
end
|
|
|
|
test 'builder input_field should allow passing options to input tag' do
|
|
with_concat_form_for(@user) do |f|
|
|
f.input_field :name, :id => 'name_input', :class => 'name'
|
|
end
|
|
|
|
assert_select 'input.string.name#name_input'
|
|
end
|
|
|
|
test 'builder input_field should generate an input tag with a clean HTML' do
|
|
with_concat_form_for(@user) do |f|
|
|
f.input_field :name, :as => :integer, :class => 'name'
|
|
end
|
|
|
|
assert_no_select 'input.integer[input_html]'
|
|
assert_no_select 'input.integer[as]'
|
|
end
|
|
|
|
test 'builder collection input_field should generate input tag with a clean HTML' do
|
|
with_concat_form_for(@user) do |f|
|
|
f.input_field :status, :collection => ['Open', 'Closed'], :class => 'status', :label_method => :to_s, :value_method => :to_s
|
|
end
|
|
|
|
assert_no_select 'select.status[input_html]'
|
|
assert_no_select 'select.status[collection]'
|
|
assert_no_select 'select.status[label_method]'
|
|
assert_no_select 'select.status[value_method]'
|
|
end
|
|
end |