On Thu, Dec 10, 2009 at 11:19 PM, Modulok <modu...@gmail.com> wrote:

> It seems like there are a lot of people on this list interested in
> getting more familiar with unit testing, but not a whole lot of
> non-trivial, python-specific examples being passed around.

> Case studies/tutorials anyone?

Unit testing has become common, accepted practice in open source
projects so real-world examples abound.

Python itself has extensive unit tests. To a large extent they
actually define the language and the libraries - Jython and IronPython
use the CPython test suite to validate their implementations. Download
the Python source to get a copy of the tests.

The Python unit tests largely predate the unittest module so they are
not necessarily good examples of unittest.

I suggest you pick an open source Python project that you use or like
and look at its test suite.

Kent
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to