diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-04-30 10:45:21 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-04-30 10:45:21 +0000 |
commit | 51c8f3143c869c10e8bcb760da2b66e7d7ef229d (patch) | |
tree | bbc9bc9d8d6a48b9d6bf191a585c77f1c43a8b6b /test/functional | |
parent | 0d938dff59df0584b988a3714259adafee406bde (diff) | |
download | redmine-51c8f3143c869c10e8bcb760da2b66e7d7ef229d.tar.gz redmine-51c8f3143c869c10e8bcb760da2b66e7d7ef229d.zip |
Fixes URLs in atom feeds broken by r3681 (#5403).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3703 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/projects_controller_test.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/functional/projects_controller_test.rb b/test/functional/projects_controller_test.rb index c23bc17b2..ded7b8b1b 100644 --- a/test/functional/projects_controller_test.rb +++ b/test/functional/projects_controller_test.rb @@ -447,6 +447,9 @@ class ProjectsControllerTest < ActionController::TestCase get :activity, :format => 'atom' assert_response :success assert_template 'common/feed.atom.rxml' + assert_tag :tag => 'entry', :child => { + :tag => 'link', + :attributes => {:href => 'http://test.host/issues/11'}} end def test_archive |