Source code for openpyxl.styles.tests.test_alignments

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

import pytest

@pytest.fixture
[docs]def Alignment(): from .. alignment import Alignment return Alignment
[docs]def test_default(Alignment): al = Alignment() assert dict(al) == {}
[docs]def test_round_trip(Alignment): args = {'horizontal':'center', 'vertical':'top', 'textRotation':'45', 'indent':'4'} al = Alignment(**args) assert dict(al) == args
[docs]def test_alias(Alignment): al = Alignment(text_rotation=90, shrink_to_fit=True, wrap_text=True) assert dict(al) == { 'textRotation':'90', 'shrinkToFit':'1', 'wrapText':'1'}