Holger Hoffmann a733212990 - packager: add signature specific files/contents if workbook->vba_project_signature is set
- 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
2023-09-20 18:09:17 +02:00

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')