Source code for openpyxl.reader.tests.test_strings

# Copyright (c) 2010-2017 openpyxl


# package imports
from openpyxl.reader.strings import read_string_table

from openpyxl.tests.helper import compare_xml


[docs]def test_read_string_table(datadir): datadir.chdir() src = 'sharedStrings.xml' with open(src) as content: assert read_string_table(content.read()) == [ u'This is cell A1 in Sheet 1', u'This is cell G5']
[docs]def test_empty_string(datadir): datadir.chdir() src = 'sharedStrings-emptystring.xml' with open(src) as content: assert read_string_table(content.read()) == [u'Testing empty cell', u'']
[docs]def test_formatted_string_table(datadir): datadir.chdir() src = 'shared-strings-rich.xml' with open(src) as content: assert read_string_table(content.read()) == [ u'Welcome', u'to the best shop in town', u" let's play " ]