#Olivier Cayrol reports (https://sourceforge.net/tracker/index.php?func=detail&aid=452113&group_id=6473&atid=106473) bug with spacing and nbsps from Xml.Xslt import test_harness sheet_1 = """\

 

 

 

 *

* *

*

       * * * *
""" source_1 = """\ """ expected_1 = '\n\n \n \n \n \n

 

\n

 

\n

 

\n

 *

\n

\n

* *

\n

*

\n \n \n \n \n \n \n \n \n \n \n
      ** **
\n \n' 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='Spacing and nbsps (Olivier Cayroll)') return