tests/test-check-interfaces.py
changeset 35932 31449baf0936
parent 34307 afcbc6f64d27
child 35935 00b9e26d727b
equal deleted inserted replaced
35931:b202d360d2a4 35932:31449baf0936
    67     ui = uimod.ui()
    67     ui = uimod.ui()
    68 
    68 
    69     checkobject(badpeer())
    69     checkobject(badpeer())
    70     checkobject(httppeer.httppeer(ui, 'http://localhost'))
    70     checkobject(httppeer.httppeer(ui, 'http://localhost'))
    71     checkobject(localrepo.localpeer(dummyrepo()))
    71     checkobject(localrepo.localpeer(dummyrepo()))
    72     checkobject(testingsshpeer(ui, 'ssh://localhost/foo'))
    72     checkobject(testingsshpeer(ui, 'ssh://localhost/foo', False, ()))
    73     checkobject(bundlerepo.bundlepeer(dummyrepo()))
    73     checkobject(bundlerepo.bundlepeer(dummyrepo()))
    74     checkobject(statichttprepo.statichttppeer(dummyrepo()))
    74     checkobject(statichttprepo.statichttppeer(dummyrepo()))
    75     checkobject(unionrepo.unionpeer(dummyrepo()))
    75     checkobject(unionrepo.unionpeer(dummyrepo()))
    76 
    76 
    77 main()
    77 main()