tests/test-check-interfaces.py
changeset 35936 f8f034344b39
parent 35935 00b9e26d727b
child 35938 80a2b8ae42a1
equal deleted inserted replaced
35935:00b9e26d727b 35936:f8f034344b39
    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', False,
    72     checkobject(testingsshpeer(ui, 'ssh://localhost/foo', None, None, None,
    73                                (None, None, None, None)))
    73                                None))
    74     checkobject(bundlerepo.bundlepeer(dummyrepo()))
    74     checkobject(bundlerepo.bundlepeer(dummyrepo()))
    75     checkobject(statichttprepo.statichttppeer(dummyrepo()))
    75     checkobject(statichttprepo.statichttppeer(dummyrepo()))
    76     checkobject(unionrepo.unionpeer(dummyrepo()))
    76     checkobject(unionrepo.unionpeer(dummyrepo()))
    77 
    77 
    78 main()
    78 main()