~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_bundle.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-11-08 11:35:49 UTC
  • mfrom: (5531.1.3 662509-ignore-empty)
  • Revision ID: pqm@pqm.ubuntu.com-20101108113549-e4mhhq2fe1i0etbf
(vila) Add an option to accept any output from commands in shell-like tests.
 (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2011 Canonical Ltd
 
1
# Copyright (C) 2005-2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
27
27
    inventory,
28
28
    merge,
29
29
    osutils,
 
30
    repository,
30
31
    revision as _mod_revision,
31
32
    tests,
32
33
    treebuilder,
34
35
from bzrlib.bundle import read_mergeable_from_url
35
36
from bzrlib.bundle.apply_bundle import install_bundle, merge_bundle
36
37
from bzrlib.bundle.bundle_data import BundleTree
 
38
from bzrlib.bzrdir import BzrDir
37
39
from bzrlib.directory_service import directories
38
40
from bzrlib.bundle.serializer import write_bundle, read_bundle, v09, v4
39
41
from bzrlib.bundle.serializer.v08 import BundleSerializerV08
40
42
from bzrlib.bundle.serializer.v09 import BundleSerializerV09
41
43
from bzrlib.bundle.serializer.v4 import BundleSerializerV4
 
44
from bzrlib.branch import Branch
42
45
from bzrlib.repofmt import knitrepo
43
46
from bzrlib.tests import (
44
47
    test_read_bundle,