diff pylons_app/tests/functional/test_feed.py @ 459:7c978511c951

implemented basic (startup) nose test suite.
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 05 Sep 2010 16:20:29 +0200
parents 66b20f525750
children 6b934c9607e7
line wrap: on
line diff
--- a/pylons_app/tests/functional/test_feed.py	Sun Sep 05 13:55:47 2010 +0200
+++ b/pylons_app/tests/functional/test_feed.py	Sun Sep 05 16:20:29 2010 +0200
@@ -2,6 +2,12 @@
 
 class TestFeedController(TestController):
 
-    def test_index(self):
-        response = self.app.get(url(controller='feed', action='index'))
+    def test_rss(self):
+        response = self.app.get(url(controller='feed', action='rss',
+                                    repo_name='vcs_test'))
         # Test response...
+
+    def test_atom(self):
+        response = self.app.get(url(controller='feed', action='atom',
+                                    repo_name='vcs_test'))
+        # Test response...
\ No newline at end of file