364
364
def assertRevisionInRepository(self, repo_path, revid):
365
365
"""Check that a revision is in a repo, disregarding stacking."""
367
367
self.assertTrue(repo.has_revision(revid))
369
369
def assertRevisionNotInRepository(self, repo_path, revid):
370
370
"""Check that a revision is not in a repo, disregarding stacking."""
372
372
self.assertFalse(repo.has_revision(revid))
374
374
def assertRevisionsInBranchRepository(self, revid_list, branch_path):