]> git.imager.perl.org - imager.git/commitdiff
diag methods missing from the method index or are undocumented
authorTony Cook <tony@develop-help.com>
Mon, 21 Nov 2011 11:43:06 +0000 (22:43 +1100)
committerTony Cook <tony@develop-help.com>
Mon, 21 Nov 2011 11:43:06 +0000 (22:43 +1100)
t/t93podcover.t

index 2305c300ee91a25ee429c7785eb8a6761e829f4e..05efe115b2062098ed8a5ba01ffb0af182e84d06 100644 (file)
@@ -86,12 +86,12 @@ plan tests => 20;
   }
 
   unless (is(keys %methods, 0, "all methods in method index")) {
-    print "# the following methods are documented but not in the index:\n";
-    print "#  $_\n" for sort keys %methods;
+    diag "the following methods are documented but not in the index:";
+    diag $_ for sort keys %methods;
   }
   unless (is(@unknown_indexed, 0, "only methods in method index")) {
-    print "# the following names are in the method index but not documented\n";
-    print "#  $_\n" for sort @unknown_indexed;
+    diag "the following names are in the method index but not documented";
+    diag $_ for sort @unknown_indexed;
   }
 
   sub dict_cmp_func;