~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_errors.py

  • Committer: Andrew Bennetts
  • Date: 2010-10-13 00:26:41 UTC
  • mto: This revision was merged to the branch mainline in revision 5498.
  • Revision ID: andrew.bennetts@canonical.com-20101013002641-9tlh9k89mlj1666m
Keep docs-plain working.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006-2011 Canonical Ltd
 
1
# Copyright (C) 2006-2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
25
25
    bzrdir,
26
26
    errors,
27
27
    osutils,
 
28
    symbol_versioning,
28
29
    urlutils,
29
30
    )
30
 
from bzrlib.tests import (
31
 
    TestCase,
32
 
    TestCaseWithTransport,
33
 
    TestSkipped,
34
 
    )
 
31
from bzrlib.tests import TestCase, TestCaseWithTransport, TestSkipped
35
32
 
36
33
 
37
34
class TestErrors(TestCaseWithTransport):
675
672
        err = errors.NotBranchError('path', bzrdir=bzrdir)
676
673
        self.assertEqual('Not a branch: "path".', str(err))
677
674
 
678
 
    def test_not_branch_bzrdir_with_recursive_not_branch_error(self):
679
 
        class FakeBzrDir(object):
680
 
            def open_repository(self):
681
 
                # str() on the NotBranchError will trigger a call to this,
682
 
                # which in turn will another, identical NotBranchError.
683
 
                raise errors.NotBranchError('path', bzrdir=FakeBzrDir())
684
 
        err = errors.NotBranchError('path', bzrdir=FakeBzrDir())
685
 
        self.assertEqual('Not a branch: "path".', str(err))
686
 
 
687
675
    def test_not_branch_laziness(self):
688
676
        real_bzrdir = self.make_bzrdir('path')
689
677
        class FakeBzrDir(object):