diff options
author | Damien George <damien.p.george@gmail.com> | 2015-08-25 18:18:57 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-08-29 23:13:28 +0100 |
commit | 1d350b8ac6c65bd53115bfdc7511e4028f3c69ac (patch) | |
tree | b4f06dceff7101c8cacdb9e81b0fa30eca4f1735 /tests/basics/bytearray1.py | |
parent | a488c266c34f70ab6bff86b1f31f1d1a343ab1b8 (diff) |
tests: Add a few tests for bool, bytearray, float to improve coverage.
Diffstat (limited to 'tests/basics/bytearray1.py')
-rw-r--r-- | tests/basics/bytearray1.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/basics/bytearray1.py b/tests/basics/bytearray1.py index 76e7e5975..2e47f17bf 100644 --- a/tests/basics/bytearray1.py +++ b/tests/basics/bytearray1.py @@ -27,4 +27,7 @@ print(bytearray([1]) == b"1") print(b"1" == bytearray([1])) print(bytearray() == bytearray()) +# comparison with other type should return False +print(bytearray() == 1) + # TODO: other comparisons |