##// END OF EJS Templates
convert: fix authormap handling of lines without '='...
convert: fix authormap handling of lines without '=' Unpacking the result from str.split raises ValueError, not IndexError, if the line does not contain a '='.

File last commit:

r7962:62154415 default
r7962:62154415 default
Show More
test-convert-authormap
36 lines | 485 B | text/plain | TextLexer
/ tests / test-convert-authormap
#!/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' -d '0 0'
cd ..
# Explicit --authors
cat > authormap.txt <<EOF
user name = Long User Name
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