Remove superseded contributor material

This commit is contained in:
Alexander Sellite 2026-08-21 16:39:33 -04:00
parent b2752b1074
commit f45550e46b
165 changed files with 155 additions and 2158 deletions

View file

@ -16,20 +16,14 @@ func _initialize() -> void:
"animalese supports every letter and digit",
)
_expect(
VoiceProfilesType.DEFAULT_SAMPLE_SET_ID == "kat",
"kat is the default animalese voice set",
VoiceProfilesType.DEFAULT_SAMPLE_SET_ID == "robot",
"robot is the default animalese voice set",
)
_expect(
VoiceProfilesType.is_valid_sample_set("robot"),
"the original tones remain available as robot",
)
_expect(
VoiceProfilesType.is_valid_sample_set("kim"),
"kim is available as an animalese voice set",
)
_validate_set("kat", EXPECTED_CHARACTERS, false)
_validate_set("robot", ROBOT_CHARACTERS, true)
_validate_set("kim", EXPECTED_CHARACTERS, false)
if _failures.is_empty():
print("Animalese sample validation: PASS")
quit(0)