summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorhukl <contact@smyck.org>2009-09-10 16:01:41 +0200
committerhukl <contact@smyck.org>2009-09-10 16:01:41 +0200
commitd7ec763c7ce069824aad24a6bd0d845ee74ed10d (patch)
tree5def39dc36d468d190a072db2a089b7e8f12bd6a /test
parent304ba222fb85178763746ded4c1d252124c9ddfd (diff)
added public rss controller plus template to render the latest 20 updates into a neat little atom feed
Diffstat (limited to 'test')
-rw-r--r--test/functional/rss_controller_test.rb8
-rw-r--r--test/unit/helpers/rss_helper_test.rb4
2 files changed, 12 insertions, 0 deletions
diff --git a/test/functional/rss_controller_test.rb b/test/functional/rss_controller_test.rb
new file mode 100644
index 0000000..161dbd7
--- /dev/null
+++ b/test/functional/rss_controller_test.rb
@@ -0,0 +1,8 @@
1require 'test_helper'
2
3class RssControllerTest < ActionController::TestCase
4 # Replace this with your real tests.
5 test "the truth" do
6 assert true
7 end
8end
diff --git a/test/unit/helpers/rss_helper_test.rb b/test/unit/helpers/rss_helper_test.rb
new file mode 100644
index 0000000..b040b3e
--- /dev/null
+++ b/test/unit/helpers/rss_helper_test.rb
@@ -0,0 +1,4 @@
1require 'test_helper'
2
3class RssHelperTest < ActionView::TestCase
4end