diff --git a/tests/test-check-interfaces.py b/tests/test-check-interfaces.py --- a/tests/test-check-interfaces.py +++ b/tests/test-check-interfaces.py @@ -3,10 +3,13 @@ from __future__ import absolute_import, print_function from mercurial import ( + bundlerepo, httppeer, localrepo, sshpeer, + statichttprepo, ui as uimod, + unionrepo, ) def checkobject(o): @@ -67,5 +70,8 @@ checkobject(httppeer.httppeer(ui, 'http://localhost')) checkobject(localrepo.localpeer(dummyrepo())) checkobject(testingsshpeer(ui, 'ssh://localhost/foo')) + checkobject(bundlerepo.bundlepeer(dummyrepo())) + checkobject(statichttprepo.statichttppeer(dummyrepo())) + checkobject(unionrepo.unionpeer(dummyrepo())) main()