python-test-framework icon indicating copy to clipboard operation
python-test-framework copied to clipboard

an `it` should not require assertions to be carried out

Open namedots opened this issue 9 months ago • 0 comments

this should be valid, and should be considered a success:

import codewars_test as test

@test.it("")
def _():
    pass

and perhaps by extension, multiple successful assertions should only result in one PASSED message. or in other words, an it should pass unless it has failed, making a successful assertion have no output.

namedots avatar Mar 01 '25 00:03 namedots