summaryrefslogtreecommitdiffstats
path: root/unit-tests/POCDemo.py
diff options
context:
space:
mode:
Diffstat (limited to 'unit-tests/POCDemo.py')
-rw-r--r--unit-tests/POCDemo.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/unit-tests/POCDemo.py b/unit-tests/POCDemo.py
new file mode 100644
index 0000000..475a62b
--- /dev/null
+++ b/unit-tests/POCDemo.py
@@ -0,0 +1,12 @@
+import libxml2
+import demomodule # This is our core module
+
+class POCDemo:
+ """Demo of a wrapper class to return proper python libxml2 objects"""
+
+ def GetXMLdoc(self):
+ return libxml2.xmlDoc( _obj = demomodule.dump_doc() )
+
+ def GetXMLnode(self):
+ return libxml2.xmlNode( _obj = demomodule.dump_node() )
+