X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Faggregate%2Funit_core_script_fastcgi.t;h=7201385bc392468e1daa0aa5ee09f880c257f245;hb=ef41ea15458d2d2beddee792deea598249df2852;hp=06300f57219f36b2fbda27e907c5ef4772fecc43;hpb=9c74923de2304b8c8f0a7a2faa0854ad9b4d3a92;p=catagits%2FCatalyst-Runtime.git 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]', @_, }; }