~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Vincent Ladeuil
  • Date: 2007-11-14 08:20:59 UTC
  • mfrom: (2990 +trunk)
  • mto: (2990.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 2991.
  • Revision ID: v.ladeuil+lp@free.fr-20071114082059-bx03o3laiqfnyleb
merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
262
262
            self.build_tree(paths[1:])
263
263
        except UnicodeError:
264
264
            raise tests.TestSkipped('filesystem does not support unicode.')
265
 
        if tree.path2id('') is None:
 
265
        if tree.get_root_id() is None:
266
266
            # Some trees do not have a root yet.
267
267
            tree.add(paths, file_ids)
268
268
        else:
323
323
    result = TestSuite()
324
324
    test_tree_implementations = [
325
325
        'bzrlib.tests.tree_implementations.test_get_file_mtime',
 
326
        'bzrlib.tests.tree_implementations.test_get_root_id',
326
327
        'bzrlib.tests.tree_implementations.test_get_symlink_target',
327
328
        'bzrlib.tests.tree_implementations.test_inv',
328
329
        'bzrlib.tests.tree_implementations.test_list_files',