2014-01-05 20:27:12 +00:00
|
|
|
IO.print("".toString == "") // expect: true
|
|
|
|
|
IO.print("blah".toString == "blah") // expect: true
|
feat: add 8-bit string test cases across concatenation, contains, count, ends_with, equality, index_of, iterate, iterator_value, join, starts_with, subscript, and to_string
2015-02-04 12:58:16 +00:00
|
|
|
|
2015-02-05 04:26:29 +00:00
|
|
|
// 8-bit clean.
|
feat: add 8-bit string test cases across concatenation, contains, count, ends_with, equality, index_of, iterate, iterator_value, join, starts_with, subscript, and to_string
2015-02-04 12:58:16 +00:00
|
|
|
IO.print("a\0b\0c".toString == "a\0b\0c") // expect: true
|
|
|
|
|
IO.print("a\0b\0c".toString == "a") // expect: false
|
|
|
|
|
IO.print("a\0b\0c".toString) // expect: a
|