view tests/test_db.py @ 444:2f68a463cb06

cm: Replace Grunt/RequireJS with Gulp/Browserify. Yes, I know, this sounds like it's 2014 or something, and cool kids are now actually on webpack or whatever. Anyway, besides the change to a `gulpfile`, it also moves all dependencies over to `npm` (via the `package.json` file), which cleans up the repository nicely, and replaces awkward JS imports with simpler `require` statements.
author Ludovic Chabant <ludovic@chabant.com>
date Wed, 03 Jan 2018 00:51:59 -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)