~ubuntu-branches/ubuntu/saucy/python-fixtures/saucy-proposed

« back to all changes in this revision

Viewing changes to debian/control

  • Committer: Bazaar Package Importer
  • Author(s): Robert Collins
  • Date: 2011-06-23 20:40:06 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110623204006-meclc7muiy92tv0b
* New upstream release.
* Runtime dependency on testtools due to upstream change.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
Build-Depends: debhelper (>= 5.0.38), cdbs (>= 0.4.49),
6
6
 python-all-dev (>= 2.3.5-11)
7
7
Build-Depends-Indep: python-docutils, python-support (>= 0.5.3),
8
 
  python-testtools (>= 0.9.4)
 
8
  python-testtools (>= 0.9.11)
9
9
Standards-Version: 3.8.3
10
10
 
11
11
Package: python-fixtures
12
12
Architecture: all
13
 
Depends: ${python:Depends}, ${misc:Depends}
 
13
Depends: python-testtools (>= 0.9.11), ${python:Depends}, ${misc:Depends}
14
14
Description: PyUnit extension for defining test fixtures outside of test cases
15
15
 A PyUnit extension for defining test fixtures outside of test cases. Each
16
16
 fixture encapsulates creating, reusing and freeing some state - be that a 
17
17
 temporary directory on disk, SQL server connection, or just a particular
18
 
 object graph.
 
18
 object graph. This is extremely useful for testing and general resource
 
19
 management.
19
20
 .
20
21
 Fixtures ships with the base class, unittest glue and a number of precanned
21
22
 concrete fixtures.