/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_errors.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-04-01 00:36:13 UTC
  • mfrom: (2692.1.26 bug-124089)
  • Revision ID: pqm@pqm.ubuntu.com-20080401003613-w51tu4gd3yqogm8s
Add root_client_path parameter to SmartWSGIApp and
        SmartServerRequest. (Andrew Bennetts, #124089)

Show diffs side-by-side

added added

removed removed

Lines of Context:
446
446
            "Unable to create symlink u'\\xb5' on this platform",
447
447
            str(err))
448
448
 
 
449
    def test_invalid_url_join(self):
 
450
        """Test the formatting of InvalidURLJoin."""
 
451
        e = errors.InvalidURLJoin('Reason', 'base path', ('args',))
 
452
        self.assertEqual(
 
453
            "Invalid URL join request: Reason: 'base path' + ('args',)",
 
454
            str(e))
 
455
 
449
456
    def test_incorrect_url(self):
450
457
        err = errors.InvalidBugTrackerURL('foo', 'http://bug.com/')
451
458
        self.assertEquals(