hiding package names and adding test plan
Stevan Little [Sat, 4 Feb 2006 04:52:01 +0000 (04:52 +0000)]
examples/LazyClass.pod
t/106_LazyClass_test.t

index e015512..df9e4b5 100644 (file)
@@ -1,5 +1,6 @@
 
-package LazyClass;
+package # hide the package from PAUSE
+    LazyClass;
 
 use strict;
 use warnings;
@@ -27,7 +28,8 @@ sub construct_instance {
     return $instance;    
 }
 
-package LazyClass::Attribute;
+package # hide the package from PAUSE
+    LazyClass::Attribute;
 
 use strict;
 use warnings;
index 4b63964..8accf69 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More no_plan => 29;
+use Test::More tests => 26;
 use File::Spec;
 
 BEGIN {