X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Flei-up.t;h=fc3691562ceac95d0d478b09a5a43aaddf0d0458;hb=42e1fb419b74e0b5c9315dacdd08a0e0c91962e5;hp=c6f31c741c4c2275b62c5bd90f4799c3e9100741;hpb=059f92ef0d66677cce0b0d011748f7fcc1697a51;p=public-inbox.git diff --git a/t/lei-up.t b/t/lei-up.t index c6f31c74..fc369156 100644 --- a/t/lei-up.t +++ b/t/lei-up.t @@ -2,9 +2,9 @@ # Copyright all contributors # License: AGPL-3.0+ use strict; use v5.10.1; use PublicInbox::TestCommon; -my ($ro_home, $cfg_path) = setup_public_inboxes; use IO::Uncompress::Gunzip qw(gunzip $GunzipError); test_lei(sub { + my ($ro_home, $cfg_path) = setup_public_inboxes; my $s = eml_load('t/plack-qp.eml')->as_string; lei_ok [qw(import -q -F eml -)], undef, { 0 => \$s, %$lei_opt }; lei_ok qw(q z:0.. -f mboxcl2 -o), "$ENV{HOME}/a.mbox.gz"; @@ -34,6 +34,10 @@ test_lei(sub { open $fh, "$ENV{HOME}/b" or xbail "open: $!"; $uc = do { local $/; <$fh> }; is($uc, $exp, 'uncompressed both match'); + + lei_ok [ qw(up -q), "$ENV{HOME}/b", "--mua=touch $ENV{HOME}/c" ], + undef, { run_mode => 0 }; + ok(-f "$ENV{HOME}/c", '--mua works with single output'); }); done_testing;