# File lib/Borges/TestCase/HtmlBuilderTest.rb, line 191
  def test_input_type_name
    output = render do |r|
      r.input "type", "name"
    end

    assert_match(/<input/, output, "Is an input element")
    assert_match(/type="type"/, output, "Type is \"type\"")
    assert_match(/name="name"/, output, "Name is \"name\"")
  end