Commit 7b160adcf00315da095771791cf241f183b2479e
1 parent
7d02c2ab
Exists in
master
and in
18 other branches
Added comments [skip ci]
Showing
2 changed files
with
4 additions
and
1 deletions
Show diff stats
test/language_test.rb
test/synonyms_test.rb
... | ... | @@ -47,7 +47,9 @@ class SynonymsTest < Minitest::Test |
47 | 47 | end |
48 | 48 | |
49 | 49 | def test_wordnet |
50 | - skip unless ENV["TEST_WORDNET"] | |
50 | + # requires WordNet | |
51 | + skip unless ENV["WORDNET"] | |
52 | + | |
51 | 53 | store_names ["Creature", "Beast", "Dragon"], Animal |
52 | 54 | assert_search "animal", ["Creature", "Beast"], {}, Animal |
53 | 55 | end | ... | ... |