]> source.dussan.org Git - redmine.git/commitdiff
remove hard-coded '.rxml' from 'test_index_atom' at functional projects controller...
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Tue, 4 Oct 2011 11:08:24 +0000 (11:08 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Tue, 4 Oct 2011 11:08:24 +0000 (11:08 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7574 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/projects_controller_test.rb

index 6125745dbc70fe92fad957d8272a28aa31700b44..fa35df7dedbc0ccd1ab152b1b8ffa03bd57bd72f 100644 (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