about summary refs log tree commit homepage
path: root/t/qspawn.t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-12-29 12:51:18 +0000
committerEric Wong <e@80x24.org>2019-12-30 00:06:23 +0000
commit267371b1273b518215939e817e53733584b68af7 (patch)
tree565515b689baf8e7384a384fd114d8d3f44546a2 /t/qspawn.t
parent0a65fd278cb5b4e308fc2535753a3f1a5e78cbf4 (diff)
downloadpublic-inbox-267371b1273b518215939e817e53733584b68af7.tar.gz
We can save callers the trouble of {-hold} and {-dev_null}
refs as well as the trouble of calling fileno().
Diffstat (limited to 't/qspawn.t')
-rw-r--r--t/qspawn.t5
1 files changed, 5 insertions, 0 deletions
diff --git a/t/qspawn.t b/t/qspawn.t
index 8bc88e0e..ab3764b8 100644
--- a/t/qspawn.t
+++ b/t/qspawn.t
@@ -10,6 +10,11 @@ use_ok 'PublicInbox::Qspawn';
         my $res;
         $qsp->psgi_qx({}, undef, sub { $res = ${$_[0]} });
         is($res, "err\nout\n", 'captured stderr and stdout');
+
+        $res = undef;
+        $qsp = PublicInbox::Qspawn->new($cmd, {}, { 2 => \*STDOUT });
+        $qsp->psgi_qx({}, undef, sub { $res = ${$_[0]} });
+        is($res, "err\nout\n", 'captured stderr and stdout');
 }
 
 sub finish_err ($) {