X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Faggregate%2Funit_core_script_fastcgi.t;fp=t%2Faggregate%2Funit_core_script_fastcgi.t;h=7201385bc392468e1daa0aa5ee09f880c257f245;hp=06300f57219f36b2fbda27e907c5ef4772fecc43;hb=182f8b1e3c426d62337e186c2409c555794152d7;hpb=3245a7701a8e15f08a6a881c58055dfd95c6cf33 diff --git a/t/aggregate/unit_core_script_fastcgi.t b/t/aggregate/unit_core_script_fastcgi.t index 06300f5..7201385 100644 --- a/t/aggregate/unit_core_script_fastcgi.t +++ b/t/aggregate/unit_core_script_fastcgi.t @@ -39,9 +39,8 @@ 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')] ); +# proc_title +testOption( [ qw/--proc_title foo/ ], [undef, opthash(proc_title => 'foo')] ); done_testing; @@ -64,7 +63,7 @@ sub testOption { sub opthash { return { (map { ($_ => undef) } qw(pidfile keep_stderr detach nproc manager)), - title => 'perl-fcgi-pm [TestAppToTestScripts]', + proc_title => 'perl-fcgi-pm [TestAppToTestScripts]', @_, }; }