heartcombo--simple_form/test/inputs/readonly_test.rb

39 lines
1.8 KiB
Ruby

require 'test_helper'
class ReadonlyTest < ActionView::TestCase
test 'input should generate readonly elements based on the readonly option' do
with_input_for @user, :name, :string, :readonly => true
assert_select 'input.string.readonly[readonly]'
with_input_for @user, :description, :text, :readonly => true
assert_select 'textarea.text.readonly[readonly]'
with_input_for @user, :age, :integer, :readonly => true
assert_select 'input.integer.readonly[readonly]'
with_input_for @user, :born_at, :date, :readonly => true
assert_select 'select.date.readonly[readonly]'
with_input_for @user, :created_at, :datetime, :readonly => true
assert_select 'select.datetime.readonly[readonly]'
with_input_for @user, :name, :string, :readonly => false
assert_select 'input.string:not(.readonly[readonly])'
with_input_for @user, :description, :text, :readonly => false
assert_select 'textarea.text:not(.readonly[readonly])'
with_input_for @user, :age, :integer, :readonly => false
assert_select 'input.integer:not(.readonly[readonly])'
with_input_for @user, :born_at, :date, :readonly => false
assert_select 'select.date:not(.readonly[readonly])'
with_input_for @user, :created_at, :datetime, :readonly => false
assert_select 'select.datetime:not(.readonly[readonly])'
with_input_for @user, :name, :string
assert_select 'input.string:not(.readonly[readonly])'
with_input_for @user, :description, :text
assert_select 'textarea.text:not(.readonly[readonly])'
with_input_for @user, :age, :integer
assert_select 'input.integer:not(.readonly[readonly])'
with_input_for @user, :born_at, :date
assert_select 'select.date:not(.readonly[readonly])'
with_input_for @user, :created_at, :datetime
assert_select 'select.datetime:not(.readonly[readonly])'
end
end