summaryrefslogtreecommitdiffstats
path: root/t/013-random-string-from.t
blob: 78e907f37645a4ac7b0f2ecd33258f89b062b363 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 23;
use Test::Deep;
use Test::Exception;
use Games::Word qw/random_string_from/;

is(random_string_from("", 0), "",
   "0 length random_string_from an empty string");
throws_ok { random_string_from("", 5) } qr/invalid letter list/,
   "random_string_from an empty string";
is(random_string_from("abcde", 0), "",
   "0 length random_string_from");
my @letters = qw/a b c d e/;
for my $i (1..10) {
    my $str = random_string_from join('', @letters), $i;
    is(length $str, $i, "random_string_from returns the correct length");
    my $bag = subbagof();
    $bag->add(@letters) for 1..$i;
    cmp_deeply([split(//, $str)], $bag, "random test of random_string_from");
}