~smoser/ubuntu/precise/python-fixtures/cloud-tools

« back to all changes in this revision

Viewing changes to PKG-INFO

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2013-09-10 11:08:25 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20130910110825-y7xk6ihhsryvptue
Tags: 0.3.14-0ubuntu1
New upstream release. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Metadata-Version: 1.1
2
2
Name: fixtures
3
 
Version: 0.3.12
 
3
Version: 0.3.14
4
4
Summary: Fixtures, reusable state for writing clean tests and more.
5
5
Home-page: https://launchpad.net/python-fixtures
6
6
Author: Robert Collins
181
181
          >>> import unittest
182
182
        
183
183
        Note that we use testtools TestCase here as we need to guarantee a
184
 
        TestCase.addCleanup method.
 
184
        TestCase.addCleanup method in this doctest. Unittest2 - Python2.7 and above -
 
185
        also have ``addCleanup``. testtools has it's own implementation of
 
186
        ``useFixture`` so there is no need to use ``fixtures.TestWithFixtures`` with
 
187
        ``testtools.TestCase``.
185
188
        
186
189
          >>> class NoddyTest(testtools.TestCase, fixtures.TestWithFixtures):
187
190
          ...     def test_example(self):
452
455
Classifier: Programming Language :: Python :: 3
453
456
Classifier: Topic :: Software Development :: Quality Assurance
454
457
Classifier: Topic :: Software Development :: Testing
 
458
Requires: testtools