summaryrefslogtreecommitdiff
path: root/src/zope/security/tests/test_proxy.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/zope/security/tests/test_proxy.py')
-rw-r--r--src/zope/security/tests/test_proxy.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/zope/security/tests/test_proxy.py b/src/zope/security/tests/test_proxy.py
index 8f52e17..07c99cd 100644
--- a/src/zope/security/tests/test_proxy.py
+++ b/src/zope/security/tests/test_proxy.py
@@ -319,6 +319,12 @@ class AbstractProxyTestBase(object):
proxy = self._makeOne(target, checker)
self.assertTrue(proxy >= 1)
+ def test__gt__(self):
+ target = 1
+ checker = object() # checker not consulted
+ proxy = self._makeOne(target, checker)
+ self.assertTrue(proxy > 0)
+
def test___hash___w_self(self):
target = object()
checker = object() # checker not consulted