mirror of
https://github.com/heartcombo/simple_form.git
synced 2022-11-09 12:19:26 -05:00
16 lines
496 B
Ruby
16 lines
496 B
Ruby
# encoding: UTF-8
|
|
require 'test_helper'
|
|
|
|
class FileInputTest < ActionView::TestCase
|
|
test 'input should generate a file field' do
|
|
with_input_for @user, :name, :file
|
|
assert_select 'input#user_name[type=file]'
|
|
end
|
|
|
|
test "input should generate a file field that doesn't accept placeholder" do
|
|
store_translations(:en, simple_form: { placeholders: { user: { name: "text" } } }) do
|
|
with_input_for @user, :name, :file
|
|
assert_no_select 'input[placeholder]'
|
|
end
|
|
end
|
|
end
|