~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_branch/test_revision_id_to_revno.py

(jelmer) Several more fixes to allow running bzr.dev against bzr-svn (Jelmer
 Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
"""Tests for Branch.revision_id_to_revno()"""
18
18
 
19
19
from bzrlib import errors
 
20
from bzrlib.tests import TestNotApplicable
20
21
 
21
22
from bzrlib.tests.per_branch import TestCaseWithBranch
22
23
 
41
42
 
42
43
    def test_mainline_ghost(self):
43
44
        tree = self.make_branch_and_tree('tree1')
 
45
        if not tree.branch.repository._format.supports_ghosts:
 
46
            raise TestNotApplicable("repository format does not support ghosts")
44
47
        tree.set_parent_ids(["spooky"], allow_leftmost_as_ghost=True)
45
48
        tree.add('')
46
49
        tree.commit('msg1', rev_id='rev1')