-
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8947baf
commit 8a6c28f
Showing
78 changed files
with
2,912 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
from unittest import TestCase | ||
|
||
|
||
class TestAssistantManager(TestCase): | ||
|
||
def test_on_start(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_clear_assistant(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_check_assistant(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_check_consistency(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_train(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_link_assistant(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_new_assistant(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_skill_resource(self): | ||
pass # Nothing to test() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,191 @@ | ||
from unittest import TestCase | ||
|
||
|
||
class TestConfigManager(TestCase): | ||
|
||
def test_on_start(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test__load_check_and_update_alice_config_file(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_load_json_from_file(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_update_alice_configuration(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_bulk_update_alice_configurations(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_delete_pending_alice_configuration_updates(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_update_skill_configuration_file(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_write_to_alice_configuration_file(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test__write_to_skill_configuration_file(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_load_snips_configurations(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_update_snips_configuration(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_get_snips_configuration(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_config_alice_exists(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_config_skill_exists(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_get_alice_config_by_name(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_get_skill_config_by_name(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_get_skill_configs(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_get_skill_configs_template_by_name(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_get_skill_configs_template(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_load_check_and_update_skill_configurations(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test__new_skill_config_file(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_change_active_language(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_get_alice_config_type(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_is_alice_conf_hidden(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_get_alice_conf_update_pre_processing(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_get_alice_conf_update_post_processing(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_do_config_update_pre_processing(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_do_config_update_post_processing(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_update_mqtt_settings(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_reconnect_mqtt(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_reload_asr(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_reload_tts(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_check_new_admin_pin_code(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_update_admin_pin_code(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_enable_disable_sound(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_restart_wakeword_engine(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_reload_wakeword(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_refresh_store_data(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_inject_asound(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_update_timezone(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_toggle_debug_logs(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_get_github_auth(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_snips_configurations(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_alice_configurations(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_alice_configuration_categories(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_vital_configs(self): | ||
pass # Nothing to test() | ||
|
||
|
||
def test_alice_template_configurations(self): | ||
pass # Nothing to test() |
Oops, something went wrong.