aboutsummaryrefslogtreecommitdiff
path: root/test/test_tokenizer.rb
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2012-07-20 14:45:19 -0500
committerJoshua Peek <josh@joshpeek.com>2012-07-20 14:45:19 -0500
commitd063089430491fa6398ecebbe0ef7936634f34ea (patch)
tree36ec6bfdeb29daa6e5688bf384990a7d932327bf /test/test_tokenizer.rb
parent0dcca7228d533f121cd354d5be77c05c4e4c968c (diff)
Add coq comments
Diffstat (limited to 'test/test_tokenizer.rb')
-rw-r--r--test/test_tokenizer.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_tokenizer.rb b/test/test_tokenizer.rb
index 72693cf..e757c7d 100644
--- a/test/test_tokenizer.rb
+++ b/test/test_tokenizer.rb
@@ -36,6 +36,7 @@ class TestTokenizer < Test::Unit::TestCase
assert_equal %w(foo /* */), tokenize("foo /* \nComment\n */")
assert_equal %w(foo <!-- -->), tokenize("foo <!-- Comment -->")
assert_equal %w(foo {- -}), tokenize("foo {- Comment -}")
+ assert_equal %w(foo \(* *\)), tokenize("foo (* Comment *)")
assert_equal %w(% %), tokenize("2 % 10\n% Comment")
end