From b5444b5fcd84008a67a5486e373813dec1a371c8 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sat, 12 Jul 2008 09:42:18 +0000 Subject: Fixed: no :author method error on projects atom feed (#1623). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1653 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/functional/projects_controller_test.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test/functional/projects_controller_test.rb') diff --git a/test/functional/projects_controller_test.rb b/test/functional/projects_controller_test.rb index 88a9fae60..f5f1c6733 100644 --- a/test/functional/projects_controller_test.rb +++ b/test/functional/projects_controller_test.rb @@ -42,6 +42,14 @@ class ProjectsControllerTest < Test::Unit::TestCase # Subproject in corresponding value assert assigns(:project_tree)[Project.find(1)].include?(Project.find(3)) end + + def test_index_atom + get :index, :format => 'atom' + assert_response :success + assert_template 'common/feed.atom.rxml' + assert_select 'feed>title', :text => 'Redmine: Latest projects' + assert_select 'feed>entry', :count => Project.count(:conditions => Project.visible_by(User.current)) + end def test_show_by_id get :show, :id => 1 -- cgit v1.2.3