Adds functional tests for ActivitiesController.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7986 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2011-11-29 19:57:07 +00:00
parent fd24250be0
commit dd501b1ba3
1 changed files with 17 additions and 0 deletions

View File

@ -32,6 +32,11 @@ class ActivitiesControllerTest < ActionController::TestCase
}
end
def test_project_index_with_invalid_project_id_should_respond_404
get :index, :id => 299
assert_response 404
end
def test_previous_project_index
get :index, :id => 1, :from => 3.days.ago.to_date
assert_response :success
@ -86,6 +91,11 @@ class ActivitiesControllerTest < ActionController::TestCase
}
end
def test_user_index_with_invalid_user_id_should_respond_404
get :index, :user_id => 299
assert_response 404
end
def test_index_atom_feed
get :index, :format => 'atom'
assert_response :success
@ -94,4 +104,11 @@ class ActivitiesControllerTest < ActionController::TestCase
:tag => 'link',
:attributes => {:href => 'http://test.host/issues/11'}}
end
def test_index_atom_feed_with_one_item_type
get :index, :format => 'atom', :show_issues => '1'
assert_response :success
assert_template 'common/feed.atom'
assert_tag :tag => 'title', :content => /Issues/
end
end