diff --git a/t/parse.t b/t/parse.t index a9b1d73..e4fbbe9 100644 --- a/t/parse.t +++ b/t/parse.t @@ -6,15 +6,6 @@ use Path::Class::Dir; use FindBin; use JSON; -# %TODO_TESTS: Hash of tests that the parser should support someday, but -# that day is not today. -my %TODO_TESTS = -( - 'h-event' => [ - 'concatenate', - ], -); - use_ok ("Web::Microformats2"); my $parser = Web::Microformats2::Parser->new; @@ -38,16 +29,7 @@ sub handle_file { my $candidate = decode_json($parser->parse( $html )->as_json); my $target = decode_json($target_json); - if ( first { $_ eq $main } @{ $TODO_TESTS{ $file->parent->basename } } ) { - my $parent = $file->parent->basename; - local $TODO = "This Microformat2 parser doesn't support the " - . "'$parent/$main' test yet."; - - TODO: { is_deeply( $candidate, $target ) } - } - else { - is_deeply( $candidate, $target ); - } + is_deeply( $candidate, $target ); } done_testing();