~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Vincent Ladeuil
  • Date: 2010-04-26 13:51:08 UTC
  • mto: (5184.2.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5185.
  • Revision ID: v.ladeuil+lp@free.fr-20100426135108-vwmfphc2xg1w058c
Random cleanups to catch up with copyright updates in trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2007 Canonical Ltd
 
1
# Copyright (C) 2007, 2009, 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
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)