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

17 lines
484 B
Ruby
Raw Normal View History

# encoding: UTF-8
require 'test_helper'
class FileInputTest < ActionView::TestCase
test 'input generates a file field' do
with_input_for @user, :name, :file
assert_select 'input#user_name[type=file]'
end
test "input generates a file field that doesn't accept placeholder" do
2013-01-28 21:02:59 +00:00
store_translations(:en, simple_form: { placeholders: { user: { name: "text" } } }) do
with_input_for @user, :name, :file
assert_no_select 'input[placeholder]'
end
end
end