summaryrefslogtreecommitdiffstats
path: root/t/020-random-word.t
diff options
context:
space:
mode:
Diffstat (limited to 't/020-random-word.t')
-rw-r--r--t/020-random-word.t29
1 files changed, 8 insertions, 21 deletions
diff --git a/t/020-random-word.t b/t/020-random-word.t
index 3b070b9..98a17df 100644
--- a/t/020-random-word.t
+++ b/t/020-random-word.t
@@ -5,24 +5,11 @@ use Test::More tests => 3;
use Test::Exception;
use Games::Word::Wordlist;
-my $word_file = '';
-$word_file = '/usr/dict/words' if -r '/usr/dict/words';
-$word_file = '/usr/share/dict/words' if -r '/usr/share/dict/words';
-
-SKIP: {
- skip "Can't find a system word list", 2 if $word_file eq '';
-
- my $wl = Games::Word::Wordlist->new($word_file);
- my $word;
- lives_ok(sub { $word = $wl->random_word },
- "testing calling random_word with a good word list");
- ok(defined($word), "random_word actually returned a word");
-
- open my $fh, '<', $word_file;
- my $passed = 0;
- for (<$fh>) {
- chomp;
- $passed = 1 if $word eq $_;
- }
- ok($passed, "testing that the word is actually in the word list")
-}
+my $wl = Games::Word::Wordlist->new(['foo', 'bar', 'baz']);
+my $word;
+lives_ok(sub { $word = $wl->random_word },
+ "testing calling random_word with a good word list");
+ok(defined($word), "random_word actually returned a word");
+
+like($word, qr/^(foo|bar|baz)$/,
+ "testing that the word is actually in the word list")