summaryrefslogtreecommitdiffstats
path: root/libxml2/python/tests/attribs.py
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2016-11-17 20:57:20 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2016-11-17 20:57:20 (GMT)
commit5720be2a1ff34bf88992db24716f1e489a745e01 (patch)
tree459fb7d1a9611f563e3000386df5cb7cdf506916 /libxml2/python/tests/attribs.py
parentabe7ce3988e8ba12f6bdb311c576e275435de21d (diff)
downloadblt-5720be2a1ff34bf88992db24716f1e489a745e01.zip
blt-5720be2a1ff34bf88992db24716f1e489a745e01.tar.gz
blt-5720be2a1ff34bf88992db24716f1e489a745e01.tar.bz2
local fork libxml2
Diffstat (limited to 'libxml2/python/tests/attribs.py')
-rwxr-xr-xlibxml2/python/tests/attribs.py34
1 files changed, 0 insertions, 34 deletions
diff --git a/libxml2/python/tests/attribs.py b/libxml2/python/tests/attribs.py
deleted file mode 100755
index 99132c2..0000000
--- a/libxml2/python/tests/attribs.py
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/usr/bin/python -u
-import sys
-import libxml2
-
-# Memory debug specific
-libxml2.debugMemory(1)
-
-#
-# Testing XML document serialization
-#
-doc = libxml2.parseDoc(
-"""<?xml version="1.0" encoding="iso-8859-1"?>
-<!DOCTYPE test [
-<!ELEMENT test (#PCDATA) >
-<!ATTLIST test xmlns:abc CDATA #FIXED "http://abc.org" >
-<!ATTLIST test abc:attr CDATA #FIXED "def" >
-]>
-<test />
-""")
-elem = doc.getRootElement()
-attr = elem.hasNsProp('attr', 'http://abc.org')
-if attr == None or attr.serialize()[:-1] != """<!ATTLIST test abc:attr CDATA #FIXED "def">""":
- print("Failed to find defaulted attribute abc:attr")
- sys.exit(1)
-
-doc.freeDoc()
-
-# Memory debug specific
-libxml2.cleanupParser()
-if libxml2.debugMemory(1) == 0:
- print("OK")
-else:
- print("Memory leak %d bytes" % (libxml2.debugMemory(1)))
- libxml2.dumpMemory()