mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00

- vba_project is always set if vba_project_signature is set due to new function workbook_add_signed_vba_project - rename functional test_macro_signed to test_macro04 - remove dev/vba_code_signing, will be part of Python lib - remove trailing spaces
27 lines
692 B
Python
27 lines
692 B
Python
###############################################################################
|
|
#
|
|
# Tests for libxlsxwriter.
|
|
#
|
|
# Copyright 2014-2022, 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_macro01(self):
|
|
self.run_exe_test('test_macro01', 'macro01.xlsm')
|
|
|
|
def test_macro02(self):
|
|
self.run_exe_test('test_macro02', 'macro02.xlsm')
|
|
|
|
def test_macro03(self):
|
|
self.run_exe_test('test_macro03', 'macro03.xlsm')
|
|
|
|
def test_macro04(self):
|
|
self.run_exe_test('test_macro04', 'macro04.xlsm')
|