I have a FastCGI Perl web app (written using CGI::Fast, but that should not matter), that I'd like to test in FastCGI mode.
What Perl module can I use to run FastCGI application (the module should install from CPAN, best if it didn't use extra libraries), so that can I point web browser e.g. to http://localhost:5000
to check if it work correctly?
Better, is there some Test::* module which allow to automatically test FastCGI applications, as FastCGI applications?
Added 06-07-2010:
It looks like there is no standalone FastCGI server in Perl; or at least I didn't found one. The FCGI / FastCGI related modules on CPAN that I have found are about writing FastCGI application, or connecting to existing FastCGI server.