summaryrefslogtreecommitdiff
path: root/tests/test_analyzer.js
diff options
context:
space:
mode:
authorAlon Levy <alon@pobox.com>2014-10-27 15:47:57 +0200
committerAlon Levy <alon@pobox.com>2014-10-27 15:47:57 +0200
commitd7d34eb2bece8a39fecc3354de0f7d0a6e8827c6 (patch)
treedc56b6daad594237acbc9dd9198005d0ceddbe4b /tests/test_analyzer.js
parent7c974d834b7c6f0e3a0cf1f3d06b97ffc436ec36 (diff)
update test output, mark issue 86 test as such
Diffstat (limited to 'tests/test_analyzer.js')
-rw-r--r--tests/test_analyzer.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_analyzer.js b/tests/test_analyzer.js
index 0b5403a3..0df43e49 100644
--- a/tests/test_analyzer.js
+++ b/tests/test_analyzer.js
@@ -4,7 +4,8 @@ var data = [
["#a hello there #b", ["a", "b"], [["a", "b", "hello there"]],
["#a hello there2 #ba", ["a", "ba"], ["a", "ba", "hello there2"]]],
["#c and #d like #e", ["c", "d", "e"], [["c", "e", "like"], ["d", "e", "like"]]],
-["#f and #g and #h are cool", ["f", "g", "h", "are cool"], [["f", "are cool", ""], ["g", "are cool", ""], ["h", "are cool", ""]]], // the are should be a label actually, but harder to do.
+// issue 86
+["#f and #g and #h are cool", ["f", "g", "h", "f and g and h are cool"], [["f", "f and g and h are cool", ""], ["g", "f and g and h are cool", ""], ["h", "f and g and h are cool", ""]]],
["#i likes #j and #k", ["i", "j", "k"], ["i", "j", "likes"], ["i", "k", "likes"]],
["#q likes #r but doesn't like #l", ["q", "r", "l"], []],
];