diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-11-16 17:12:02 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-11-16 17:12:02 +0000 |
commit | 5362a85f2bd7cf6dd4e6ca42f5899f61bb875203 (patch) | |
tree | 37deee65c171858e5dc5e264d97126e76262daf5 /test/functional/admin_controller_test.rb | |
parent | f9ce4ff559a1f41dea6981c8cc37cd7e9f71e521 (diff) | |
download | redmine-5362a85f2bd7cf6dd4e6ca42f5899f61bb875203.tar.gz redmine-5362a85f2bd7cf6dd4e6ca42f5899f61bb875203.zip |
Adds url and author_url plugin attributes (#2162).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2041 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/admin_controller_test.rb')
-rw-r--r-- | test/functional/admin_controller_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/admin_controller_test.rb b/test/functional/admin_controller_test.rb index 2bbd8fe97..569ed5589 100644 --- a/test/functional/admin_controller_test.rb +++ b/test/functional/admin_controller_test.rb @@ -103,8 +103,8 @@ class AdminControllerTest < Test::Unit::TestCase assert_response :success assert_template 'plugins' - assert_tag :td, :content => 'Foo plugin' - assert_tag :td, :content => 'Bar' + assert_tag :td, :child => { :tag => 'span', :content => 'Foo plugin' } + assert_tag :td, :child => { :tag => 'span', :content => 'Bar' } end def test_info |