Mercurial > public > src > rhodecode
comparison pylons_app/tests/functional/test_repos.py @ 47:f6ac79182600
Added rest controllers for repos and users,
templating changes + css fixes
author | Marcin Kuzminski <marcin@python-blog.com> |
---|---|
date | Wed, 07 Apr 2010 20:19:25 +0200 |
parents | |
children | 7c978511c951 |
comparison
equal
deleted
inserted
replaced
46:9db7782727b3 | 47:f6ac79182600 |
---|---|
1 from pylons_app.tests import * | |
2 | |
3 class TestReposController(TestController): | |
4 | |
5 def test_index(self): | |
6 response = self.app.get(url('repos')) | |
7 # Test response... | |
8 | |
9 def test_index_as_xml(self): | |
10 response = self.app.get(url('formatted_repos', format='xml')) | |
11 | |
12 def test_create(self): | |
13 response = self.app.post(url('repos')) | |
14 | |
15 def test_new(self): | |
16 response = self.app.get(url('new_repo')) | |
17 | |
18 def test_new_as_xml(self): | |
19 response = self.app.get(url('formatted_new_repo', format='xml')) | |
20 | |
21 def test_update(self): | |
22 response = self.app.put(url('repo', id=1)) | |
23 | |
24 def test_update_browser_fakeout(self): | |
25 response = self.app.post(url('repo', id=1), params=dict(_method='put')) | |
26 | |
27 def test_delete(self): | |
28 response = self.app.delete(url('repo', id=1)) | |
29 | |
30 def test_delete_browser_fakeout(self): | |
31 response = self.app.post(url('repo', id=1), params=dict(_method='delete')) | |
32 | |
33 def test_show(self): | |
34 response = self.app.get(url('repo', id=1)) | |
35 | |
36 def test_show_as_xml(self): | |
37 response = self.app.get(url('formatted_repo', id=1, format='xml')) | |
38 | |
39 def test_edit(self): | |
40 response = self.app.get(url('edit_repo', id=1)) | |
41 | |
42 def test_edit_as_xml(self): | |
43 response = self.app.get(url('formatted_edit_repo', id=1, format='xml')) |