[ZPT] CVS: Packages/Products/PageTemplates - testHTMLTests.py:1.5
chrism@serenade.digicool.com
chrism@serenade.digicool.com
Mon, 26 Mar 2001 16:49:43 -0500
Update of /cvs-repository/Packages/Products/PageTemplates/tests
In directory serenade.digicool.com:/home/chrism/sandboxes/ZPT/lib/python/Products/PageTemplates/tests
Modified Files:
testHTMLTests.py
Log Message:
*** empty log message ***
--- Updated File testHTMLTests.py in package Packages/Products/PageTemplates --
--- testHTMLTests.py 2001/03/26 21:41:44 1.4
+++ testHTMLTests.py 2001/03/26 21:49:43 1.5
@@ -182,6 +182,14 @@
out = t()
util.check_html(expect, out)
+ def checkPathNothing(self):
+ t = self.folder.t
+ t.write(open('input/CheckPathNothing.html').read())
+ expect = open('output/CheckPathNothing.html').read()
+ out = t()
+ util.check_html(expect, out)
+
+
def test_suite():
return unittest.makeSuite(HTMLTests, 'check')