Fix tests that were testing object internals instead of accessors.
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / FastCGI.pm
index bd272a1..e009dfa 100644 (file)
@@ -1,7 +1,8 @@
 package Catalyst::Engine::FastCGI;
 
-use strict;
-use base 'Catalyst::Engine::CGI';
+use Moose;
+extends 'Catalyst::Engine::CGI';
+
 eval "use FCGI";
 die "Unable to load the FCGI module, you may need to install it:\n$@\n" if $@;