comparison rhodecode/tests/functional/test_users_groups.py @ 956:83d35d716a02 beta

started working on issue #56
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 25 Jan 2011 18:59:20 +0100
parents
children
comparison
equal deleted inserted replaced
955:129eb072b8a8 956:83d35d716a02
1 from rhodecode.tests import *
2
3 class TestUsersGroupsController(TestController):
4
5 def test_index(self):
6 response = self.app.get(url('users_groups'))
7 # Test response...
8
9 def test_index_as_xml(self):
10 response = self.app.get(url('formatted_users_groups', format='xml'))
11
12 def test_create(self):
13 response = self.app.post(url('users_groups'))
14
15 def test_new(self):
16 response = self.app.get(url('new_users_group'))
17
18 def test_new_as_xml(self):
19 response = self.app.get(url('formatted_new_users_group', format='xml'))
20
21 def test_update(self):
22 response = self.app.put(url('users_group', id=1))
23
24 def test_update_browser_fakeout(self):
25 response = self.app.post(url('users_group', id=1), params=dict(_method='put'))
26
27 def test_delete(self):
28 response = self.app.delete(url('users_group', id=1))
29
30 def test_delete_browser_fakeout(self):
31 response = self.app.post(url('users_group', id=1), params=dict(_method='delete'))
32
33 def test_show(self):
34 response = self.app.get(url('users_group', id=1))
35
36 def test_show_as_xml(self):
37 response = self.app.get(url('formatted_users_group', id=1, format='xml'))
38
39 def test_edit(self):
40 response = self.app.get(url('edit_users_group', id=1))
41
42 def test_edit_as_xml(self):
43 response = self.app.get(url('formatted_edit_users_group', id=1, format='xml'))