Source code for openpyxl.chart.tests.test_line_chart

from __future__ import absolute_import
# Copyright (c) 2010-2017 openpyxl

import pytest

from openpyxl.xml.functions import fromstring, tostring
from openpyxl.tests.helper import compare_xml

@pytest.fixture
[docs]def LineChart(): from ..line_chart import LineChart return LineChart
[docs]class TestLineChart:
[docs] def test_ctor(self, LineChart): chart = LineChart() xml = tostring(chart.to_tree()) expected = """ <lineChart> <grouping val="standard"></grouping> <axId val="10"></axId> <axId val="100"></axId> </lineChart> """ diff = compare_xml(xml, expected) assert diff is None, diff
[docs] def test_from_xml(self, LineChart): src = """ <lineChart> <grouping val="stacked"></grouping> <axId val="10"></axId> <axId val="100"></axId> </lineChart> """ node = fromstring(src) chart = LineChart.from_tree(node) assert dict(chart) == {} assert chart.grouping == "stacked"
@pytest.fixture
[docs]def LineChart3D(): from ..line_chart import LineChart3D return LineChart3D
[docs]class TestLineChart3D:
[docs] def test_ctor(self, LineChart3D): line_chart = LineChart3D() xml = tostring(line_chart.to_tree()) expected = """ <line3DChart> <grouping val="standard"></grouping> <axId val="10"></axId> <axId val="100"></axId> <axId val="1000"></axId> </line3DChart> """ diff = compare_xml(xml, expected) assert diff is None, diff
[docs] def test_from_xml(self, LineChart3D): src = """ <line3DChart> <grouping val="standard"></grouping> <axId val="10"></axId> <axId val="100"></axId> <axId val="1000"></axId> </line3DChart> """ node = fromstring(src) line_chart = LineChart3D.from_tree(node) assert line_chart == LineChart3D()