# File test/test_request.rb, line 282
    def test_parse_line_without_path
      pio = PseudoIO.new
      pio << "GET \r\n"

      assert_exception(Rucy::ParseError) {
        @request.parse_line(pio)
      }
    end