sapling/tests/test-committer
Andrew Thompson f0d3e098fb Add tests/test-committer
This checks to see if the EMAIL environment variable is being used for commit.
2006-04-20 16:33:49 +02:00

13 lines
163 B
Bash
Executable File

#!/bin/sh
unset HGUSER
EMAIL="My Name <myname@example.com>"
export EMAIL
hg init test
cd test
touch asdf
hg add asdf
hg commit -d '1000000 0' -m commit-1
hg tip