This commit is contained in:
bkfox
2023-05-25 10:03:11 +02:00
parent 73c7c471ea
commit 257fb6a539
12 changed files with 570 additions and 146 deletions

View File

@ -0,0 +1,51 @@
# 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