tests/bzr-definitions
author Yuya Nishihara <yuya@tcha.org>
Wed, 18 Feb 2015 22:53:53 +0900
changeset 24236 de14c3972c2f
parent 20117 aa9385f983fa
child 26066 89872688893f
permissions -rw-r--r--
sortdict: have update() accept either dict or iterable of key/value pairs Future patches will make the templater store a sorted dict in the _hybrid object. sortdict should be constructed from a sorted list.

# this file holds the definitions that are used in various bzr tests

"$TESTDIR/hghave" bzr || exit 80

TERM=dumb; export TERM
echo '[extensions]' >> $HGRCPATH
echo 'convert = ' >> $HGRCPATH

glog()
{
    hg log -G --template '{rev}@{branch} "{desc|firstline}" files: {files}\n' "$@"
}

manifest()
{
    echo "% manifest of $2"
    hg -R $1 manifest -v -r $2
}