mirror of
https://github.com/heartcombo/simple_form.git
synced 2022-11-09 12:19:26 -05:00
24 lines
877 B
Ruby
24 lines
877 B
Ruby
# encoding: UTF-8
|
|
require 'test_helper'
|
|
|
|
class TextInputTest < ActionView::TestCase
|
|
test 'input generates a text area for text attributes' do
|
|
with_input_for @user, :description, :text
|
|
assert_select 'textarea.text#user_description'
|
|
end
|
|
|
|
test 'input generates a text area for text attributes that accept placeholder' do
|
|
with_input_for @user, :description, :text, placeholder: 'Put in some text'
|
|
assert_select 'textarea.text[placeholder=Put in some text]'
|
|
end
|
|
|
|
test 'input gets maxlength from column definition for text attributes' do
|
|
with_input_for @user, :description, :text
|
|
assert_select 'textarea.text[maxlength=200]'
|
|
end
|
|
|
|
test 'input infers maxlength column definition from validation when present for text attributes' do
|
|
with_input_for @validating_user, :description, :text
|
|
assert_select 'textarea.text[maxlength=50]'
|
|
end
|
|
end
|