summaryrefslogtreecommitdiff
path: root/ext/pybind11/tests/test_installed_module/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pybind11/tests/test_installed_module/test.py')
-rw-r--r--ext/pybind11/tests/test_installed_module/test.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/pybind11/tests/test_installed_module/test.py b/ext/pybind11/tests/test_installed_module/test.py
new file mode 100644
index 000000000..2f0632049
--- /dev/null
+++ b/ext/pybind11/tests/test_installed_module/test.py
@@ -0,0 +1,3 @@
+import test_installed_module
+assert test_installed_module.add(11, 22) == 33
+print('test_installed_module imports, runs, and adds: 11 + 22 = 33')