/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: Aaron Bentley
  • Date: 2008-04-03 00:19:05 UTC
  • mfrom: (3298.3.4 as_revision_id)
  • mto: This revision was merged to the branch mainline in revision 3328.
  • Revision ID: aaron@aaronbentley.com-20080403001905-vp1z7zjd9o27zfce
MergeĀ fromĀ as_revision_id

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(