mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-10 14:14:19 +00:00
c9052ef933
run black on some tests
7 lines
270 B
Python
7 lines
270 B
Python
def test_photo_Photoalbum(photoalbum):
|
|
assert len(photoalbum.albums()) == 3
|
|
assert len(photoalbum.photos()) == 3
|
|
cats_in_bed = photoalbum.album("Cats in bed")
|
|
assert len(cats_in_bed.photos()) == 7
|
|
a_pic = cats_in_bed.photo("photo7")
|
|
assert a_pic
|