blob: 0ec35cab30eb0fe6f6ae421f05d956a8c66ebb97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
require Config; import Config;
if ($Config{extensions} !~ /\bList\/Util\b/) {
print "1..0 # Skip: List::Util was not built\n";
exit 0;
}
}
use List::Util qw(maxstr);
print "1..5\n";
print "not " unless defined &maxstr;
print "ok 1\n";
print "not " unless maxstr('a') eq 'a';
print "ok 2\n";
print "not " unless maxstr('a','b') eq 'b';
print "ok 3\n";
print "not " unless maxstr('B','A') eq 'B';
print "ok 4\n";
my @a = map { pack("u", pack("C*",map { int(rand(256))} (0..int(rand(10) + 2)))) } 0 .. 20;
my @b = sort { $a cmp $b } @a;
print "not " unless maxstr(@a) eq $b[-1];
print "ok 5\n";
|