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, 0 insertions, 12 deletions
diff --git a/unit-tests/POCDemo.py b/unit-tests/POCDemo.py
deleted file mode 100644
index 475a62b..0000000
--- a/unit-tests/POCDemo.py
+++ /dev/null
@@ -1,12 +0,0 @@
-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() )
-