cleanups; call to config() was unneeded
Maurice Aubrey [Mon, 28 May 2007 21:32:21 +0000 (21:32 +0000)]
t/06_finalize.t

index e4bdd40..b668f77 100644 (file)
@@ -6,25 +6,24 @@ use warnings;
 use Test::More tests => 2;
 
 {
-  package MyTestPlugin;
-  use strict;
+  package TestPlugin;
 
   my $finalized = 0;
   sub finalize_session { $finalized = 1 }
 
   sub finalize { die "already finalized_session()" if $finalized }
 
-  # Structure inheritance so MyTestPlugin->finalize() is called *after* 
+  # Structure inheritance so TestPlugin->finalize() is called *after* 
   # Catalyst::Plugin::Session->finalize()
   package TestApp;
 
-  use Catalyst qw/ Session Session::Store::Dummy Session::State::Cookie +MyTestPlugin /;
-  __PACKAGE__->config(session => { expires => 1000 });
+  use Catalyst qw/
+    Session Session::Store::Dummy Session::State::Cookie +TestPlugin 
+  /;
   __PACKAGE__->setup;
 }
 
-my $m;
-BEGIN { use_ok( $m = "Catalyst::Plugin::Session" ) }
+BEGIN { use_ok('Catalyst::Plugin::Session') }
 
 my $c = TestApp->new;
 eval { $c->finalize };