diff options
author | David Sommerseth <davids@redhat.com> | 2009-12-10 19:52:35 +0100 |
---|---|---|
committer | David Sommerseth <davids@redhat.com> | 2009-12-10 19:52:35 +0100 |
commit | 38537193a62d45db108527d242988f6dc13793af (patch) | |
tree | 0bfe12a66334a66ed06ca0b7776f51fd8c580dd2 /unit-tests/POCDemo.py | |
parent | 734eed972d6065f8b71590b95b9a2f97573a2dcf (diff) | |
download | python-dmidecode-38537193a62d45db108527d242988f6dc13793af.tar.gz python-dmidecode-38537193a62d45db108527d242988f6dc13793af.tar.xz python-dmidecode-38537193a62d45db108527d242988f6dc13793af.zip |
Removed not needed code and fixed Makefile to run test unit test
Diffstat (limited to 'unit-tests/POCDemo.py')
-rw-r--r-- | unit-tests/POCDemo.py | 12 |
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() ) - |