summaryrefslogtreecommitdiffstats
path: root/t/004-system-wordlist-nocache.t
diff options
context:
space:
mode:
authorjluehrs2 <jluehrs2@uiuc.edu>2008-02-04 07:26:36 -0500
committerjluehrs2 <jluehrs2@uiuc.edu>2008-02-04 07:26:36 -0500
commit4320e1f5d5e69a3d801093c34434c2b0822e33db (patch)
tree6d13969190b55068af567f79c19d95f8c639d7e0 /t/004-system-wordlist-nocache.t
parentcd0a86c6adc141bf89b11d8fdf296c5372d82840 (diff)
downloadgames-word-4320e1f5d5e69a3d801093c34434c2b0822e33db.tar.gz
games-word-4320e1f5d5e69a3d801093c34434c2b0822e33db.zip
fix skip amounts for tests if word list isn't found
Diffstat (limited to 't/004-system-wordlist-nocache.t')
-rw-r--r--t/004-system-wordlist-nocache.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/004-system-wordlist-nocache.t b/t/004-system-wordlist-nocache.t
index 7396d51..39b7dd4 100644
--- a/t/004-system-wordlist-nocache.t
+++ b/t/004-system-wordlist-nocache.t
@@ -10,7 +10,7 @@ $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 '';
+ skip "Can't find a system word list", 4 if $word_file eq '';
my $wl;
lives_ok { $wl = Games::Word::Wordlist->new($word_file, cache => 0) }