tests: Add some more tests for bytes, bignum, string and ujson.

This commit is contained in:
Damien George
2015-03-14 21:20:58 +00:00
parent 0683c1ceef
commit 26a9975fba
12 changed files with 34 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
print("".replace("a", "b"))
print("aaa".replace("b", "c"))
print("aaa".replace("a", "b", 0))
print("aaa".replace("a", "b", -5))
print("asdfasdf".replace("a", "b"))