~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_exceptions.py

  • Committer: Jelmer Vernooij
  • Date: 2011-06-16 11:58:04 UTC
  • mto: This revision was merged to the branch mainline in revision 5987.
  • Revision ID: jelmer@samba.org-20110616115804-7tnqon61emrbdoxm
RemoveĀ unusedĀ Tree._get_ancestors.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
    )
31
31
from bzrlib.repofmt.groupcompress_repo import RepositoryFormat2a
32
32
 
33
 
 
34
 
class TestExceptionReporting(tests.TestCaseInTempDir):
 
33
from bzrlib.tests import TestCase
 
34
 
 
35
 
 
36
class TestExceptionReporting(TestCase):
35
37
 
36
38
    def test_exception_exitcode(self):
37
39
        # we must use a subprocess, because the normal in-memory mechanism
61
63
        self.assertEquals(out, "")
62
64
 
63
65
 
64
 
class TestOptParseBugHandling(tests.TestCase):
 
66
class TestOptParseBugHandling(TestCase):
65
67
    "Test that we handle http://bugs.python.org/issue2931"
66
68
 
67
69
    def test_nonascii_optparse(self):