summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-03-20 22:10:31 -0700
committerJunio C Hamano <gitster@pobox.com>2011-03-20 22:10:31 -0700
commiteec8a512bc957efac656921a5aeeaef23bd9f729 (patch)
treeab7d04f80e068d3c8689a16a97dcb99b0b2f7710 /t
parenta8e04ddf6e3fc444469e6f0f2f4690c04c0290ab (diff)
parent48d9e6ae4bcb6fd08562595aed47bef7326ec144 (diff)
downloadgit-eec8a512bc957efac656921a5aeeaef23bd9f729.tar.gz
Merge branch 'mo/perl-bidi-pipe-envfix' into maint
* mo/perl-bidi-pipe-envfix: perl: command_bidi_pipe() method should set-up git environmens
Diffstat (limited to 't')
-rwxr-xr-xt/t9700/test.pl10
1 files changed, 10 insertions, 0 deletions
diff --git a/t/t9700/test.pl b/t/t9700/test.pl
index c15ca2d647..13ba96e21a 100755
--- a/t/t9700/test.pl
+++ b/t/t9700/test.pl
@@ -113,6 +113,16 @@ like($last_commit, qr/^[0-9a-fA-F]{40}$/, 'rev-parse returned hash');
my $dir_commit = $r2->command_oneline('log', '-n1', '--pretty=format:%H', '.');
isnt($last_commit, $dir_commit, 'log . does not show last commit');
+# commands outside working tree
+chdir($abs_repo_dir . '/..');
+my $r3 = Git->repository(Directory => $abs_repo_dir);
+my $tmpfile3 = "$abs_repo_dir/file3.tmp";
+open TEMPFILE3, "+>$tmpfile3" or die "Can't open $tmpfile3: $!";
+is($r3->cat_blob($file1hash, \*TEMPFILE3), 15, "cat_blob(outside): size");
+close TEMPFILE3;
+unlink $tmpfile3;
+chdir($abs_repo_dir);
+
printf "1..%d\n", Test::More->builder->current_test;
my $is_passing = eval { Test::More->is_passing };