updated test to use C::E::Test
[catagits/Catalyst-Runtime.git] / t / 14connection.t
index 85a3445..54ead9d 100644 (file)
@@ -1,9 +1,9 @@
 package TestApp;
 
-use Catalyst;
+use Catalyst qw[-Engine=Test];
 
 __PACKAGE__->action(
-    host => sub {
+    hostname => sub {
         my ( $self, $c ) = @_;
         $c->res->output( $c->req->hostname );
     },