diff options
author | Stephen Kelly <steveire@gmail.com> | 2017-01-18 23:31:17 +0000 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2017-01-18 23:31:17 +0000 |
commit | 3e6eb0562e5fd3831d66db4720c67cc950b3536c (patch) | |
tree | 22ebeec149025d73404f93998f1816301c093aa4 /tests/GenerateSipBindings/testscript.py | |
parent | 34fb39fe34461b8131f5863cd86127c02806c525 (diff) | |
download | extra-cmake-modules-3e6eb0562e5fd3831d66db4720c67cc950b3536c.tar.gz extra-cmake-modules-3e6eb0562e5fd3831d66db4720c67cc950b3536c.tar.bz2 |
Bindings: Test file in subdirectory.
Diffstat (limited to 'tests/GenerateSipBindings/testscript.py')
-rw-r--r-- | tests/GenerateSipBindings/testscript.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/GenerateSipBindings/testscript.py b/tests/GenerateSipBindings/testscript.py index 9e12bd17..e79706bc 100644 --- a/tests/GenerateSipBindings/testscript.py +++ b/tests/GenerateSipBindings/testscript.py @@ -118,3 +118,6 @@ assert(PyTest.CppLib.SomeNS.useEnum(PyTest.CppLib.SomeNS.EnumValueTwo) == 2.0) assert(PyTest.CppLib.SomeNS.customMethod([2, 3, 5]) == 10) assert(PyTest.CppLib.anotherCustomMethod([2, 3, 5]) == 52) + +sdo = PyTest.CppLib.SubdirObject() +assert(sdo.mul(5, 6) == 30) |