The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
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";