Parent: [ba5f15] (diff)

Child: [743608] (diff)

Download this file

test_controller.py    11 lines (6 with data), 247 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('ForgeTracker for' in response)