diff options
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/projects_controller_test.rb | 8 |
1 files changed, 8 insertions, 0 deletions
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
|