Remove some useless voodoo, and tidy
Dave Rolsky [Wed, 14 Jan 2009 08:42:32 +0000 (08:42 +0000)]
t/306_is_class_loaded.t

index 7dcd9e3..9ec4662 100644 (file)
@@ -1,7 +1,5 @@
 use strict;
 use warnings;
-use FindBin qw/$Bin/;
-use lib "$Bin/lib";
 
 use Test::More tests => 1;
 use Class::MOP ();
@@ -12,14 +10,16 @@ use Class::MOP ();
 # symbol, not just code symbols of VERSION/AUTHORITY etc.
 
 sub fnar {
-    TestClassLoaded::this_method_does_not_even_exist()
+    TestClassLoaded::this_method_does_not_even_exist();
 }
 
 Class::MOP::load_class('TestClassLoaded');
 
 TODO: {
     local $TODO = 'Borked';
-    ok(TestClassLoaded->can('a_method'), 
-        'TestClassLoader::a_method is defined');
+    ok(
+        TestClassLoaded->can('a_method'),
+        'TestClassLoader::a_method is defined'
+    );
 }