diff --git a/test/unittests/test_sound.py b/test/unittests/test_sound.py index b95e25c4..fca73be9 100644 --- a/test/unittests/test_sound.py +++ b/test/unittests/test_sound.py @@ -8,22 +8,6 @@ def test_get_pulse_environment(self): from ovos_utils.sound import _get_pulse_environment # TODO - def test_play_acknowledge_sound(self): - from ovos_utils.sound import play_acknowledge_sound - # TODO - - def test_play_listening_sound(self): - from ovos_utils.sound import play_listening_sound - # TODO - - def test_play_end_listening_sound(self): - from ovos_utils.sound import play_end_listening_sound - # TODO - - def test_play_error_sound(self): - from ovos_utils.sound import play_error_sound - # TODO - def test_find_player(self): from ovos_utils.sound import _find_player # TODO @@ -32,26 +16,3 @@ def test_play_audio(self): from ovos_utils.sound import play_audio # TODO - def test_play_wav(self): - from ovos_utils.sound import play_wav - # TODO - - def test_play_mp3(self): - from ovos_utils.sound import play_wav - # TODO - - def test_play_ogg(self): - from ovos_utils.sound import play_ogg - # TODO - - def test_record(self): - from ovos_utils.sound import record - # TODO - - def test_is_speaking(self): - from ovos_utils.sound import is_speaking - # TODO - - def test_wait_while_speaking(self): - from ovos_utils.sound import wait_while_speaking - # TODO diff --git a/test/unittests/test_system.py b/test/unittests/test_system.py index 4644731d..e513ac80 100644 --- a/test/unittests/test_system.py +++ b/test/unittests/test_system.py @@ -56,30 +56,6 @@ def test_check_service_active(self): # TODO pass - def test_set_root_path(self): - from ovos_utils.system import set_root_path - set_root_path("test") - from ovos_utils.system import _USER_DEFINED_ROOT - self.assertEqual(_USER_DEFINED_ROOT, "test") - set_root_path("mycroft") - from ovos_utils.system import _USER_DEFINED_ROOT - self.assertEqual(_USER_DEFINED_ROOT, "mycroft") - set_root_path(None) - from ovos_utils.system import _USER_DEFINED_ROOT - self.assertIsNone(_USER_DEFINED_ROOT) - - def test_find_root_from_sys_path(self): - # TODO - pass - - def test_find_root_from_sitepackages(self): - # TODO - pass - - def test_search_mycroft_core_location(self): - # TODO - pass - def test_get_desktop_environment(self): # TODO pass