added test_announce. All stubs.

status-serialisers
Marnanel Thurman 2020-07-19 20:04:36 +01:00
rodzic f29c6a3259
commit 9e7c78f196
1 zmienionych plików z 23 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,23 @@
from django.test import TestCase
from unittest import skip, expectedFailure
import logging
logger = logging.getLogger(name='kepi')
class TestAnnounce(TestCase):
def test_sender_with_local_follower_boosts_known_status(self):
pass
def test_sender_with_local_follower_boosts_unknown_status(self):
pass
def test_sender_with_local_follower_selfboosts_unknown_status(self):
pass
def test_reblog_of_local_status(self):
pass
# TODO relays are not implemented and not tested
def test_irrelevant(self):
pass