tests/hghaveaddon.py
author Pulkit Goyal <7895pulkit@gmail.com>
Thu, 05 Oct 2017 19:30:22 +0530
changeset 3039 5b24ed4b3e9c
parent 2959 ef361938dfa1
permissions -rw-r--r--
tests: add test showing change of phase while changing topic on secret commit

import hghave

@hghave.check("docgraph-ext", "Extension to generate graph from repository")
def docgraph():
    try:
        import hgext.docgraph
        hgext.docgraph.cmdtable # trigger import
    except ImportError:
        try:
            import hgext3rd.docgraph
            hgext3rd.docgraph.cmdtable # trigger import
        except ImportError:
            return False
    return True