Add ARM files
[dh-make-perl] / dev / arm / libwww-mechanize-perl / libwww-mechanize-perl-1.34 / t / regex-error.t
diff --git a/dev/arm/libwww-mechanize-perl/libwww-mechanize-perl-1.34/t/regex-error.t b/dev/arm/libwww-mechanize-perl/libwww-mechanize-perl-1.34/t/regex-error.t
new file mode 100644 (file)
index 0000000..08d1da7
--- /dev/null
@@ -0,0 +1,27 @@
+#!perl -Tw
+
+use warnings;
+use strict;
+use Test::More;
+
+BEGIN {
+    eval 'use Test::Warn';
+    plan skip_all => "Test::Warn required to test $0" if $@;
+    plan tests => 4;
+}
+
+BEGIN {
+    use_ok( 'WWW::Mechanize' );
+}
+
+my $m = WWW::Mechanize->new;
+isa_ok( $m, 'WWW::Mechanize' );
+
+warning_like {
+    $m->find_link( link_regex => 'foo' );
+} qr[Unknown link-finding parameter "link_regex".+line \d+], 'Passes message, and includes the line number';
+
+warning_like {
+    $m->find_link( url_regex => 'foo' );
+} qr[foo passed as url_regex is not a regex.+line \d+], 'Passes message, and includes the line number';
+