Browse Source

Remove axis tests for Treemap

pull/130/head
Florian Mounier 10 years ago
parent
commit
2c5a5e9156
  1. 8
      pygal/test/test_config.py
  2. 2
      pygal/test/test_graph.py

8
pygal/test/test_config.py

@ -18,7 +18,7 @@
# along with pygal. If not, see <http://www.gnu.org/licenses/>. # along with pygal. If not, see <http://www.gnu.org/licenses/>.
from pygal import ( from pygal import (
Line, Dot, Pie, Radar, Config, Bar, Funnel, Worldmap, Line, Dot, Pie, Treemap, Radar, Config, Bar, Funnel, Worldmap,
SupranationalWorldmap, Histogram, Gauge, Box, XY, SupranationalWorldmap, Histogram, Gauge, Box, XY,
Pyramid, DateY, HorizontalBar, HorizontalStackedBar, Pyramid, DateY, HorizontalBar, HorizontalStackedBar,
FrenchMap_Regions, FrenchMap_Departments) FrenchMap_Regions, FrenchMap_Departments)
@ -272,7 +272,7 @@ def test_no_data():
def test_include_x_axis(Chart): def test_include_x_axis(Chart):
chart = Chart() chart = Chart()
if Chart in (Pie, Radar, Funnel, Dot, Gauge, Worldmap, if Chart in (Pie, Treemap, Radar, Funnel, Dot, Gauge, Worldmap,
SupranationalWorldmap, Histogram, Box, SupranationalWorldmap, Histogram, Box,
FrenchMap_Regions, FrenchMap_Departments): FrenchMap_Regions, FrenchMap_Departments):
return return
@ -359,7 +359,7 @@ def test_x_y_title(Chart):
def test_x_label_major(Chart): def test_x_label_major(Chart):
if Chart in ( if Chart in (
Pie, Funnel, Dot, Gauge, Worldmap, Pie, Treemap, Funnel, Dot, Gauge, Worldmap,
SupranationalWorldmap, Histogram, Box, SupranationalWorldmap, Histogram, Box,
FrenchMap_Regions, FrenchMap_Departments, FrenchMap_Regions, FrenchMap_Departments,
Pyramid, DateY): Pyramid, DateY):
@ -403,7 +403,7 @@ def test_x_label_major(Chart):
def test_y_label_major(Chart): def test_y_label_major(Chart):
if Chart in ( if Chart in (
Pie, Funnel, Dot, Gauge, Worldmap, Pie, Treemap, Funnel, Dot, Gauge, Worldmap,
SupranationalWorldmap, Histogram, Box, SupranationalWorldmap, Histogram, Box,
FrenchMap_Regions, FrenchMap_Departments, FrenchMap_Regions, FrenchMap_Departments,
HorizontalBar, HorizontalStackedBar, HorizontalBar, HorizontalStackedBar,

2
pygal/test/test_graph.py

@ -105,7 +105,7 @@ def test_metadata(Chart):
'Five', 'http://7.example.com/', 'Seven'): 'Five', 'http://7.example.com/', 'Seven'):
assert md in cut(q('desc'), 'text') assert md in cut(q('desc'), 'text')
if Chart == pygal.Pie: if Chart in (pygal.Pie, pygal.Treemap):
# Slices with value 0 are not rendered # Slices with value 0 are not rendered
assert len(v) - 1 == len(q('.tooltip-trigger').siblings('.value')) assert len(v) - 1 == len(q('.tooltip-trigger').siblings('.value'))
elif Chart not in ( elif Chart not in (

Loading…
Cancel
Save