~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

Merge bzr.dev into cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
"""Tests of the 'bzr pack' command."""
19
19
import os
20
20
 
21
 
from bzrlib.tests.blackbox import ExternalBase
22
 
from bzrlib.workingtree import WorkingTree
23
 
 
24
 
 
25
 
class TestPack(ExternalBase):
 
21
from bzrlib import tests
 
22
 
 
23
 
 
24
class TestPack(tests.TestCaseWithTransport):
26
25
 
27
26
    def _make_versioned_file(self, path, line_prefix='line', total_lines=10):
28
27
        self._make_file(path, line_prefix, total_lines, versioned=True)