29 lines
682 B
Python
29 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')
|