I am doing TDD using Python and a module unittest. In NUnit you can Assert.Inconclusive("This test hasn't been written yet").
So far, I have not been able to find anything similar in Python to indicate that "these tests are just placeholders, I need to go back and actually put the code in them."
Is there a Pythonic pattern for this?
source
share