108
108
def assertRevisionInRepository(self, repo_path, revid):
109
109
"""Check that a revision is in a repository, disregarding stacking."""
111
111
self.assertTrue(repo.has_revision(revid))
113
113
def assertRevisionNotInRepository(self, repo_path, revid):
114
114
"""Check that a revision is not in a repository, disregarding stacking."""
116
116
self.assertFalse(repo.has_revision(revid))
118
118
def test_get_graph_stacked(self):