/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: Robert Collins
  • Date: 2010-05-06 11:08:10 UTC
  • mto: This revision was merged to the branch mainline in revision 5223.
  • Revision ID: robertc@robertcollins.net-20100506110810-h3j07fh5gmw54s25
Cleaner matcher matching revised unlocking protocol.

Show diffs side-by-side

added added

removed removed

Lines of Context:
703
703
            str(e), 'Unprintable exception ErrorWithBadFormat')
704
704
 
705
705
    def test_cannot_bind_address(self):
706
 
        # see <https://bugs.launchpad.net/bzr/+bug/286871>
 
706
        # see <https://bugs.edge.launchpad.net/bzr/+bug/286871>
707
707
        e = errors.CannotBindAddress('example.com', 22,
708
708
            socket.error(13, 'Permission denied'))
709
709
        self.assertContainsRe(str(e),
713
713
        e = errors.FileTimestampUnavailable("/path/foo")
714
714
        self.assertEquals("The filestamp for /path/foo is not available.",
715
715
            str(e))
716
 
            
717
 
    def test_transform_rename_failed(self):
718
 
        e = errors.TransformRenameFailed(u"from", u"to", "readonly file", 2)
719
 
        self.assertEquals(
720
 
            u"Failed to rename from to to: readonly file",
721
 
            str(e))