diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rhodecode/tests/functional/test_feed.py	Wed Oct 06 03:18:16 2010 +0200
@@ -0,0 +1,15 @@
+from rhodecode.tests import *
+
+class TestFeedController(TestController):
+
+    def test_rss(self):
+        self.log_user()
+        response = self.app.get(url(controller='feed', action='rss',
+                                    repo_name='vcs_test'))
+        # Test response...
+
+    def test_atom(self):
+        self.log_user()
+        response = self.app.get(url(controller='feed', action='atom',
+                                    repo_name='vcs_test'))
+        # Test response...
\ No newline at end of file