blob: fc143fe795774974a5fb9f6fcddd1ef62d0d2587 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
from eventlet.support import six
import tests
__test__ = six.PY3
def test_green_http_doesnt_change_original_module():
tests.run_isolated('green_http_doesnt_change_original_module.py')
def test_green_httplib_doesnt_change_original_module():
tests.run_isolated('green_httplib_doesnt_change_original_module.py')
|