X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Faggregate%2Funit_core_script_fastcgi.t;h=5f0b5dc8bbab462b512680f0dd42b28f3ada9a1f;hb=d44d2d8fc4e14e827edd55383a801f81c7ae87cf;hp=b5d3ea49e236e0b033bedfc8657d7468cd3b4caa;hpb=e1d59dc47052af927345195b14f9163f6dffd591;p=catagits%2FCatalyst-Runtime.git diff --git a/t/aggregate/unit_core_script_fastcgi.t b/t/aggregate/unit_core_script_fastcgi.t index b5d3ea4..5f0b5dc 100644 --- a/t/aggregate/unit_core_script_fastcgi.t +++ b/t/aggregate/unit_core_script_fastcgi.t @@ -39,6 +39,10 @@ testOption( [ qw/-e/ ], [undef, opthash(keep_stderr => 1)] ); testOption( [ qw/--nproc 6/ ], [undef, opthash(nproc => 6)] ); testOption( [ qw/--n 6/ ], [undef, opthash(nproc => 6)] ); +# title +testOption( [ qw/--title foo/ ], [undef, opthash(title => 'foo')] ); +testOption( [ qw/-t foo/ ], [undef, opthash(title => 'foo')] ); + done_testing; sub testOption { @@ -62,6 +66,7 @@ sub opthash { detach => undef, nproc => undef, manager => undef, + title => undef, @_, }; }