36 lines
591 B
Python
36 lines
591 B
Python
# import pytest
|
|
|
|
# from aircox_streamer import controllers
|
|
|
|
|
|
class TestBaseMetaData:
|
|
def test_is_playing(self):
|
|
pass
|
|
|
|
def test_status_verbose(self):
|
|
pass
|
|
|
|
def test_fetch(self):
|
|
pass
|
|
|
|
def test_fetch_no_data(self):
|
|
pass
|
|
|
|
def test_validate_status_playing(self):
|
|
pass
|
|
|
|
def test_validate_status_paused(self):
|
|
pass
|
|
|
|
def test_validate_status_stopped(self):
|
|
pass
|
|
|
|
def test_validate_air_time(self):
|
|
pass
|
|
|
|
def test_validate_air_time_none(self):
|
|
pass
|
|
|
|
def test_validate(self):
|
|
pass
|