]> source.dussan.org Git - redmine.git/commitdiff
Adds a test for when displaying the new message form on boards#show.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 27 Feb 2012 15:11:50 +0000 (15:11 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 27 Feb 2012 15:11:50 +0000 (15:11 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9019 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/boards_controller_test.rb

index 3d1983cd473c3972b824d606f2170ed360aa922f..73ec98daef87e1200d9e71d6bd120120d0c79a2a 100644 (file)
@@ -55,6 +55,16 @@ class BoardsControllerTest < ActionController::TestCase
     assert_not_nil assigns(:topics)
   end
 
+  def test_show_with_permission_should_display_the_new_message_form
+    @request.session[:user_id] = 2
+    get :show, :project_id => 1, :id => 1
+    assert_response :success
+    assert_template 'show'
+
+    assert_tag 'form', :attributes => {:id => 'message-form'}
+    assert_tag 'input', :attributes => {:name => 'message[subject]'}
+  end
+
   def test_show_atom
     get :show, :project_id => 1, :id => 1, :format => 'atom'
     assert_response :success