diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-12-18 13:40:50 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-12-18 13:40:50 +0000 |
commit | 0c24f88ce1c72a0b551bb8dfd84bc35725545db6 (patch) | |
tree | 59b6dfff8d7ad9895ffb48a327fa2f548ebbaf27 /test/functional | |
parent | df88dc117ff9676e1a4b38944d2388c029203353 (diff) | |
download | redmine-0c24f88ce1c72a0b551bb8dfd84bc35725545db6.tar.gz redmine-0c24f88ce1c72a0b551bb8dfd84bc35725545db6.zip |
Fixed: issue description Quote button lost by r3941 (#7122).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4530 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/issues_controller_test.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb index 3aeb95bd2..b21b28e66 100644 --- a/test/functional/issues_controller_test.rb +++ b/test/functional/issues_controller_test.rb @@ -281,6 +281,9 @@ class IssuesControllerTest < ActionController::TestCase get :show, :id => 1 assert_response :success + assert_tag :tag => 'a', + :content => /Quote/ + assert_tag :tag => 'form', :descendant => { :tag => 'fieldset', :child => { :tag => 'legend', |