my.goodreads: cleanup, rename from my.reading.goodrads & use proper pip dependency

related:
- https://github.com/karlicoss/HPI/issues/79
- 10d8cc86a1
This commit is contained in:
Dima Gerasimov 2021-03-26 04:48:18 +00:00 committed by karlicoss
parent 1cdef6f40a
commit 29384aef44
5 changed files with 123 additions and 83 deletions

13
tests/goodreads.py Normal file
View file

@ -0,0 +1,13 @@
from .common import skip_if_not_karlicoss as pytestmark
from more_itertools import ilen
def test_events() -> None:
from my.goodreads import events
assert ilen(events()) > 20
def test_books() -> None:
from my.goodreads import books
assert ilen(books()) > 10