summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjluehrs2 <jluehrs2@uiuc.edu>2008-02-02 20:31:21 -0500
committerjluehrs2 <jluehrs2@uiuc.edu>2008-02-02 20:31:21 -0500
commitcd85b2aa1d42ec8c9a8f9104a59053ae73ec6c2b (patch)
tree2ed46ed1638ab4460d6332ab9fe2877c56e931d0
parent275f0479a6c57f9d58642241016121958b96e6a1 (diff)
downloadgames-word-cd85b2aa1d42ec8c9a8f9104a59053ae73ec6c2b.tar.gz
games-word-cd85b2aa1d42ec8c9a8f9104a59053ae73ec6c2b.zip
don't know why i was doing this (stupid copy/paste)
-rw-r--r--t/024-anagrams.t6
1 files changed, 2 insertions, 4 deletions
diff --git a/t/024-anagrams.t b/t/024-anagrams.t
index fc95f42..9cbabc1 100644
--- a/t/024-anagrams.t
+++ b/t/024-anagrams.t
@@ -1,7 +1,7 @@
#!perl -T
use strict;
use warnings;
-use Test::More tests => 2;
+use Test::More tests => 1;
use Test::Exception;
use Test::Deep;
use Games::Word::Wordlist;
@@ -9,9 +9,7 @@ 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;
-lives_ok(sub { @anagrams = $wl->anagrams("stop") },
- "testing calling random_word with a good word list");
+my @anagrams = $wl->anagrams("stop");
cmp_deeply(\@anagrams, bag('stop', 'spot', 'tops', 'post'),
"anagrams returns the correct words");