mirror of
https://github.com/jmcnamara/libxlsxwriter.git
synced 2026-05-16 06:06:11 -06:00
Added support for pixel sizing in worksheet_set_row() and worksheet_set_column() via new functions called worksheet_set_row_pixels() and worksheet_set_column_pixels().
28 lines
682 B
Python
28 lines
682 B
Python
###############################################################################
|
|
#
|
|
# Tests for libxlsxwriter.
|
|
#
|
|
# Copyright 2014-2021, John McNamara, jmcnamara@cpan.org
|
|
#
|
|
|
|
import base_test_class
|
|
|
|
class TestCompareXLSXFiles(base_test_class.XLSXBaseTest):
|
|
"""
|
|
Test file created with libxlsxwriter against a file created by Excel.
|
|
|
|
"""
|
|
|
|
def test_set_row01(self):
|
|
self.run_exe_test('test_set_row01')
|
|
|
|
|
|
def test_set_row02(self):
|
|
self.run_exe_test('test_set_row02', 'set_row01.xlsx')
|
|
|
|
def test_set_row03(self):
|
|
self.run_exe_test('test_set_row03')
|
|
|
|
|
|
def test_set_row04(self):
|
|
self.run_exe_test('test_set_row04', 'set_row03.xlsx')
|