diyalgo/tests/test_client.py

11 lines
206 B
Python

import pytest
from .fixtures.client import client_fixture as client
def test_log_in(client):
assert client.access_token is not None
assert isinstance(client._Mastodon__get_logged_in_id(), int)