Parent: [743608] (diff)

Child: [e5b93e] (diff)

Download this file

test_controller.py    11 lines (6 with data), 238 Bytes

1
2
3
4
5
6
7
8
9
from nose.tools import assert_true
from alluratest.controller import TestController
class TestRootController(TestController):
def test_index(self):
response = self.app.get('/bugs/')
assert_true('bugs' in response)