# At the time of this writing, 4xslt was not correctly determining the
# string-value of a root node. Also, when pDomlette was being used,
# a traceback would be generated when referencing a root node in an
# attribute value template.
from Xml.Xslt import test_harness
source_1 = """\
hello world"""
sheet_1 = """\
"""
expected_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_1,
title='namespace copy-through')
return