tahoe-lafs/src/allmydata/test/test_nevow.py

12 lines
415 B
Python
Raw Normal View History

from twisted.trial import unittest
from formless import webform
class Web(unittest.TestCase):
def test_read_default_css(self):
"""
Sometimes Nevow can't find its resource files such as its default css file.
"""
webform.defaultCSS.openForReading()
2008-02-29 20:10:08 +00:00
test_read_default_css.todo = "This patch that we submitted to Nevow fixes this issue: http://www.divmod.org/trac/ticket/2527"