mirror of
https://github.com/redmine/redmine.git
synced 2025-11-05 04:45:57 +01:00
Insert a link to the source to the attribution line when quoting a note or a message (#31427).
Patch by Mizuki ISHIKAWA. git-svn-id: http://svn.redmine.org/redmine/trunk@18217 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -257,7 +257,22 @@ class MessagesControllerTest < Redmine::ControllerTest
|
||||
assert_nil Message.find_by_id(2)
|
||||
end
|
||||
|
||||
def test_quote
|
||||
def test_quote_if_message_is_root
|
||||
@request.session[:user_id] = 2
|
||||
get :quote, :params => {
|
||||
:board_id => 1,
|
||||
:id => 1
|
||||
},
|
||||
:xhr => true
|
||||
assert_response :success
|
||||
assert_equal 'text/javascript', response.content_type
|
||||
|
||||
assert_include 'RE: First post', response.body
|
||||
assert_include "Redmine Admin wrote:", response.body
|
||||
assert_include '> This is the very first post\n> in the forum', response.body
|
||||
end
|
||||
|
||||
def test_quote_if_message_is_not_root
|
||||
@request.session[:user_id] = 2
|
||||
get :quote, :params => {
|
||||
:board_id => 1,
|
||||
@@ -268,6 +283,7 @@ class MessagesControllerTest < Redmine::ControllerTest
|
||||
assert_equal 'text/javascript', response.content_type
|
||||
|
||||
assert_include 'RE: First post', response.body
|
||||
assert_include 'John Smith wrote in message#3:', response.body
|
||||
assert_include '> An other reply', response.body
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user