#G. Ken Holman's node-set intersection and difference example from Xml.Xslt import test_harness sheet_and_source = """ 1 2 3 4 5 Intersection: Difference: """ expected = """ Intersection: 2 Intersection: 3 Intersection: 4 Difference: 1 Difference: 5""" def Test(tester): source = test_harness.FileInfo(string=sheet_and_source) sheet = test_harness.FileInfo(string=sheet_and_source) test_harness.XsltTest(tester, source, [sheet], expected) return