diff --git a/pytests/modules/contrib/test_mpd.py b/pytests/modules/contrib/test_mpd.py new file mode 100644 index 0000000..77bb253 --- /dev/null +++ b/pytests/modules/contrib/test_mpd.py @@ -0,0 +1,16 @@ +import pytest + +import core.config +import modules.contrib.mpd + +@pytest.fixture +def mpd_module(): + return modules.contrib.mpd.Module(config=core.config.Config([]), theme=None) + +def test_shuffle_off_by_default(mpd_module): + assert not mpd_module._shuffle + +def test_shuffle_state(mocker, mpd_module): + widget = mocker.Mock() + widget.name = 'mpd.shuffle' + assert mpd_module.state(widget) == 'shuffle-off'