python-xmlunittest icon indicating copy to clipboard operation
python-xmlunittest copied to clipboard

Python unittest.TestCase for XML testing using lxml.

Results 1 python-xmlunittest issues
Sort by recently updated
recently updated
newest added

It doesn't seem to be possible right now. Possible workaround: ```python def assertXpathExists(self, node, xpath): if self.eval_xpath(node, 'count(' + xpath + ')') == 0: self.fail('''xpath "%s" doesn't exist''' % xpath)...

enhancement