51 lines
756 B
Python
51 lines
756 B
Python
# import pytest
|
|
|
|
# from aircox_streamer import controllers
|
|
|
|
|
|
class TestStreamer:
|
|
def test_socket_path(self):
|
|
pass
|
|
|
|
def test_is_ready(self):
|
|
pass
|
|
|
|
def test_is_running(self):
|
|
pass
|
|
|
|
def test_playlists(self):
|
|
pass
|
|
|
|
def test_queues(self):
|
|
pass
|
|
|
|
def test_send(self):
|
|
pass
|
|
|
|
def test_init_sources(self):
|
|
pass
|
|
|
|
def test_make_config(self):
|
|
pass
|
|
|
|
def test_sync(self):
|
|
pass
|
|
|
|
def test_fetch(self):
|
|
pass
|
|
|
|
def test_get_process_args(self):
|
|
pass
|
|
|
|
def test_check_zombie_process(self):
|
|
pass
|
|
|
|
def test_run_process(self):
|
|
pass
|
|
|
|
def test_kill_process(self):
|
|
pass
|
|
|
|
def test_wait_process(self):
|
|
pass
|