mirror of
https://github.com/heartcombo/simple_form.git
synced 2022-11-09 12:19:26 -05:00
44 lines
1.6 KiB
Ruby
44 lines
1.6 KiB
Ruby
|
# encoding: UTF-8
|
||
|
require 'test_helper'
|
||
|
|
||
|
class PriorityInputTest < ActionView::TestCase
|
||
|
test 'input should generate a country select field' do
|
||
|
with_input_for @user, :country, :country
|
||
|
assert_select 'select#user_country'
|
||
|
assert_select 'select option[value=Brazil]', 'Brazil'
|
||
|
assert_no_select 'select option[value=][disabled=disabled]'
|
||
|
end
|
||
|
|
||
|
test 'input should generate a country select with simple form 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 should generate 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 should generate 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 should generate 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 should not generate invalid required html attribute' do
|
||
|
with_input_for @user, :country, :country
|
||
|
assert_select 'select.required'
|
||
|
assert_no_select 'select[required]'
|
||
|
end
|
||
|
end
|