X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Fqspawn.t;h=e37a05fd73a2cb01b015cf8b1c12c0a27a526d4e;hb=9253dc860de52360d3bc60710422783457143e3d;hp=8bc88e0e0469f439c78cb31482955ee64ace56b1;hpb=574cf9098d09c7c2e10c28cf577321161ddecd61;p=public-inbox.git diff --git a/t/qspawn.t b/t/qspawn.t index 8bc88e0e..e37a05fd 100644 --- a/t/qspawn.t +++ b/t/qspawn.t @@ -1,4 +1,4 @@ -# Copyright (C) 2016-2019 all contributors +# Copyright (C) 2016-2020 all contributors # License: AGPL-3.0+ use strict; use Test::More; @@ -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 ($) {