~toddy/bzr/bzr.i18n

« back to all changes in this revision

Viewing changes to bzrlib/tests/inventory_implementations/__init__.py

  • Committer: Tobias Toedter
  • Date: 2008-02-10 08:01:48 UTC
  • mfrom: (2438.1.783 +trunk)
  • Revision ID: t.toedter@gmx.net-20080210080148-bg5rh61oq2zk2xw3
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Tests for different inventory implementations"""
18
18
 
19
 
# NOTE: Don't import Inventory here, to make sure that we don't accidentally
20
 
# hardcode that when we should be using self.make_inventory
21
 
 
22
 
from bzrlib import (
23
 
        errors,
24
 
        )
25
 
 
26
 
from bzrlib.inventory import (
27
 
        InventoryDirectory,
28
 
        InventoryEntry,
29
 
        InventoryFile,
30
 
        InventoryLink,
31
 
        ROOT_ID,
32
 
        TreeReference,
33
 
        )
34
 
 
35
19
from bzrlib.tests import (
36
 
        TestCase,
37
20
        multiply_tests_from_modules,
38
21
        )
39
22