Index: lib/python/Products/PageTemplates/tests/input/DefaultReplace.html =================================================================== --- lib/python/Products/PageTemplates/tests/input/DefaultReplace.html (revision 0) +++ lib/python/Products/PageTemplates/tests/input/DefaultReplace.html (revision 0) @@ -0,0 +1,18 @@ + + + The title + + + + +[] + +[] + +[] + + + Index: lib/python/Products/PageTemplates/tests/output/DefaultReplace.html =================================================================== --- lib/python/Products/PageTemplates/tests/output/DefaultReplace.html (revision 0) +++ lib/python/Products/PageTemplates/tests/output/DefaultReplace.html (revision 0) @@ -0,0 +1,15 @@ + + + The title + + + + +[] + +[] + +[] + + + Index: lib/python/Products/PageTemplates/tests/testHTMLTests.py =================================================================== --- lib/python/Products/PageTemplates/tests/testHTMLTests.py (revision 73857) +++ lib/python/Products/PageTemplates/tests/testHTMLTests.py (working copy) @@ -179,6 +179,9 @@ # be used together with 'default'. self.assert_expected(self.folder.t, 'BooleanAttributesAndDefault.html') + def checkDefaultReplace(self): + self.assert_expected(self.folder.t, 'DefaultReplace.html') + def test_suite(): return unittest.makeSuite(HTMLTests, 'check')