diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-03-04 10:14:39 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-03-04 10:14:39 -0800 |
commit | 2e7b6afcba4993a1a424725afaa508b2641fb416 (patch) | |
tree | 89fd3d22a3633c69a870d4fa4da22e01afdec1e7 /t | |
parent | documentation: fix some typos (diff) | |
parent | t9700: fix test for perl older than 5.14 (diff) | |
download | tgif-2e7b6afcba4993a1a424725afaa508b2641fb416.tar.xz |
Merge branch 'js/mingw-tests'
* js/mingw-tests:
t9700: fix test for perl older than 5.14
Diffstat (limited to 't')
-rwxr-xr-x | t/t9700/test.pl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/t/t9700/test.pl b/t/t9700/test.pl index 7e8c40b97b..1b75c91965 100755 --- a/t/t9700/test.pl +++ b/t/t9700/test.pl @@ -17,6 +17,12 @@ BEGIN { use Cwd; use File::Basename; +sub adjust_dirsep { + my $path = shift; + $path =~ s{\\}{/}g; + return $path; +} + BEGIN { use_ok('Git') } # set up @@ -33,7 +39,7 @@ is($r->config_int("test.int"), 2048, "config_int: integer"); is($r->config_int("test.nonexistent"), undef, "config_int: nonexistent"); ok($r->config_bool("test.booltrue"), "config_bool: true"); ok(!$r->config_bool("test.boolfalse"), "config_bool: false"); -is($r->config_path("test.path") =~ s/\\/\//gr, $r->config("test.pathexpanded"), +is(adjust_dirsep($r->config_path("test.path")), $r->config("test.pathexpanded"), "config_path: ~/foo expansion"); is_deeply([$r->config_path("test.pathmulti")], ["foo", "bar"], "config_path: multiple values"); |