tests/hghaveaddon.py
author Sushil khanchi <sushilkhanchi97@gmail.com>
Wed, 27 Nov 2019 22:52:08 +0530
changeset 5027 08be8a4d5196
parent 2959 ef361938dfa1
permissions -rw-r--r--
evolve: add test to show that --abort is working fine When resolving content-divergence where relocation of "divergent" changeset is also required, this test file make sure that --abort option is working fine.

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