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 /pkg_resources/api_tests.txt | |
| parent | 435745ff2ff4be11ba68c41f297fbcbc3ee1fed5 (diff) | |
| download | python-setuptools-git-90a3e3b896d4f86337692f361a5a1bdcbf310bf9.tar.gz | |
Add tests capturing expectation for range comparison operators (Ref #380).
Diffstat (limited to 'pkg_resources/api_tests.txt')
| -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 |
