19
19
"""Black-box tests for running bzr outside of a working tree."""
23
24
from bzrlib.tests import ChrootedTestCase
26
28
class TestOutsideWT(ChrootedTestCase):
27
29
"""Test that bzr gives proper errors outside of a working tree."""
32
34
out, err = self.run_bzr('log', retcode=3)
34
36
self.assertEqual(u'bzr: ERROR: Not a branch: %s/\n' % (cwd,),