~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_inv.py

  • Committer: Martin Pool
  • Date: 2007-03-07 03:09:14 UTC
  • mto: (2321.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 2322.
  • Revision ID: mbp@sourcefrog.net-20070307030914-fb2gw9ae6lxcbbcd
Review cleanups: mostly updating or removing todo comments.

Show diffs side-by-side

added added

removed removed

Lines of Context:
184
184
            ], [(path, ie.file_id) for path, ie in inv.iter_entries_by_dir(
185
185
                specific_file_ids=('bye-id',))])
186
186
 
187
 
    def test_version(self):
188
 
        """Inventory remembers the text's version."""
189
 
        inv = Inventory()
190
 
        ie = inv.add_path('foo.txt', 'file')
191
 
        ## XXX
192
 
 
193
187
    def test_add_recursive(self):
194
188
        parent = InventoryDirectory('src-id', 'src', ROOT_ID)
195
189
        child = InventoryFile('hello-id', 'hello.c', 'src-id')