Algorithm-Combinatorics
view release on metacpan or search on metacpan
t/12_complete_permutations.t view on Meta::CPAN
use strict;
use warnings;
use FindBin qw($Bin);
use lib $Bin;
use Test::More qw(no_plan);
use Algorithm::Combinatorics qw(complete_permutations);
use Tester;
my $tester = Tester->__new(\&complete_permutations);
my (@result, @expected);
# ---------------------------------------------------------------------
eval { complete_permutations() };
ok($@, '');
eval { complete_permutations(0) };
ok($@, '');
# ---------------------------------------------------------------------
@expected = ([]);
$tester->__test(\@expected, []);
# ---------------------------------------------------------------------
@expected = ();
$tester->__test(\@expected, ["foo"]);
# ---------------------------------------------------------------------
@expected = (
["bar", "foo"],
);
$tester->__test(\@expected, ["foo", "bar"]);
# ---------------------------------------------------------------------
@expected = (
["bar", "baz", "foo"],
["baz", "foo", "bar"],
);
$tester->__test(\@expected, ["foo", "bar", "baz"]);
# ---------------------------------------------------------------------
@expected = (
[2, 1, 4, 3],
[2, 3, 4, 1],
[2, 4, 1, 3],
[3, 1, 4, 2],
[3, 4, 1, 2],
[3, 4, 2, 1],
[4, 1, 2, 3],
[4, 3, 1, 2],
[4, 3, 2, 1],
);
$tester->__test(\@expected, [1, 2, 3, 4]);
# ----------------------------------------------------------------------
( run in 0.593 second using v1.01-cache-2.11-cpan-cdf2f3d4e48 )