]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/git.t
git: add support for qx wrapper
[public-inbox.git] / t / git.t
diff --git a/t/git.t b/t/git.t
index 0f3dbae3fec4ca768e2f93c147cd6e12e97dfd2c..d7b20d0deebf4567acd22d57a2c3521c1da3c249 100644 (file)
--- a/t/git.t
+++ b/t/git.t
@@ -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();