~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_selftest.py

  • Committer: John Arbash Meinel
  • Date: 2010-02-04 16:06:36 UTC
  • mfrom: (5007 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5023.
  • Revision ID: john@arbash-meinel.com-20100204160636-xqeuwz8bwt8bbts4
Merge bzr.dev 5007, resolve conflict, update NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2007, 2008, 2009 Canonical Ltd
 
1
# Copyright (C) 2005-2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
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):