mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
58 lines
1.4 KiB
Python
58 lines
1.4 KiB
Python
###############################################################################
|
|
#
|
|
# Tests for libxlsxwriter.
|
|
#
|
|
# Copyright 2014-2019, 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_comment01(self):
|
|
self.run_exe_test('test_comment01')
|
|
|
|
def test_comment02(self):
|
|
self.run_exe_test('test_comment02')
|
|
|
|
def test_comment03(self):
|
|
self.run_exe_test('test_comment03')
|
|
|
|
def test_comment04(self):
|
|
self.run_exe_test('test_comment04')
|
|
|
|
def test_comment05(self):
|
|
self.run_exe_test('test_comment05')
|
|
|
|
def test_comment06(self):
|
|
self.run_exe_test('test_comment06')
|
|
|
|
def test_comment07(self):
|
|
self.run_exe_test('test_comment07')
|
|
|
|
def test_comment08(self):
|
|
self.run_exe_test('test_comment08')
|
|
|
|
def test_comment09(self):
|
|
self.run_exe_test('test_comment09')
|
|
|
|
def test_comment10(self):
|
|
self.run_exe_test('test_comment10')
|
|
|
|
def test_comment11(self):
|
|
self.run_exe_test('test_comment11')
|
|
|
|
def test_comment12(self):
|
|
self.run_exe_test('test_comment12')
|
|
|
|
def test_comment13(self):
|
|
self.ignore_files = ['xl/styles.xml']
|
|
self.run_exe_test('test_comment13')
|
|
|
|
def test_comment14(self):
|
|
self.run_exe_test('test_comment14')
|