python-fixtures 0.3.5-1ubuntu1 source package in Ubuntu

Changelog

python-fixtures (0.3.5-1ubuntu1) natty; urgency=low

  * New patch, 60_traceback-type-test, use types.TracebackType instead of
    testing sys.exc_info()[2].__class__ as we're not in an exception handling
    context.
 -- Loic Minier <email address hidden>   Tue, 21 Dec 2010 22:50:58 +0100

Upload details

Uploaded by:
Loïc Minier
Uploaded to:
Natty
Original maintainer:
Robert Collins
Architectures:
all
Section:
python
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Natty: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
python-fixtures_0.3.5.orig.tar.gz 20.4 KiB e6e1c55c46fdf84e411d0d75acc724f9f225b83492175c519987d4e3e2302ab0
python-fixtures_0.3.5-1ubuntu1.diff.gz 1.9 KiB 2e63801a4dc29902450aae45c557583a236eacce74356dd52d55e29a58185291
python-fixtures_0.3.5-1ubuntu1.dsc 1.2 KiB 3fd8cdf1f408ceb9f1c0cd6853c0ac03fb6dc86312660ee74b545cc07686dc41

Available diffs

View changes file

Binary packages built by this source

python-fixtures: PyUnit extension for defining test fixtures outside of test cases

 A PyUnit extension for defining test fixtures outside of test cases. Each
 fixture encapsulates creating, reusing and freeing some state - be that a
 temporary directory on disk, SQL server connection, or just a particular
 object graph. This is extremely useful for testing and general resource
 management.
 .
 Fixtures ships with the base class, unittest glue and a number of precanned
 concrete fixtures.