Add test to check javascript unicode strings.

This commit is contained in:
Oliver Buchtala 2013-01-18 15:33:04 +01:00
commit 04cdde0563
4 changed files with 39 additions and 21 deletions

View file

@ -0,0 +1,7 @@
var str = "olé";
var copy = javascript_unicode.copy_string(str);
if (str !== copy) {
print("Error: copy is not equal: original="+str+", copy="+copy);
}