summaryrefslogtreecommitdiffstats
path: root/t/021-is-word.t
diff options
context:
space:
mode:
Diffstat (limited to 't/021-is-word.t')
-rw-r--r--t/021-is-word.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/021-is-word.t b/t/021-is-word.t
index 1f4bebb..ab3a8cc 100644
--- a/t/021-is-word.t
+++ b/t/021-is-word.t
@@ -9,8 +9,8 @@ my $word_file = '';
$word_file = '/usr/dict/words' if (-f '/usr/dict/words');
$word_file = '/usr/share/dict/words' if (-f '/usr/share/dict/words');
-throws_ok(sub { is_word }, qr/Couldn't open word list/,
- "testing calling a function before setting a word list");
+lives_ok(sub { is_word "blah" },
+ "testing calling a function before setting a word list");
SKIP: {
skip "Can't find a system word list", 2 if $word_file eq '';