]> source.dussan.org Git - redmine.git/commitdiff
Adds test for r7961 fix (#9672).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 27 Nov 2011 21:37:56 +0000 (21:37 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 27 Nov 2011 21:37:56 +0000 (21:37 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7962 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/messages_controller_test.rb

index c27ed6a7b78852bf75fac99f7b3ae07c9b1e08f0..77c477d4ad316cdb93dbcc6df1706aa30cd354d5 100644 (file)
@@ -39,6 +39,17 @@ class MessagesControllerTest < ActionController::TestCase
     assert_not_nil assigns(:project)
     assert_not_nil assigns(:topic)
   end
+  
+  def test_show_should_contain_reply_field_tags_for_quoting
+    @request.session[:user_id] = 2
+    get :show, :board_id => 1, :id => 1
+    assert_response :success
+
+    # tags required by MessagesController#quote
+    assert_tag 'input', :attributes => {:id => 'message_subject'}
+    assert_tag 'textarea', :attributes => {:id => 'message_content'}
+    assert_tag 'div', :attributes => {:id => 'reply'}
+  end
 
   def test_show_with_pagination
     message = Message.find(1)