# Mike Olson's attempt to count all of the text characters in a document
# not counting ' ' -- from a request on the list by Evyatar Kafkafi.
from Xml.Xslt import test_harness
source_1 = """
111 112212
111
212
"""
expected = """15"""
sheet_1="""
0
0
1
"""
def Test(tester):
source = test_harness.FileInfo(string=source_1)
sheet = test_harness.FileInfo(string=sheet_1)
test_harness.XsltTest(tester, source, [sheet], expected)
return