3 # Copyright (c) 2005 Junio C Hamano
6 test_description
='git mailinfo and git mailsplit test'
10 say
"git-mailinfo does not work yet; skipping tests."
14 test_expect_success
'split sample box' \
15 'git mailsplit -o. ../t5100/sample.mbox >last &&
17 echo total is $last &&
20 for mail in `echo 00*`
22 test_expect_success
"mailinfo $mail" \
23 "git mailinfo -u msg$mail patch$mail <$mail >info$mail &&
25 diff ../t5100/msg$mail msg$mail &&
27 diff ../t5100/patch$mail patch$mail &&
29 diff ../t5100/info$mail info$mail"