HPI/tests/lastfm.py
2020-05-13 22:52:23 +01:00

17 lines
381 B
Python

from my.core.cachew import disable_cachew
# TODO need something nicer and integrated inside cachew..
disable_cachew() # meh
from more_itertools import ilen
from my.lastfm import scrobbles
def test():
assert ilen(scrobbles()) > 1000
def test_datetime_ascending():
from more_itertools import pairwise
for a, b in pairwise(scrobbles()):
assert a.dt <= b.dt