~bzr/ubuntu/hardy/bzr/bzr-ppa

« back to all changes in this revision

Viewing changes to bzrlib/tests/__init__.py

  • Committer: Max Bowsher
  • Date: 2011-07-17 23:28:38 UTC
  • mfrom: (76.4.18 lucid)
  • mto: This revision was merged to the branch mainline in revision 167.
  • Revision ID: _@maxb.eu-20110717232838-gpnotk0m40tikqvw
Tags: 2.3.4-0~bazaar1~karmic1
MergeĀ 2.3.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1450
1450
        else:
1451
1451
            self.assertEqual(expected_docstring, obj.__doc__)
1452
1452
 
1453
 
    @symbol_versioning.deprecated_method(symbol_versioning.deprecated_in((2, 4)))
1454
1453
    def failUnlessExists(self, path):
1455
1454
        return self.assertPathExists(path)
1456
1455
 
1463
1462
            self.assertTrue(osutils.lexists(path),
1464
1463
                path + " does not exist")
1465
1464
 
1466
 
    @symbol_versioning.deprecated_method(symbol_versioning.deprecated_in((2, 4)))
1467
1465
    def failIfExists(self, path):
1468
1466
        return self.assertPathDoesNotExist(path)
1469
1467