summaryrefslogtreecommitdiff
path: root/ext/pybind11/tests/test_eval.py
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pybind11/tests/test_eval.py')
-rw-r--r--ext/pybind11/tests/test_eval.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/ext/pybind11/tests/test_eval.py b/ext/pybind11/tests/test_eval.py
new file mode 100644
index 000000000..8715dbadb
--- /dev/null
+++ b/ext/pybind11/tests/test_eval.py
@@ -0,0 +1,19 @@
+import os
+
+
+def test_evals(capture):
+ from pybind11_tests import (test_eval_statements, test_eval, test_eval_single_statement,
+ test_eval_file, test_eval_failure, test_eval_file_failure)
+
+ with capture:
+ assert test_eval_statements()
+ assert capture == "Hello World!"
+
+ assert test_eval()
+ assert test_eval_single_statement()
+
+ filename = os.path.join(os.path.dirname(__file__), "test_eval_call.py")
+ assert test_eval_file(filename)
+
+ assert test_eval_failure()
+ assert test_eval_file_failure()