Source code for openpyxl.chart.tests.test_updown_bars

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 UpDownBars(): from ..updown_bars import UpDownBars return UpDownBars
[docs]class TestUpDownBars:
[docs] def test_ctor(self, UpDownBars): bars = UpDownBars(gapWidth=150) xml = tostring(bars.to_tree()) expected = """ <upbars> <gapWidth val="150"/> </upbars> """ diff = compare_xml(xml, expected) assert diff is None, diff
[docs] def test_from_xml(self, UpDownBars): src = """ <upDownBars> <gapWidth val="156"/> </upDownBars> """ node = fromstring(src) bars = UpDownBars.from_tree(node) assert bars == UpDownBars(gapWidth=156)