Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl committed Dec 28, 2023
1 parent ca0575b commit 4edf8c2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 63 deletions.
39 changes: 0 additions & 39 deletions test/unittests/test_sound.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
24 changes: 0 additions & 24 deletions test/unittests/test_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4edf8c2

Please sign in to comment.