tests/test-convert-authormap
changeset 12511 0fefeb4fff49
parent 12510 efcbff270317
child 12512 8d84166d34d7
--- a/tests/test-convert-authormap	Sun Sep 26 14:32:13 2010 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,37 +0,0 @@
-#!/bin/sh
-
-cat >> $HGRCPATH <<EOF
-[extensions]
-convert=
-EOF
-
-# Prepare orig repo
-hg init orig
-cd orig
-echo foo > foo
-HGUSER='user name' hg ci -qAm 'foo'
-cd ..
-
-# Explicit --authors
-cat > authormap.txt <<EOF
-user name = Long User Name
-
-# comment
-this line is ignored
-EOF
-
-hg convert --authors authormap.txt orig new
-echo $?
-cat new/.hg/authormap
-
-hg -Rnew log
-rm -rf new
-
-# Implicit .hg/authormap
-hg init new
-mv authormap.txt new/.hg/authormap
-
-hg convert orig new
-echo $?
-
-hg -Rnew log