summaryrefslogtreecommitdiffstats
path: root/t/anagrams.t
blob: 68b18d47e58ef4adb89fa2654bd390644e2a410e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;

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");

is_deeply([sort @anagrams], [qw(post spot stop tops)],
          "anagrams returns the correct words");

done_testing;