2024-03-13
pytest is an awsome Python Test framework which starts over from a clean slate instead of following the xUnit pattern.
Instead of:
class YourTestSuite(unittest.TestCase): def setUp(self): self.some_stuff = YourThing() def test_delete(self): …
Found 1 articles.