/comments.atom: add atom feed for comments.

This commit is contained in:
evazion
2017-05-11 23:52:35 -05:00
parent 78b08d8394
commit e68946e95d
7 changed files with 42 additions and 1 deletions

View File

@@ -36,6 +36,11 @@ class CommentsControllerTest < ActionController::TestCase
get :index, {:group_by => "comment"}
assert_response :success
end
should "render for atom feeds" do
get :index, {:format => "atom"}
assert_response :success
end
end
context "search action" do