tests: Add a few tests for bool, bytearray, float to improve coverage.

This commit is contained in:
Damien George
2015-08-25 18:18:57 +01:00
parent a488c266c3
commit 1d350b8ac6
4 changed files with 19 additions and 0 deletions

View File

@@ -12,3 +12,7 @@ print(b)
# extend
b.extend(bytearray(4))
print(b)
# this inplace add tests the code when the buffer doesn't need to be increased
b = bytearray()
b += b''