from wradmin.tests import * class TestRodelbahnController(TestController): def test_index(self): response = self.app.get(url(controller='rodelbahn', action='index')) # Test response... def test_list(self): response = self.app.get(url(controller='rodelbahn', action='list')) # Test response... def test_view(self): response = self.app.get(url(controller='rodelbahn', action='view', id=5)) # Test response...