diff --git a/heptapod/testhelpers.py b/heptapod/testhelpers.py
index d826811033c833239df00b5123625d701f1b1ebe_aGVwdGFwb2QvdGVzdGhlbHBlcnMucHk=..745fe315d643f257d3366e64a505421877257480_aGVwdGFwb2QvdGVzdGhlbHBlcnMucHk= 100644
--- a/heptapod/testhelpers.py
+++ b/heptapod/testhelpers.py
@@ -138,3 +138,15 @@
         opts = dict(force=force, rev=revs)
         opts.update((phn, phn == phase_name) for phn in phases.cmdphasenames)
         cmdutil.findcmd('phase', commands.table)[1][0](repo.ui, repo, **opts)
+
+    def prune(self, revs, successors=(), bookmarks=()):
+        # the prune command expects to get all these arguments (it relies
+        # on the CLI defaults but doesn't have any at the function call level).
+        # They are unconditionally concatened to lists, hence must be lists.
+        # (as of Mercurial 5.3.1)
+        if isinstance(revs, (bytes, str)):
+            revs = [revs]
+        return self.command('prune', rev=revs,
+                            new=[],  # deprecated yet expected
+                            successor=list(successors),
+                            bookmark=list(bookmarks))
diff --git a/heptapod/tests/test_testhelpers.py b/heptapod/tests/test_testhelpers.py
index d826811033c833239df00b5123625d701f1b1ebe_aGVwdGFwb2QvdGVzdHMvdGVzdF90ZXN0aGVscGVycy5weQ==..745fe315d643f257d3366e64a505421877257480_aGVwdGFwb2QvdGVzdHMvdGVzdF90ZXN0aGVscGVycy5weQ== 100644
--- a/heptapod/tests/test_testhelpers.py
+++ b/heptapod/tests/test_testhelpers.py
@@ -150,3 +150,12 @@
 
     wrapper.set_phase('draft', ['.'], force=True)
     assert ctx.phase() == phases.draft
+
+
+def test_prune(tmpdir):
+    wrapper = LocalRepoWrapper.init(tmpdir,
+                                    config=dict(extensions=dict(evolve='')))
+    wrapper.write_commit('foo', content='Foo 0')
+    ctx = wrapper.write_commit('foo', content='Foo 1', return_ctx=True)
+    wrapper.prune('.')
+    assert ctx.obsolete()