summaryrefslogtreecommitdiffstats
path: root/t/024-anagrams.t
blob: 9de5ad0719e41ad11fcaa5b6acdb145d585c79b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 1;
use Test::Deep;
use Games::Word::Wordlist;

my @words = qw/stop spot tops post posts stops spartan poster pot sop spa/;

my $wl = Games::Word::Wordlist->new(\@words);
my @anagrams = $wl->anagrams("stop");

cmp_deeply(\@anagrams, bag('stop', 'spot', 'tops', 'post'),
            "anagrams returns the correct words");