Esempio n. 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])
Esempio n. 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])
Esempio n. 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])
Esempio n. 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])
Esempio n. 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])
Esempio n. 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])