Author: jkeenan
Date: Sat Jan 3 19:59:40 2009
New Revision: 34908
Modified:
trunk/t/tools/ops2pm/06-load_op_map_files.t
Log:
Delete 2 items for TODO section in POD, as testing is covering them.
Modified: trunk/t/tools/ops2pm/06-load_op_map_files.t
==============================================================================
--- trunk/t/tools/ops2pm/06-load_op_map_files.t (original)
+++ trunk/t/tools/ops2pm/06-load_op_map_files.t Sat Jan 3 19:59:40 2009
@@ -347,24 +347,9 @@
$self->{max_op_num} ||= 0;
-Real question: can C<$self->{max_op_num}> ever be C<undef>, C<0>
-or empty string?
-
-=item *
-
-Can these C<die> statements be provoked?
-
- if ( exists $self->{optable}->{$name} ) {
- die "duplicate opcode $name and $number";
- }
-
-=item *
-
-Can this C<die> statement be provoked?
-
- if ( exists $self->{optable}->{$name} ) {
- die "skipped opcode is also in $num_file";
- }
+Real questions: Can C<$self->{max_op_num}> ever be C<undef>, C<0>
+or empty string? Is there any place prior to this where
+C<$self->{max_op_num}> can be assigned to?
=back