mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-15 08:27:17 +00:00
c9052ef933
run black on some tests
30 lines
936 B
Python
30 lines
936 B
Python
def test_settings_group(plex):
|
|
assert plex.settings.group("general")
|
|
|
|
|
|
def test_settings_get(plex):
|
|
# This is the value since it we havnt set any friendlyname
|
|
# plex just default to computer name but it NOT in the settings.
|
|
# check this one. why is this bytes instead of string.
|
|
value = plex.settings.get("FriendlyName").value
|
|
# Should not be bytes, fix this when py2 is dropped
|
|
assert isinstance(value, bytes)
|
|
|
|
|
|
def test_settings_set(plex):
|
|
cd = plex.settings.get("autoEmptyTrash")
|
|
old_value = cd.value
|
|
new_value = not old_value
|
|
cd.set(new_value)
|
|
plex.settings.save()
|
|
plex._settings = None
|
|
assert plex.settings.get("autoEmptyTrash").value == new_value
|
|
|
|
|
|
def test_settings_set_str(plex):
|
|
cd = plex.settings.get("OnDeckWindow")
|
|
new_value = 99
|
|
cd.set(new_value)
|
|
plex.settings.save()
|
|
plex._settings = None
|
|
assert plex.settings.get("OnDeckWindow").value == 99
|