# import pytest # from aircox_streamer import controllers class TestSource: def test_station(self): pass def test_sync(self): pass def test_fetch(self): pass def test_skip(self): pass def test_restart(self): pass def test_seek(self, n): pass class TestPlaylistSource: def test_get_sound_queryset(self): pass def test_get_playlist(self): pass def test_write_playlist(self): pass def test_stream(self): pass def test_sync(self): pass class TestQueueSource: def test_push(self): pass def test_fetch(self): pass def test_requests(self): pass