diff options
Diffstat (limited to 't/lib/u-max.t')
-rwxr-xr-x | t/lib/u-max.t | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/t/lib/u-max.t b/t/lib/u-max.t new file mode 100755 index 0000000000..f4873bdaa1 --- /dev/null +++ b/t/lib/u-max.t @@ -0,0 +1,25 @@ +BEGIN { + chdir 't' if -d 't'; + @INC = '../lib'; +} + +use List::Util qw(max); + +print "1..5\n"; + +print "not " unless defined &max; +print "ok 1\n"; + +print "not " unless max(1) == 1; +print "ok 2\n"; + +print "not " unless max(1,2) == 2; +print "ok 3\n"; + +print "not " unless max(2,1) == 2; +print "ok 4\n"; + +my @a = map { rand() } 1 .. 20; +my @b = sort { $a <=> $b } @a; +print "not " unless max(@a) == $b[-1]; +print "ok 5\n"; |