/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: Canonical.com Patch Queue Manager
  • Date: 2007-09-24 10:27:45 UTC
  • mfrom: (2851.1.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20070924102745-ohorpye5tifec1q3
Fix #141382 by comparing real paths and various OSX fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
241
241
        plugins = bzrlib.plugin.plugins()
242
242
        plugin = plugins['plugin']
243
243
        plugin_path = self.test_dir + '/plugin.py'
244
 
        self.assertEqual(plugin_path, normpath(plugin.path()))
 
244
        self.assertIsSameRealPath(plugin_path, normpath(plugin.path()))
245
245
 
246
246
    def test_no_test_suite_gives_None_for_test_suite(self):
247
247
        self.setup_plugin()