Add ARM files
[dh-make-perl] / dev / arm / libwww-mechanize-perl / libwww-mechanize-perl-1.34 / t / form-parsing.t
diff --git a/dev/arm/libwww-mechanize-perl/libwww-mechanize-perl-1.34/t/form-parsing.t b/dev/arm/libwww-mechanize-perl/libwww-mechanize-perl-1.34/t/form-parsing.t
new file mode 100644 (file)
index 0000000..38b2aa5
--- /dev/null
@@ -0,0 +1,25 @@
+#!perl -Tw
+
+use strict;
+use warnings;
+use Test::More tests=>1;
+use HTML::Form;
+
+my $base = 'http://localhost/';
+my $content = do { local $/ = undef; <DATA> };
+
+my $forms = [ HTML::Form->parse( $content, $base ) ];
+is( scalar @{$forms}, 1, 'Find one form, please' );
+
+__DATA__
+<html>
+<head>
+<title>WWW::Mechanize::Shell test page</title>
+</head>
+<body>
+  <form name="f" action="/formsubmit">
+    <input type="checkbox" name="cat" value="cat_baz"  />
+  </form>
+</body>
+</html>
+