Sha256: 12f1d76d9202c3f1d73729b18f98f4d7d363f835847b3a8d715a9e8f6eccad3b

Contents?: true

Size: 1.47 KB

Versions: 10

Compression:

Stored size: 1.47 KB

Contents

# frozen_string_literal: true
# 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 generates a placeholder from the translations' do
    store_translations(:en, simple_form: { placeholders: { user: { name: "placeholder from i18n en.simple_form.placeholders.user.name" } } }) do
      with_input_for @user, :name, :text
      assert_select 'textarea.text[placeholder="placeholder from i18n en.simple_form.placeholders.user.name"]'
    end
  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

  test 'input infers minlength column definition from validation when present for text attributes' do
    with_input_for @validating_user, :description, :text
    assert_select 'textarea.text[minlength="15"]'
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
simple_form-5.2.0 test/inputs/text_input_test.rb
simple_form-5.1.0 test/inputs/text_input_test.rb
simple_form-5.0.3 test/inputs/text_input_test.rb
simple_form-5.0.2 test/inputs/text_input_test.rb
simple_form-5.0.1 test/inputs/text_input_test.rb
simple_form-5.0.0 test/inputs/text_input_test.rb
simple_form-4.1.0 test/inputs/text_input_test.rb
simple_form-4.0.1 test/inputs/text_input_test.rb
simple_form-4.0.0 test/inputs/text_input_test.rb
simple_form-3.5.1 test/inputs/text_input_test.rb