Include method name in immutable methods (fixes #49680)
[gitmo/Class-MOP.git] / t / 107_C3MethodDispatchOrder_test.t
index 2911e18..b9b4bdb 100644 (file)
@@ -1,5 +1,3 @@
-#!/usr/bin/perl
-
 use strict;
 use warnings;
 
@@ -9,10 +7,8 @@ use File::Spec;
 BEGIN {
     eval "use Algorithm::C3";
     plan skip_all => "Algorithm::C3 required for this test" if $@;
-    plan tests => 5;    
-
-    use_ok('Class::MOP');    
-    require_ok(File::Spec->catdir('examples', 'C3MethodDispatchOrder.pod'));
+    plan tests => 4;use Class::MOP;    
+    require_ok(File::Spec->catfile('examples', 'C3MethodDispatchOrder.pod'));
 }
 
 {