예제 #1
0
 def test_analyze_long(self):
     analyze = KMLExtract(
         open(
             pkg_resources.resource_filename(
                 "gpsies_importer.tests.extract",
                 "54KmTeltowkanal.kml")).read())
     result = analyze.analyze()
     assert len(result) > 0
예제 #2
0
 def test_analyze(self):
     analyze = KMLExtract(self.test_kml)
     result = analyze.analyze()
     self.assertGreater(len(result), 0, 'Result tree is empty!')
     self.assertEqual(
         etree.tostring(result),
         '<ns0:waypoints xmlns:ns0="https://github.com/StevenMohr/gpsies-xml/schema/database.xsd"><ns0:waypoint longitude="8.55" latitude="47.3666667"/></ns0:waypoints>',
         'waypoint sub-tree incorrect')
예제 #3
0
 def test_analyze_long(self):
     analyze = KMLExtract(open(pkg_resources.resource_filename("gpsies_importer.tests.extract","54KmTeltowkanal.kml")).read())
     result = analyze.analyze(True)
     assert len(result) > 0  
예제 #4
0
 def test_analyze(self):
     analyze = KMLExtract(self.test_kml)
     result = analyze.analyze(True)
     self.assertGreater(len(result), 0, 'Result tree is empty!')
     self.assertEqual(etree.tostring(result), '<ns0:waypoints xmlns:ns0="https://github.com/StevenMohr/gpsies-xml/schema/database.xsd"><ns0:waypoint longitude="8.55" latitude="47.3666667"/></ns0:waypoints>', 'waypoint sub-tree incorrect')