/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_plugins.py

  • Committer: Alexander Belchenko
  • Date: 2008-02-20 10:36:15 UTC
  • mfrom: (3228 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3231.
  • Revision ID: bialix@ukr.net-20080220103615-uxw9jc9m6l63ea27
merge bzr.dev; update patch for 1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
import bzrlib.plugins
32
32
import bzrlib.commands
33
33
import bzrlib.help
34
 
from bzrlib.symbol_versioning import one_two
 
34
from bzrlib.symbol_versioning import one_three
35
35
from bzrlib.tests import TestCase, TestCaseInTempDir
36
36
from bzrlib.osutils import pathjoin, abspath, normpath
37
37
 
384
384
        try:
385
385
            # this is normally done by load_plugins -> set_plugins_path
386
386
            bzrlib.plugins.__path__ = [zip_name]
387
 
            self.applyDeprecated(one_two,
 
387
            self.applyDeprecated(one_three,
388
388
                bzrlib.plugin.load_from_zip, zip_name)
389
389
            self.assertTrue(plugin_name in dir(bzrlib.plugins),
390
390
                            'Plugin is not loaded')