~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to zap.py

  • Committer: Aaron Bentley
  • Date: 2007-06-12 22:09:44 UTC
  • mfrom: (540.1.2 bzrtools-0.17)
  • Revision ID: aaron.bentley@utoronto.ca-20070612220944-5zw4hlzp1ctq6mkl
Merge fixes from 0.17

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
from bzrlib.errors import NoWorkingTree, NotLocalUrl, NotBranchError
5
5
from bzrlib.workingtree import WorkingTree
6
6
 
7
 
from errors import (NotCheckout, UncommittedCheckout, ParentMissingRevisions, 
 
7
from errors import (NotCheckout, UncommittedCheckout, ParentMissingRevisions,
8
8
                    NoParent)
9
9
 
10
10
 
41
41
def test_suite():
42
42
    import os
43
43
    from unittest import makeSuite
44
 
    
 
44
 
45
45
    from bzrlib.bzrdir import BzrDir, BzrDirMetaFormat1
46
46
    from bzrlib.branch import BranchReferenceFormat
47
47
    from bzrlib.tests import TestCaseInTempDir