# File lib/Borges/TestCase/HtmlBuilderTest.rb, line 201
  def test_input_type_name_value
    output = render do |r|
      r.input "type", "name", "value"
    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\"")
    assert_match(/value="value"/, output, "Value is \"value\"")
  end