summaryrefslogtreecommitdiffstats
path: root/test/unit/watcher_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/watcher_test.rb')
-rw-r--r--test/unit/watcher_test.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/unit/watcher_test.rb b/test/unit/watcher_test.rb
index 86d96b2cb..d9abb7f6d 100644
--- a/test/unit/watcher_test.rb
+++ b/test/unit/watcher_test.rb
@@ -53,6 +53,17 @@ class WatcherTest < ActiveSupport::TestCase
assert issue.watched_by?(User.find(1))
end
+ def test_addable_watcher_users
+ addable_watcher_users = @issue.addable_watcher_users
+ assert_kind_of Array, addable_watcher_users
+ assert_kind_of User, addable_watcher_users.first
+ end
+
+ def test_addable_watcher_users_should_not_include_user_that_cannot_view_the_object
+ issue = Issue.new(:project => Project.find(1), :is_private => true)
+ assert_nil issue.addable_watcher_users.detect {|user| !issue.visible?(user)}
+ end
+
def test_recipients
@issue.watchers.delete_all
@issue.reload