~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_workingtree/test_commit.py

  • Committer: Jelmer Vernooij
  • Date: 2011-04-09 19:25:42 UTC
  • mto: (5777.5.1 inventoryworkingtree)
  • mto: This revision was merged to the branch mainline in revision 5781.
  • Revision ID: jelmer@samba.org-20110409192542-8bbedp36s7nj928e
Split InventoryTree out of Tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# along with this program; if not, write to the Free Software
16
16
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
17
 
18
 
from cStringIO import StringIO
19
18
import os
20
19
 
21
20
from bzrlib import (
27
26
    osutils,
28
27
    revision as _mod_revision,
29
28
    ui,
30
 
    uncommit,
31
 
    workingtree,
32
29
    )
33
 
from bzrlib.errors import (NotBranchError, NotVersionedError,
34
 
                           UnsupportedOperation)
35
 
from bzrlib.osutils import pathjoin, getcwd
36
 
from bzrlib.tests import TestCase
37
30
from bzrlib.tests.per_workingtree import TestCaseWithWorkingTree
38
 
from bzrlib.trace import mutter
39
 
from bzrlib.workingtree import (TreeEntry, TreeDirectory, TreeFile, TreeLink,
40
 
                                WorkingTree)
41
31
from bzrlib.tests.testui import ProgressRecordingUIFactory
42
32
 
43
33