~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_selftest.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-02-04 14:32:59 UTC
  • mfrom: (5005.1.1 integration2)
  • Revision ID: pqm@pqm.ubuntu.com-20100204143259-91x2d08a31yfeqnm
(vila) Avoid infinite recursion when probing for apport

Show diffs side-by-side

added added

removed removed

Lines of Context:
2400
2400
 
2401
2401
 
2402
2402
simple_thunk_feature = tests._CompatabilityThunkFeature(
2403
 
    'bzrlib.tests', 'UnicodeFilename',
2404
 
    'bzrlib.tests.test_selftest.simple_thunk_feature',
2405
 
    deprecated_in((2,1,0)))
 
2403
    deprecated_in((2, 1, 0)),
 
2404
    'bzrlib.tests.test_selftest',
 
2405
    'simple_thunk_feature','UnicodeFilename',
 
2406
    replacement_module='bzrlib.tests'
 
2407
    )
2406
2408
 
2407
2409
class Test_CompatibilityFeature(tests.TestCase):
2408
2410
 
2413
2415
            simple_thunk_feature.available)
2414
2416
        self.assertEqual(tests.UnicodeFilename.available(), res)
2415
2417
 
2416
 
        
 
2418
 
2417
2419
class TestModuleAvailableFeature(tests.TestCase):
2418
2420
 
2419
2421
    def test_available_module(self):