Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-07-31 23:51:05 +0300
committerJunio C Hamano <gitster@pobox.com>2017-07-31 23:51:05 +0300
commitc6767f45e3e013d34caa63797ef30f6c22c9dd34 (patch)
tree991676cd3d598144ce62b2444fbe79ef400d9c53 /t
parent133578a020ac5449d36cea741cfc1e7acd7f93a8 (diff)
parent3f9c637ec7c28dc9de5937b45334ee11875e9fe8 (diff)
Merge branch 'pw/unquote-path-in-git-pm' into maint
Code refactoring. * pw/unquote-path-in-git-pm: t9700: add tests for Git::unquote_path() Git::unquote_path(): throw an exception on bad path Git::unquote_path(): handle '\a' add -i: move unquote_path() to Git.pm
Diffstat (limited to 't')
-rwxr-xr-xt/t9700/test.pl7
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t9700/test.pl b/t/t9700/test.pl
index 1b75c91965..34cd01366f 100755
--- a/t/t9700/test.pl
+++ b/t/t9700/test.pl
@@ -133,6 +133,13 @@ close TEMPFILE3;
unlink $tmpfile3;
chdir($abs_repo_dir);
+# unquoting paths
+is(Git::unquote_path('abc'), 'abc', 'unquote unquoted path');
+is(Git::unquote_path('"abc def"'), 'abc def', 'unquote simple quoted path');
+is(Git::unquote_path('"abc\"\\\\ \a\b\t\n\v\f\r\001\040"'),
+ "abc\"\\ \x07\x08\x09\x0a\x0b\x0c\x0d\x01 ",
+ 'unquote escape sequences');
+
printf "1..%d\n", Test::More->builder->current_test;
my $is_passing = eval { Test::More->is_passing };