comparison rhodecode/tests/functional/test_admin_permissions.py @ 691:7486da5f0628 beta

Refactor codes for scm model Some test updates, added test for admin user controller
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 14 Nov 2010 22:54:16 +0100
parents rhodecode/tests/functional/test_permissions.py@1e757ac98988
children ffd45b185016
comparison
equal deleted inserted replaced
690:4685f3eafd35 691:7486da5f0628
1 from rhodecode.tests import *
2
3 class TestAdminPermissionsController(TestController):
4
5 def test_index(self):
6 response = self.app.get(url('permissions'))
7 # Test response...
8
9 def test_index_as_xml(self):
10 response = self.app.get(url('formatted_permissions', format='xml'))
11
12 def test_create(self):
13 response = self.app.post(url('permissions'))
14
15 def test_new(self):
16 response = self.app.get(url('new_permission'))
17
18 def test_new_as_xml(self):
19 response = self.app.get(url('formatted_new_permission', format='xml'))
20
21 def test_update(self):
22 response = self.app.put(url('permission', id=1))
23
24 def test_update_browser_fakeout(self):
25 response = self.app.post(url('permission', id=1), params=dict(_method='put'))
26
27 def test_delete(self):
28 response = self.app.delete(url('permission', id=1))
29
30 def test_delete_browser_fakeout(self):
31 response = self.app.post(url('permission', id=1), params=dict(_method='delete'))
32
33 def test_show(self):
34 response = self.app.get(url('permission', id=1))
35
36 def test_show_as_xml(self):
37 response = self.app.get(url('formatted_permission', id=1, format='xml'))
38
39 def test_edit(self):
40 response = self.app.get(url('edit_permission', id=1))
41
42 def test_edit_as_xml(self):
43 response = self.app.get(url('formatted_edit_permission', id=1, format='xml'))