tests/hghaveaddon.py
author Boris Feld <boris.feld@octobus.net>
Fri, 25 May 2018 11:48:19 +0200
changeset 3893 aab2afc2bd82
parent 2959 ef361938dfa1
permissions -rw-r--r--
tests: add a content-divergent obshistory test

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