Skip to content

Commit

Permalink
Finish Client online tests
Browse files Browse the repository at this point in the history
  • Loading branch information
madsmtm committed May 7, 2020
1 parent 2a382ff commit d33e368
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tests/online/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,18 @@ def test_mark_as_read(client, user, group):

def test_mark_as_unread(client, user, group):
client.mark_as_unread([user, group], datetime.datetime.now())


def test_move_threads(client, user, group):
client.move_threads(fbchat.ThreadLocation.PENDING, [user, group])
client.move_threads(fbchat.ThreadLocation.INBOX, [user, group])


@pytest.mark.skip(reason="need to have threads to delete")
def test_delete_threads():
pass


@pytest.mark.skip(reason="need to have messages to delete")
def test_delete_messages():
pass

0 comments on commit d33e368

Please sign in to comment.