Commit 4e5b4b41 authored by Chris McDonough's avatar Chris McDonough

*** empty log message ***

parent 5415dbe3
<html>
<body>
<head>
<title tal:content="path:nothing">Hello World!</title>
</head>
</body>
</html>
<html>
<body>
<head>
<title tal:content="path:nothing"></title>
</head>
</body>
</html>
......@@ -182,6 +182,14 @@ class HTMLTests(unittest.TestCase):
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')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment