python-test-framework
python-test-framework copied to clipboard
an `it` should not require assertions to be carried out
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.