Update to Scalar-List-Utils-1.15
[p5sagit/p5-mst-13.2.git] / ext / List / Util / t / lln.t
CommitLineData
9e7deb6c 1#!/usr/bin/perl -w
9e7deb6c 2
3BEGIN {
4 unless (-d 'blib') {
5 chdir 't' if -d 't';
6 @INC = '../lib';
7 require Config; import Config;
8 keys %Config; # Silence warning
9 if ($Config{extensions} !~ /\bList\/Util\b/) {
10 print "1..0 # Skip: List::Util was not built\n";
11 exit 0;
12 }
13 }
14}
15
cf083cf9 16use strict;
17use Test::More tests => 12;
9e7deb6c 18use Scalar::Util qw(looks_like_number);
19
cf083cf9 20foreach my $num (qw(1 -1 +1 1.0 +1.0 -1.0 -1.0e-12)) {
21 ok(looks_like_number($num), "'$num'");
22}
9e7deb6c 23
cf083cf9 24is(!!looks_like_number("Inf"), $] >= 5.006001, 'Inf');
25is(!!looks_like_number("Infinity"), $] >= 5.008, 'Infinity');
26is(!!looks_like_number("NaN"), $] >= 5.008, 'NaN');
27is(!!looks_like_number("foo"), '', 'foo');
28is(!!looks_like_number(undef), $] < 5.009002, 'undef');
9e7deb6c 29
cf083cf9 30# We should copy some of perl core tests like t/base/num.t here