mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-10 06:04:15 +00:00
15 lines
309 B
Python
15 lines
309 B
Python
import pytest
|
|
from plexapi.gdm import GDM
|
|
|
|
|
|
@pytest.mark.xfail(reason="Might fail on docker", strict=False)
|
|
def test_gdm(plex):
|
|
gdm = GDM()
|
|
|
|
gdm_enabled = plex.settings.get("GdmEnabled")
|
|
|
|
gdm.scan()
|
|
if gdm_enabled:
|
|
assert len(gdm.entries)
|
|
else:
|
|
assert not len(gdm.entries)
|