Source code for openpyxl.styles.tests.test_alignments

# Copyright (c) 2010-2023 openpyxl

import pytest

[docs] @pytest.fixture 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'}