Commit c8023946 authored by Christian Ledermann's avatar Christian Ledermann

add tests for styles

parent 504510ab
...@@ -327,6 +327,7 @@ class StyleFromStringTestCase( unittest.TestCase ): ...@@ -327,6 +327,7 @@ class StyleFromStringTestCase( unittest.TestCase ):
style = list(list(k.features()[0].styles())[0].styles())[0] style = list(list(k.features()[0].styles())[0].styles())[0]
self.assertTrue(isinstance(style, styles.LabelStyle)) self.assertTrue(isinstance(style, styles.LabelStyle))
self.assertEqual(style.color, 'ff0000cc') self.assertEqual(style.color, 'ff0000cc')
self.assertEqual(style.colorMode, None)
k2 = kml.KML() k2 = kml.KML()
k2.from_string(k.to_string()) k2.from_string(k.to_string())
self.assertEqual(k.to_string(), k2.to_string()) self.assertEqual(k.to_string(), k2.to_string())
...@@ -443,19 +444,6 @@ class StyleFromStringTestCase( unittest.TestCase ): ...@@ -443,19 +444,6 @@ class StyleFromStringTestCase( unittest.TestCase ):
</PolyStyle> </PolyStyle>
</Style> </Style>
<!-- End Style Definitions --> <!-- End Style Definitions -->
<!-- Placemark #1 -->
<Placemark>
<name>Google Earth - New Polygon</name>
<description>Here is some descriptive text</description>
<styleUrl>#myDefaultStyles</styleUrl>
. . .
</Placemark>
<!-- Placemark #2 -->
<Placemark>
<name>Google Earth - New Path</name>
<styleUrl>#myDefaultStyles</styleUrl>
. . . .
</Placemark>
</Document> </Document>
</kml>""" </kml>"""
k = kml.KML() k = kml.KML()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment