# This is in response to bug 1438337 # (). # We have some XPath test cases that provide coverage for the bug, but it's # good to have an XSLT test case or two to deal with it as well. from Xml.Xslt import test_harness SRC_1 = """\ """ SHEET_1 = """\ ! """ EXPECTED_1 = """ """ def Test(tester): source = test_harness.FileInfo(string=SRC_1) sheet = test_harness.FileInfo(string=SHEET_1) test_harness.XsltTest(tester, source, [sheet], EXPECTED_1, title='XPath comparison against empty node-set in an XSLT context') return