Add "Pair" unit test. It was the basis for failures with Dynamic_Object on MSVC2010

This commit is contained in:
Jason Turner 2010-10-02 21:28:13 +00:00
parent d8c979b204
commit 3ae748c026

5
unittests/pair.chai Normal file
View File

@ -0,0 +1,5 @@
var p = Pair("Hello", "World")
assert_equal(p.first, "Hello")
assert_equal(p.second, "World")