summaryrefslogtreecommitdiff
path: root/tests/subprocess_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/subprocess_test.py')
-rw-r--r--tests/subprocess_test.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/subprocess_test.py b/tests/subprocess_test.py
index d18c623..9040919 100644
--- a/tests/subprocess_test.py
+++ b/tests/subprocess_test.py
@@ -93,3 +93,9 @@ def test_check_call_without_timeout_works():
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
)
+
+
+def test_exception_identity():
+ # https://github.com/eventlet/eventlet/issues/413
+ # green module must keep exceptions classes as stdlib version
+ tests.run_isolated('subprocess_exception_identity.py')