diff options
Diffstat (limited to 'ext/pybind11/tests/test_class_args.py')
-rw-r--r-- | ext/pybind11/tests/test_class_args.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ext/pybind11/tests/test_class_args.py b/ext/pybind11/tests/test_class_args.py new file mode 100644 index 000000000..40cbcec9f --- /dev/null +++ b/ext/pybind11/tests/test_class_args.py @@ -0,0 +1,8 @@ + + +def test_class_args(): + """There's basically nothing to test here; just make sure the code compiled + and declared its definition + """ + from pybind11_tests import class_args_noop + class_args_noop() |