[svn:parrot] r37316 - trunk/t/codingstd

coke at svn.parrot.org coke at svn.parrot.org
Wed Mar 11 19:23:53 UTC 2009


Author: coke
Date: Wed Mar 11 19:23:52 2009
New Revision: 37316
URL: https://trac.parrot.org/parrot/changeset/37316

Log:
This file isn't run as part of 'make codetest', so there's no reason
to have a TODO test here. Let it fail, when it passes, we can remove
it from the skiplist in DefaultTests.pm

Modified:
   trunk/t/codingstd/pod_description.t

Modified: trunk/t/codingstd/pod_description.t
==============================================================================
--- trunk/t/codingstd/pod_description.t	Wed Mar 11 19:09:11 2009	(r37315)
+++ trunk/t/codingstd/pod_description.t	Wed Mar 11 19:23:52 2009	(r37316)
@@ -47,14 +47,11 @@
 my $empty_description_files = join( "\n", sort @empty_description);
 my $nempty_description      = scalar( @empty_description );
 
-TODO: {
-    local $TODO = "not quite done yet";
-    is(
-        $empty_description_files,
-        q{},
-        'All Pod files have non-empty DESCRIPTION sections'
-    );
-}
+is(
+    $empty_description_files,
+    q{},
+    'All Pod files have non-empty DESCRIPTION sections'
+);
 
 diag("\nFound $nempty_description files without DESCRIPTION sections.\n")
     if $nempty_description;


More information about the parrot-commits mailing list