8 lines
228 B
Python
8 lines
228 B
Python
|
from ..fixtures.client import client_fixture
|
||
|
|
||
|
from diyalgo.expansions.timeline import fetch_timeline
|
||
|
|
||
|
def test_fetch_public_timeline(client_fixture):
|
||
|
fetcher = fetch_timeline(client_fixture, 'public')
|
||
|
tl = next(fetcher)
|