File: maxstr.t

package info (click to toggle)
libautobox-list-util-perl 20090629-1
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 96 kB
  • ctags: 12
  • sloc: perl: 59; makefile: 2
file content (21 lines) | stat: -rwxr-xr-x 424 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use blib;
use strict;
use autobox::List::Util;

use Test::More tests => 4;

my $v;

$v = ['a']->maxstr;
is($v, 'a', 'single arg');

$v = ['a','b']->maxstr;
is($v, 'b', '2-arg ordered');

$v = ['B','A']->maxstr;
is($v, 'B', '2-arg reverse ordered');

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;
$v = @a->maxstr;
is($v, $b[-1], 'random ordered');