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
This commit is contained in:
Toshi MARUYAMA 2011-10-04 11:08:24 +00:00
parent 2a27cc41f0
commit 43a31e2ca7
1 changed files with 1 additions and 1 deletions

View File

@ -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