~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: John Arbash Meinel
  • Date: 2006-01-16 22:07:52 UTC
  • mto: (1185.50.47 bzr-jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1549.
  • Revision ID: john@arbash-meinel.com-20060116220752-f88bd067eb868bfb
Cleanup from Robert Collins.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005 by Canonical Ltd
 
1
# Copyright (C) 2006 by Canonical Ltd
2
2
# -*- coding: utf-8 -*-
3
3
 
4
4
# This program is free software; you can redistribute it and/or modify
16
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
17
 
18
18
 
19
 
"""\
20
 
Black-box tests for running bzr outside of a working tree.
21
 
"""
 
19
"""Black-box tests for running bzr outside of a working tree."""
22
20
 
23
21
import os
24
 
import sys
25
22
 
26
 
from bzrlib.branch import Branch
27
23
from bzrlib.tests import TestCaseInTempDir
28
24
 
29
25