Mercurial > wikked
view tests/test_db.py @ 445:b8db406cc5e4
web: Fix UI bugs and do a few improvements.
- Fix problems introduced by upgrading to the latest PureCSS.
- Simplify CSS/JS includes into the page.
- Add a bit of shadow to the body when the search field is focused/expanded.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Wed, 03 Jan 2018 00:58:09 -0800 |
parents | ebb12ff21cb2 |
children |
line wrap: on
line source
from tests import WikkedTest class DatabaseTest(WikkedTest): def testEmpty(self): wiki = self._getWikiFromStructure({}) self.assertEqual([], list(wiki.getPageUrls())) def testOnePage(self): wiki = self._getWikiFromStructure({ '/foo.txt': 'A test page.' }) self.assertEqual(['/foo'], list(wiki.getPageUrls())) page = wiki.getPage('/foo') self.assertEqual('/foo', page.url) self.assertEqual('/foo.txt', page.path) self.assertEqual('A test page.', page.raw_text)