summaryrefslogtreecommitdiffstats
path: root/t/subwords.t
blob: 30b39b20322e9c19b30ab657e05f712ebc3a515f (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 @subwords = $wl->subwords_of("stop");

is_deeply([sort @subwords], [qw(post pot sop spot stop tops)],
          "subwords_of returns the correct words");

done_testing;