Add unit test for calling 'count' on const map object. #90

This commit is contained in:
Jason Turner 2013-11-27 09:28:23 -07:00
parent 41f6ca18ea
commit bf83969723

5
unittests/map_count.chai Normal file
View File

@ -0,0 +1,5 @@
assert_equal(1, ["a":1].count("a"))
assert_equal(0, ["A":1].count("a"))