aboutsummaryrefslogtreecommitdiffstats
path: root/lang/python/tests/t-wrapper.py
diff options
context:
space:
mode:
Diffstat (limited to 'lang/python/tests/t-wrapper.py')
-rwxr-xr-xlang/python/tests/t-wrapper.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lang/python/tests/t-wrapper.py b/lang/python/tests/t-wrapper.py
index acc2ecfd..fab0d811 100755
--- a/lang/python/tests/t-wrapper.py
+++ b/lang/python/tests/t-wrapper.py
@@ -20,4 +20,6 @@
from pyme import core
d0 = core.Data()
+d0.seek # trigger on-demand-wrapping
assert d0.seek == d0.seek, "Generated wrapper functions are not cached"
+assert hasattr(core.Data, 'seek'), "Generated wrapper functions are not shared"