Parent: [2e33dd] (diff)

Child: [97b620] (diff)

Download this file

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

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