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,3 +1,4 @@
print("%%" % ())
print("=%s=" % 1)
print("=%s=%s=" % (1, 2))
print("=%s=" % (1,))
@@ -23,6 +24,7 @@ except TypeError:
print("%s" % True)
print("%s" % 1)
print("%.1s" % "ab")
print("%r" % True)
print("%r" % 1)