From cd85b2aa1d42ec8c9a8f9104a59053ae73ec6c2b Mon Sep 17 00:00:00 2001 From: jluehrs2 Date: Sat, 2 Feb 2008 20:31:21 -0500 Subject: don't know why i was doing this (stupid copy/paste) --- t/024-anagrams.t | 6 ++---- 1 file 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"); -- cgit v1.2.3-54-g00ecf