diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-12-22 09:35:35 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-12-22 09:35:35 +0000 |
commit | 3976d5e7408d39d326c0f3ee240225577f4a28ef (patch) | |
tree | 26fe9b9889a471a6deb70c92ddef5ddbdea51605 /test/functional/boards_controller_test.rb | |
parent | eecabc5bb0e61277aef011ea7126eeaaefc00bf5 (diff) | |
download | redmine-3976d5e7408d39d326c0f3ee240225577f4a28ef.tar.gz redmine-3976d5e7408d39d326c0f3ee240225577f4a28ef.zip |
Use #assert_select instead of #assert_tag.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11066 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/boards_controller_test.rb')
-rw-r--r-- | test/functional/boards_controller_test.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/functional/boards_controller_test.rb b/test/functional/boards_controller_test.rb index 8afe4f748..342ba89ce 100644 --- a/test/functional/boards_controller_test.rb +++ b/test/functional/boards_controller_test.rb @@ -75,8 +75,9 @@ class BoardsControllerTest < ActionController::TestCase assert_response :success assert_template 'show' - assert_tag 'form', :attributes => {:id => 'message-form'} - assert_tag 'input', :attributes => {:name => 'message[subject]'} + assert_select 'form#message-form' do + assert_select 'input[name=?]', 'message[subject]' + end end def test_show_atom |