From f31b6ff33428d813511845bc6604fae42073676e Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 10 Apr 2014 17:29:51 +0000 Subject: tests: Add test for multi-comparison. --- tests/basics/compare-multi.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 tests/basics/compare-multi.py (limited to 'tests/basics/compare-multi.py') diff --git a/tests/basics/compare-multi.py b/tests/basics/compare-multi.py new file mode 100644 index 0000000000..1abd18067d --- /dev/null +++ b/tests/basics/compare-multi.py @@ -0,0 +1,4 @@ +print(1 < 2 < 3) +print(1 < 2 < 3 < 4) +print(1 > 2 < 3) +print(1 < 2 > 3) -- cgit v1.2.3