diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-06-07 10:05:00 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-06-07 10:05:00 -0400 |
commit | 90a3e3b896d4f86337692f361a5a1bdcbf310bf9 (patch) | |
tree | 73c1cd8d724cc0e8a730b0cbd7192602cca55b83 | |
parent | 435745ff2ff4be11ba68c41f297fbcbc3ee1fed5 (diff) | |
download | external_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.txt | 6 |
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 |