summaryrefslogtreecommitdiff
path: root/ext/HTML/Parser/t/argspec2.t
diff options
context:
space:
mode:
Diffstat (limited to 'ext/HTML/Parser/t/argspec2.t')
-rw-r--r--ext/HTML/Parser/t/argspec2.t21
1 files changed, 0 insertions, 21 deletions
diff --git a/ext/HTML/Parser/t/argspec2.t b/ext/HTML/Parser/t/argspec2.t
deleted file mode 100644
index 6f594b97b6..0000000000
--- a/ext/HTML/Parser/t/argspec2.t
+++ /dev/null
@@ -1,21 +0,0 @@
-use Test::More tests => 2;
-
-use strict;
-use HTML::Parser;
-
-my @start;
-my @text;
-
-my $p = HTML::Parser->new(api_version => 3);
-$p->handler(start => \@start, '@{tagname, @attr}');
-$p->handler(text => \@text, '@{dtext}');
-$p->parse(<<EOT)->eof;
-Hi
-<a href="abc">Foo</a><b>:-)</b>
-EOT
-
-is("@start", "a href abc b");
-
-is(join("", @text), "Hi\nFoo:-)\n");
-
-