libxlsxwriter/test/functional/test_chart_title.py
John McNamara 393ded9a2d Add option to turn off bold in chart title font.
Added the LXW_EXPLICIT_FALSE variable to allow the default bold
property in chart title fonts to be turned off.

Closes #199
2021-07-12 22:33:11 +01:00

23 lines
593 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_chart_title01(self):
self.run_exe_test('test_chart_title01')
def test_chart_title02(self):
self.run_exe_test('test_chart_title02')
def test_chart_title03(self):
self.run_exe_test('test_chart_title03')