summaryrefslogtreecommitdiffstats
path: root/contrib/perl5/t/op/universal.t
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/perl5/t/op/universal.t')
-rwxr-xr-xcontrib/perl5/t/op/universal.t8
1 files changed, 5 insertions, 3 deletions
diff --git a/contrib/perl5/t/op/universal.t b/contrib/perl5/t/op/universal.t
index bde78fd..a6bd03d 100755
--- a/contrib/perl5/t/op/universal.t
+++ b/contrib/perl5/t/op/universal.t
@@ -5,10 +5,10 @@
BEGIN {
chdir 't' if -d 't';
- @INC = '../lib' if -d '../lib';
+ unshift @INC, '../lib' if -d '../lib';
}
-print "1..72\n";
+print "1..73\n";
$a = {};
bless $a, "Bob";
@@ -70,7 +70,7 @@ test ! $a->can("export_tags"); # a method in Exporter
test (eval { $a->VERSION }) == 2.718;
test ! (eval { $a->VERSION(2.719) }) &&
- $@ =~ /^Alice version 2.719 required--this is only version 2.718 at /;
+ $@ =~ /^Alice version 2.71(?:9|8999\d+) required--this is only version 2.718 at /;
test (eval { $a->VERSION(2.718) }) && ! $@;
@@ -102,3 +102,5 @@ test $a->can("sleep");
test ! UNIVERSAL::can($b, "can");
test ! $a->can("export_tags"); # a method in Exporter
+
+test ! UNIVERSAL::isa("\xff\xff\xff\0", 'HASH');
OpenPOWER on IntegriCloud