~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Alexander Belchenko
  • Date: 2007-11-19 22:54:30 UTC
  • mfrom: (3006 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3008.
  • Revision ID: bialix@ukr.net-20071119225430-x0ewosrsagis0yno
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',