python3Packages.hg-evolve: add a basic smoke test

This commit is contained in:
Luke Granger-Brown 2021-05-31 17:59:01 +00:00 committed by Jonathan Ringer
parent aa4cb4f6c7
commit 305f0d8ab8

View File

@ -1,7 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, mercurial
}:
buildPythonPackage rec {
@ -13,7 +13,42 @@ buildPythonPackage rec {
sha256 = "ba819732409d39ddd4ff2fc507dc921408bf30535d2d78313637b29eeac98860";
};
doCheck = false;
checkInputs = [
mercurial
];
checkPhase = ''
runHook preCheck
export TESTTMP=$(mktemp -d)
export HOME=$TESTTMP
cat <<EOF >$HOME/.hgrc
[extensions]
evolve =
topic =
EOF
# Shipped tests use the mercurial testing framework, and produce inconsistent results.
# Do a quick smoke-test to see if things do what we expect.
hg init $TESTTMP/repo
pushd $TESTTMP/repo
touch a
hg add a
hg commit -m "init a"
hg topic something
touch b
hg add b
hg commit -m "init b"
echo hi > b
hg amend
hg obslog
popd
runHook postCheck
'';
meta = with lib; {
description = "Enables the changeset evolution feature of Mercurial core";