diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-01-03 14:42:15 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-01-03 14:42:15 +0000 |
commit | 58a63c49c49bfdde9ad1d5db5157662ca60c2c8e (patch) | |
tree | f1c7c582b688886b9d8c231f0802a32d663826e6 /test/functional/previews_controller_test.rb | |
parent | 4ccc7dff14c2ca6912d2ce64c4ab99727c2303e6 (diff) | |
download | redmine-58a63c49c49bfdde9ad1d5db5157662ca60c2c8e.tar.gz redmine-58a63c49c49bfdde9ad1d5db5157662ca60c2c8e.zip |
Fixed that magic links to existing attachments are not converted when previewing issue notes.
git-svn-id: http://svn.redmine.org/redmine/trunk@12476 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/previews_controller_test.rb')
-rw-r--r-- | test/functional/previews_controller_test.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/functional/previews_controller_test.rb b/test/functional/previews_controller_test.rb index f99ccb401..490e62320 100644 --- a/test/functional/previews_controller_test.rb +++ b/test/functional/previews_controller_test.rb @@ -54,6 +54,14 @@ class PreviewsControllerTest < ActionController::TestCase assert_tag :p, :content => 'Foo' end + def test_preview_issue_notes_should_support_links_to_existing_attachments + Attachment.generate!(:container => Issue.find(1), :filename => 'foo.bar') + @request.session[:user_id] = 2 + post :issue, :project_id => '1', :id => 1, :notes => 'attachment:foo.bar' + assert_response :success + assert_select 'a.attachment', :text => 'foo.bar' + end + def test_preview_new_news get :news, :project_id => 1, :news => {:title => '', |