tests/hghaveaddon.py
author Sushil khanchi <sushilkhanchi97@gmail.com>
Wed, 27 Nov 2019 12:34:19 +0530
changeset 5016 64868b7dc112
parent 2959 ef361938dfa1
permissions -rw-r--r--
evolve: add logic to cover --continue case when relocating "divergent" Changes in test file demonstrate the added behaviour.

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