From: Richard Hartmann Date: Sun, 29 Nov 2015 20:58:57 +0000 (+0100) Subject: Merge pull request #149 from dottedmag/fix-test-git-22 X-Git-Url: https://git.madduck.net/code/vcsh.git/commitdiff_plain/59c4a2dc3b7f47d59a7e89bfae60140ac09177dc?hp=-c;pf=code Merge pull request #149 from dottedmag/fix-test-git-22 Fix tests under git-2.2 --- 59c4a2dc3b7f47d59a7e89bfae60140ac09177dc diff --combined t/100-init.t index f8cb5ef,b25499e..80a10c9 --- a/t/100-init.t +++ b/t/100-init.t @@@ -14,7 -14,7 +14,7 @@@ my $output = `./vcsh status` ok $output eq "", 'No repos set up yet.'; -$output = `./vcsh init test1`; +$output = `LC_ALL=C ./vcsh init test1`; ok $output eq "Initialized empty shared Git repository in " . $ENV{'HOME'} . "/.config/vcsh/repo.d/test1.git/\n"; @@@ -25,7 -25,6 +25,6 @@@ ok $output eq "test1:\n\n", 'Our new re chdir $ENV{"HOME"} . '/.config/vcsh/repo.d/test1.git/' or die $!; ok -f 'HEAD'; - ok -d 'branches'; ok -f 'config'; ok -f 'description'; ok -d 'hooks';