Child: [677fed] (diff)

Download this file

test_root.py    18 lines (11 with data), 487 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
from nose.tools import assert_true
from forgewiki.tests import TestController
class TestRootController(TestController):
def test_index(self):
response = self.app.get('/Wiki/')
assert_true('ForgeWiki Index Page' in response)
assert_true('ForgeWiki Index Page' in response)
def test_index2(self):
response = self.app.get('/Wiki/')
assert_true('ForgeWiki Index Page' in response)
assert_true('ForgeWiki Index Page' in response)