Fixes call to mention_users
This commit is contained in:
parent
c7c975d695
commit
ff721896c0
2 changed files with 11 additions and 2 deletions
|
@ -88,6 +88,14 @@ class ActivitypubMixins(TestCase):
|
|||
self.assertEqual(result, book)
|
||||
|
||||
|
||||
def test_get_recipients(self):
|
||||
''' determines the recipients for a broadcast '''
|
||||
MockSelf = namedtuple('Self', ('privacy'))
|
||||
mock_self = MockSelf('public')
|
||||
ActivitypubMixin.get_recipients(mock_self)
|
||||
|
||||
|
||||
|
||||
# ObjectMixin
|
||||
def test_to_create_activity(self):
|
||||
''' wrapper for ActivityPub "create" action '''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue