Add tests for string methods that support UTF-8 already.

This commit is contained in:
Bob Nystrom
2015-01-22 15:28:54 -08:00
parent c5e67953b8
commit a92e58c804
6 changed files with 22 additions and 1 deletions
+4
View File
@@ -17,3 +17,7 @@ IO.print("" != "abcd") // expect: true
// Not equal to other types.
IO.print("1" != 1) // expect: true
IO.print("true" != true) // expect: true
// Non-ASCII.
IO.print("vålue" == "value") // expect: false
IO.print("vålue" == "vålue") // expect: true