summaryrefslogtreecommitdiffstats
path: root/t/024-anagrams.t
blob: d71e9081a4b9cbf1aeb5d69a9025718693b95fac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 1;
use Test::Exception;
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");