tests/hghaveaddon.py
author Pulkit Goyal <7895pulkit@gmail.com>
Fri, 23 Mar 2018 18:58:19 +0530
changeset 3626 760210aa0d78
parent 2959 ef361938dfa1
permissions -rw-r--r--
tests: add tests of content+parent change creating phase-divergence This patch adds tests which shows handling of phase divergence cases by `hg evolve` command which involved content+parent change. The conflicts case is not handled and will be fixed in upcoming patches.

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