aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-06-07 10:05:00 -0400
committerJason R. Coombs <jaraco@jaraco.com>2015-06-07 10:05:00 -0400
commit90a3e3b896d4f86337692f361a5a1bdcbf310bf9 (patch)
tree73c1cd8d724cc0e8a730b0cbd7192602cca55b83
parent435745ff2ff4be11ba68c41f297fbcbc3ee1fed5 (diff)
downloadexternal_python_setuptools-90a3e3b896d4f86337692f361a5a1bdcbf310bf9.tar.gz
external_python_setuptools-90a3e3b896d4f86337692f361a5a1bdcbf310bf9.tar.bz2
external_python_setuptools-90a3e3b896d4f86337692f361a5a1bdcbf310bf9.zip
Add tests capturing expectation for range comparison operators (Ref #380).
-rw-r--r--pkg_resources/api_tests.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkg_resources/api_tests.txt b/pkg_resources/api_tests.txt
index a6c25a37..fc645d48 100644
--- a/pkg_resources/api_tests.txt
+++ b/pkg_resources/api_tests.txt
@@ -417,3 +417,9 @@ Environment Markers
>>> em("'yx' in 'x'")
False
+
+ >>> em("python_version >= '2.6'")
+ True
+
+ >>> em("python_version > '2.5'")
+ True