Sha256: 58445c55a9c8ddf3f19e6e22e977012c6ce2a070da6e12ea44cf983a5c0100b2

Contents?: true

Size: 1.85 KB

Versions: 5

Compression:

Stored size: 1.85 KB

Contents

# frozen_string_literal: true
# encoding: UTF-8
require 'test_helper'

class PriorityInputTest < ActionView::TestCase
  test 'input generates a country select field' do
    with_input_for @user, :country, :country
    assert_select 'select#user_country'
    assert_select 'select option[value=BR]', 'Brazil'
    assert_no_select 'select option[value=""][disabled=disabled]'
  end

  test 'input generates a country select with SimpleForm default' do
    swap SimpleForm, country_priority: [ 'Brazil' ] do
      with_input_for @user, :country, :country
      assert_select 'select option[value="---------------"][disabled=disabled]'
    end
  end

  test 'input generates a time zone select field' do
    with_input_for @user, :time_zone, :time_zone
    assert_select 'select#user_time_zone'
    assert_select 'select option[value=Brasilia]', '(GMT-03:00) Brasilia'
    assert_no_select 'select option[value=""][disabled=disabled]'
  end

  test 'input generates a time zone select field with default' do
    with_input_for @user, :time_zone, :time_zone, default: 'Brasilia'
    assert_select 'select option[value=Brasilia][selected=selected]'
    assert_no_select 'select option[value=""]'
  end

  test 'input generates a time zone select using options priority' do
    with_input_for @user, :time_zone, :time_zone, priority: /Brasilia/
    assert_select 'select option[value=""][disabled=disabled]'
    assert_no_select 'select option[value=""]', /^$/
  end

  test 'priority input does generate select element with required html attribute' do
    with_input_for @user, :country, :country
    assert_select 'select.required'
    assert_select 'select[required]'
  end

  test 'priority input does generate select element with aria-required html attribute' do
    with_input_for @user, :country, :country
    assert_select 'select.required'
    assert_select 'select[aria-required]'
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
simple_form-5.1.0 test/inputs/priority_input_test.rb
simple_form-5.0.3 test/inputs/priority_input_test.rb
simple_form-5.0.2 test/inputs/priority_input_test.rb
simple_form-5.0.1 test/inputs/priority_input_test.rb
simple_form-5.0.0 test/inputs/priority_input_test.rb