Mercurial > moin > 1.9
view MoinMoin/_tests/test_Page.py @ 0:77665d8e2254
tag of nonpublic@localhost--archive/moin--enterprise--1.5--base-0
(automatically generated log message)
imported from: moin--main--1.5--base-0
author | Thomas Waldmann <tw-public@gmx.de> |
---|---|
date | Thu, 22 Sep 2005 15:09:50 +0000 |
parents | |
children | 9931a09387b0 |
line wrap: on
line source
# -*- coding: iso-8859-1 -*- """ MoinMoin - MoinMoin.Page Tests @copyright: 2003-2004 by Jürgen Hermann <jh@web.de> @license: GNU GPL, see COPYING for details. """ import unittest from MoinMoin import Page class existsTestCase(unittest.TestCase): """Page: testing wiki page""" def testExists(self): """ Page: page.exists() finds existing pages only """ tests = ( # Page name, expected ('FrontPage', 1), ('OnlyAnIdiotWouldCreateSuchaPage', 0), ) for name, expected in tests: pg = Page.Page(self.request, name) self.assertEqual(pg.exists(), expected, '%s should%s exist' % (name, (' not', '')[expected]))