--- a/tests/test-convert-git Fri May 01 12:35:13 2009 +0200
+++ b/tests/test-convert-git Fri May 01 11:32:19 2009 +0200
@@ -148,4 +148,22 @@
cd git-repo3-hg
hg up -C
python -c 'print len(file("b", "rb").read())'
+cd ..
+echo
+echo '% test author vs committer'
+mkdir git-repo4
+cd git-repo4
+git init-db >/dev/null 2>/dev/null
+echo >> foo
+git add foo
+commit -a -m addfoo
+echo >> foo
+GIT_AUTHOR_NAME="nottest"
+commit -a -m addfoo2
+cd ..
+
+echo '% convert author committer'
+hg convert git-repo4 git-repo4-hg
+cd git-repo4-hg
+hg log -v