tests/hghaveaddon.py
author Martin von Zweigbergk <martinvonz@google.com>
Fri, 15 Nov 2019 16:04:35 -0800
changeset 4964 bb2042ff6444
parent 2959 ef361938dfa1
permissions -rw-r--r--
tests: remove extra whitespace before patch in obslog output The indent() template function was fixed in https://phab.mercurial-scm.org/D7432 so now we have less trailing whitespace in obslog output. CORE-TEST-OUTPUT-UPDATE: fa246ada356b

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