test_account: added @skips back in again for block/muting because those aren't yet written; deleted some test stubs of obscure purpose.

merge-requests/2/merge
Marnanel Thurman 2020-10-29 23:19:37 +00:00
rodzic 4903af61fc
commit 622fc69df9
1 zmienionych plików z 4 dodań i 9 usunięć

Wyświetl plik

@ -220,15 +220,6 @@ class TestAccountDetails(TrilbyTestCase):
o.username,
)
def test_account_in_lists(self):
raise NotImplementedError()
def test_account_relationships(self):
raise NotImplementedError()
def test_account_search(self):
raise NotImplementedError()
class TestAccountActions(TrilbyTestCase):
# TODO: these "follow" tests will need to be a bit more complex,
@ -324,14 +315,18 @@ class TestAccountActions(TrilbyTestCase):
).count(),
0)
@skip("blocks are not yet implemented")
def test_block(self):
raise NotImplementedError()
@skip("blocks are not yet implemented")
def test_unblock(self):
raise NotImplementedError()
@skip("muting is not yet implemented")
def test_mute(self):
raise NotImplementedError()
@skip("muting is not yet implemented")
def test_unmute(self):
raise NotImplementedError()