mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-06-05 23:38:53 +00:00
Removes outdated tests
This commit is contained in:
parent
c8250ac94c
commit
142d0da3b7
1 changed files with 0 additions and 17 deletions
|
@ -190,20 +190,3 @@ class Activitystreams(TestCase):
|
||||||
)
|
)
|
||||||
users = activitystreams.LocalStream().get_audience(status)
|
users = activitystreams.LocalStream().get_audience(status)
|
||||||
self.assertEqual(users, [])
|
self.assertEqual(users, [])
|
||||||
|
|
||||||
def test_federatedstream_get_audience(self, *_):
|
|
||||||
"""get a list of users that should see a status"""
|
|
||||||
status = models.Status.objects.create(
|
|
||||||
user=self.remote_user, content="hi", privacy="public"
|
|
||||||
)
|
|
||||||
users = activitystreams.FederatedStream().get_audience(status)
|
|
||||||
self.assertTrue(self.local_user in users)
|
|
||||||
self.assertTrue(self.another_user in users)
|
|
||||||
|
|
||||||
def test_federatedstream_get_audience_unlisted(self, *_):
|
|
||||||
"""get a list of users that should see a status"""
|
|
||||||
status = models.Status.objects.create(
|
|
||||||
user=self.remote_user, content="hi", privacy="unlisted"
|
|
||||||
)
|
|
||||||
users = activitystreams.FederatedStream().get_audience(status)
|
|
||||||
self.assertEqual(users, [])
|
|
||||||
|
|
Loading…
Reference in a new issue