예제 #1
0
 def test_xmlEval_mixed (self) :
     sourceRoot = et.fromstring(xml_child_source)
     queryRoot = et.fromstring("<Team><Cooly><Amber></Amber></Cooly><Dragon></Dragon></Team>")
     result = xmlEval(sourceRoot, queryRoot)
     self.assert_(result == [1, 7])
예제 #2
0
 def test_xmlEval_sphere (self) :
     sourceRoot = et.fromstring(xml_child_source)
     queryRoot = et.fromstring(xml_child_query)
     result = xmlEval(sourceRoot, queryRoot)
     self.assert_(result == [2, 2, 7])
예제 #3
0
 def test_xmlEval_easy (self) :
     sourceRoot = et.fromstring(xml_easy)
     queryRoot = et.fromstring("<Team></Team>")
     result = xmlEval(sourceRoot, queryRoot)
     self.assert_(result == [1, 1])
예제 #4
0
 def test_xmlEval_mixed(self):
     sourceRoot = et.fromstring(xml_child_source)
     queryRoot = et.fromstring(
         "<Team><Cooly><Amber></Amber></Cooly><Dragon></Dragon></Team>")
     result = xmlEval(sourceRoot, queryRoot)
     self.assert_(result == [1, 7])
예제 #5
0
 def test_xmlEval_sphere(self):
     sourceRoot = et.fromstring(xml_child_source)
     queryRoot = et.fromstring(xml_child_query)
     result = xmlEval(sourceRoot, queryRoot)
     self.assert_(result == [2, 2, 7])
예제 #6
0
 def test_xmlEval_easy(self):
     sourceRoot = et.fromstring(xml_easy)
     queryRoot = et.fromstring("<Team></Team>")
     result = xmlEval(sourceRoot, queryRoot)
     self.assert_(result == [1, 1])