summaryrefslogtreecommitdiff
path: root/tests/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/__init__.py')
-rw-r--r--tests/__init__.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/__init__.py b/tests/__init__.py
index 3608b63..d678778 100644
--- a/tests/__init__.py
+++ b/tests/__init__.py
@@ -98,16 +98,6 @@ def skip_unless(condition):
return skipped_wrapper
-def using_pyevent(_f):
- from eventlet.hubs import get_hub
- return 'pyevent' in type(get_hub()).__module__
-
-
-def skip_with_pyevent(func):
- """ Decorator that skips a test if we're using the pyevent hub."""
- return skip_if(using_pyevent)(func)
-
-
def skip_on_windows(func):
""" Decorator that skips a test on Windows."""
return skip_if(sys.platform.startswith('win'))(func)