#Sebastian Pierre's problem with xsl:number and multiple from Xml.Xslt import test_harness sheet_1 = """

XSL Numbering test

For '':

""" source_1 = """

Blah

Blah

Blah

Nojasdsa

BKjasda

BKjasda

kjhkdsfsdfd

Blah

Blah

Blah

Blah

Blah

Blah

""" expected_1 = """

XSL Numbering test

For '':

For '1':

BlahBlahBlah

For '1.a':

Nojasdsa

For '1.a.a':

BKjasda

For '1.a.b':

BKjasda

For '1.b':

kjhkdsfsdfdBlahBlahBlah

For '2':

Blah

For '':

Blah

For '1':

Blah
""" 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) return