~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to zap.py

  • Committer: Aaron Bentley
  • Date: 2006-12-12 02:21:50 UTC
  • Revision ID: aaron.bentley@utoronto.ca-20061212022150-7lqyw46pbb3jhkak
Clean up patch command (support http urls again)

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