tests/hghaveaddon.py
author Sushil khanchi <sushilkhanchi97@gmail.com>
Sat, 07 Dec 2019 03:27:50 +0530
branchstable
changeset 4993 e0b5ce458af5
parent 2959 ef361938dfa1
permissions -rw-r--r--
evolve: add tests for the case when resolution parent is ambiguous

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