]> ToastFreeware Gitweb - philipp/winterrodeln/wradmin.git/blob - tests/functional/test_rodelbahn.py
4053de36e386a9fa3a0caf24943342b0e91b7ab3
[philipp/winterrodeln/wradmin.git] / tests / functional / test_rodelbahn.py
1 from wradmin.tests import *
2
3 class TestRodelbahnController(TestController):
4
5     def test_index(self):
6         response = self.app.get(url(controller='rodelbahn', action='index'))
7         # Test response...
8     
9     
10     def test_list(self):
11         response = self.app.get(url(controller='rodelbahn', action='list'))
12         # Test response...
13     
14     
15     def test_view(self):
16         response = self.app.get(url(controller='rodelbahn', action='view', id=5))
17         # Test response...