Ad
  • Default User Avatar

    Ruby random tests:

    Expected: nil, instead got: 0

    nil may be a good choice, but it should be specified in the description and have a corresponding fixed test.

  • Custom User Avatar

    Will you be republishing this kata?

    Otherwise, I'd like to steal the idea and publish it myself. The premise certainly is interesting.

  • Custom User Avatar

    What do you mean by CORRECT?
    Why this

    <html>
        <head>
        </head>
        <body>
            <div>
                <p>Some text here</p>
                <input type="text">
            </div>
        </body>
    </html>
    

    not this?

    <html>
        <head>
        </head>
        <body>
            <div>
                <p>
                    Some text here
                </p>
                <input type="text">
            </div>
        </body>
    </html>
    

    or this?

    <html>
        <head></head>
        <body>
            <div>
                <p>Some text here</p>
                <input type="text">
            </div>
        </body>
    </html>
    

    How to format documents like this?

    <a>  left: <input><br><p>te<span>s</span>t</p>. new line
      line new...   </a>
    

    Do we need to care about spaces in tags? like

    <input         text =   "text"      value="0" >
    

    Are all inputs valid HTML 5, HTML 4.01 or some malformed documents?

    Do we need to care about tags like pre?

  • Custom User Avatar

    Random Tests are not working