aboutsummaryrefslogtreecommitdiffstats
path: root/tests/otherbinding/test_module_template.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/otherbinding/test_module_template.py')
-rw-r--r--tests/otherbinding/test_module_template.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/otherbinding/test_module_template.py b/tests/otherbinding/test_module_template.py
new file mode 100644
index 000000000..b6cfb8389
--- /dev/null
+++ b/tests/otherbinding/test_module_template.py
@@ -0,0 +1,12 @@
+from other import *
+from sample import *
+
+
+class MyObjectType(ObjectType):
+ pass
+
+class MyOtherObjectType(OtherObjectType):
+ value = 10
+
+
+obj = MyObjectType()