comparison rhodecode/tests/functional/test_feed.py @ 547:1e757ac98988

renamed project to rhodecode
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 06 Oct 2010 03:18:16 +0200
parents pylons_app/tests/functional/test_feed.py@6b934c9607e7
children 8acbfa837180
comparison
equal deleted inserted replaced
546:7c2f5e4d7bbf 547:1e757ac98988
1 from rhodecode.tests import *
2
3 class TestFeedController(TestController):
4
5 def test_rss(self):
6 self.log_user()
7 response = self.app.get(url(controller='feed', action='rss',
8 repo_name='vcs_test'))
9 # Test response...
10
11 def test_atom(self):
12 self.log_user()
13 response = self.app.get(url(controller='feed', action='atom',
14 repo_name='vcs_test'))
15 # Test response...