#unittest

[ follow ]
#python
fromEuroPython Society
5 months ago
Software development

Recognising Michael Foord as an Honorary EuroPython Society Fellow

Michael Foord was posthumously named an Honorary EuroPython Society Fellow for his technical contributions, community leadership, and enduring kindness.
fromLunarcowboy
8 months ago
Software development

Introducing unittest-fixtures

unittest-fixtures provides decorators to define and attach fixture functions to unittest.TestCase methods, enabling reusable, parameterized fixtures.
Python
fromRealpython
3 days ago

Testing Your Code With Python's unittest - Real Python

The unittest package in Python provides a framework for writing automated tests with features like test cases, fixtures, and test suites.
Python
fromRealpython
3 days ago

Testing Your Code With Python's unittest Quiz - Real Python

The quiz tests understanding of Python's unittest framework through 9 questions.
fromLoopwerk
2 months ago

Django's test runner is underrated

Readable failures. When something breaks, I want to understand why in seconds, not minutes. Predictable setup. I want to know exactly what state my tests are running against. Minimal magic. The less indirection between my test code and what's actually happening, the better. Easy onboarding. New team members should be able to write tests on day one without learning a new paradigm.
Web frameworks
[ Load more ]