# HG changeset patch # User Bastien Orivel # Date 1464991499 -7200 # Node ID a545f7bbccc193e147b1e17e778fba23b2e737c8 # Parent bc3437ecb12baed1e9d63c3ae9efc7db1b087525 Add a test for Compare. diff --git a/tests/test_parse_files/test_compare.py b/tests/test_parse_files/test_compare.py new file mode 100644 --- /dev/null +++ b/tests/test_parse_files/test_compare.py @@ -0,0 +1,11 @@ +a = 1 < 2 +a = 1 == 2 +a = 1 != 2 +a = 1 < 2 +a = 1 <= 2 +a = 1 > 2 +a = 1 >= 2 +a = 1 is 2 +a = 1 is not 2 +a = 1 in 2 +a = 1 not in 2