]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/git.t
view: adjust wording for reply-to-list configs
[public-inbox.git] / t / git.t
diff --git a/t/git.t b/t/git.t
index 19fbef157addd704f5c59081c23ad3fea201b2f2..d7b20d0deebf4567acd22d57a2c3521c1da3c249 100644 (file)
--- a/t/git.t
+++ b/t/git.t
@@ -4,7 +4,7 @@ use strict;
 use warnings;
 use Test::More;
 use File::Temp qw/tempdir/;
-my $dir = tempdir(CLEANUP => 1);
+my $dir = tempdir('pi-git-XXXXXX', TMPDIR => 1, CLEANUP => 1);
 use Cwd qw/getcwd/;
 
 use_ok 'PublicInbox::Git';
@@ -129,6 +129,14 @@ if (1) {
                local $/;
                is($all, <$fh>, 'entire read matches');
        };
+
+       my $ref = $gcf->qx(qw(cat-file blob), $buf);
+       is($all, $ref, 'qx read giant single string');
+
+       my @ref = $gcf->qx(qw(cat-file blob), $buf);
+       is($all, join('', @ref), 'qx returned array when wanted');
+       my $nl = scalar @ref;
+       ok($nl > 1, "qx returned array length of $nl");
 }
 
 done_testing();