summaryrefslogtreecommitdiffstats
path: root/test/functional/projects_controller_test.rb
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-10-04 11:08:24 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-10-04 11:08:24 +0000
commit43a31e2ca7192d85cccfe2545e51c5f9f26f6b11 (patch)
treeec051411503885bc55f0bea9ca269eaa42cb939f /test/functional/projects_controller_test.rb
parent2a27cc41f05667159e8972e117d7d18089bba560 (diff)
downloadredmine-43a31e2ca7192d85cccfe2545e51c5f9f26f6b11.tar.gz
redmine-43a31e2ca7192d85cccfe2545e51c5f9f26f6b11.zip
remove hard-coded '.rxml' from 'test_index_atom' at functional projects controller test (#6317)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7574 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/projects_controller_test.rb')
-rw-r--r--test/functional/projects_controller_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/projects_controller_test.rb b/test/functional/projects_controller_test.rb
index 6125745db..fa35df7de 100644
--- a/test/functional/projects_controller_test.rb
+++ b/test/functional/projects_controller_test.rb
@@ -55,7 +55,7 @@ class ProjectsControllerTest < ActionController::TestCase
def test_index_atom
get :index, :format => 'atom'
assert_response :success
- assert_template 'common/feed.atom.rxml'
+ assert_template 'common/feed.atom'
assert_select 'feed>title', :text => 'Redmine: Latest projects'
assert_select 'feed>entry', :count => Project.count(:conditions => Project.visible_condition(User.current))
end