diff options
Diffstat (limited to 'test/helpers/watchers_helper_test.rb')
-rw-r--r-- | test/helpers/watchers_helper_test.rb | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/test/helpers/watchers_helper_test.rb b/test/helpers/watchers_helper_test.rb index f1f0ff8c0..1d29d33d5 100644 --- a/test/helpers/watchers_helper_test.rb +++ b/test/helpers/watchers_helper_test.rb @@ -94,34 +94,4 @@ class WatchersHelperTest < Redmine::HelperTest end end end - - def test_watchers_list_should_include_avatar_and_user_name - issue = Issue.find(1) - Watcher.create!(:watchable => issue, :user => User.find(1)) - - with_settings :gravatar_enabled => '1' do - result = watchers_list(issue) - assert_select_in result, 'ul.watchers' do - assert_select 'li', 1 - assert_select 'li:nth-of-type(1)>img.gravatar', 1 - assert_select 'li:nth-of-type(1)>a[href=?]', '/users/1', text: 'Redmine Admin' - assert_select 'li:nth-of-type(1)>a.group>svg.icon-svg', 0 - end - end - end - - def test_watchers_list_should_include_svg_icon_and_group_name - issue = Issue.find(1) - Watcher.create!(:watchable => issue, :user => Group.find(10)) - - with_settings :gravatar_enabled => '1' do - result = watchers_list(issue) - assert_select_in result, 'ul.watchers' do - assert_select 'li', 1 - assert_select 'li:nth-of-type(1)>a.group>svg.icon-svg', 1 - assert_select 'li:nth-of-type(1)>a[href=?]', '/groups/10', text: 'A Team' - assert_select 'li:nth-of-type(1)>img.gravatar', 0 - end - end - end end |