Remove Scripts folder to convert to submodule

This commit is contained in:
chardub
2025-04-19 15:43:57 -04:00
parent 0807a7ea79
commit 58da1023c1
429 changed files with 0 additions and 165507 deletions

View File

@@ -1,20 +0,0 @@
def test_is_fusion_of_any
test_list = LEGENDARIES_LIST
echoln _INTL("test list: {1}")
call_is_fusion_of_any_test(:MEWTWO, LEGENDARIES_LIST, true)
call_is_fusion_of_any_test(:PIKACHU, LEGENDARIES_LIST, false)
call_is_fusion_of_any_test(:B150H40, LEGENDARIES_LIST, true)
call_is_fusion_of_any_test(:B40H150, LEGENDARIES_LIST, true)
call_is_fusion_of_any_test(:B151H150, LEGENDARIES_LIST, true)
call_is_fusion_of_any_test(:B25H26, LEGENDARIES_LIST, false)
end
def call_is_fusion_of_any_test(pokemon, list, expected_result)
result = is_fusion_of_any(pokemon, LEGENDARIES_LIST)
verdict = result == expected_result ? "OK" : "TEST FAILED"
echoln _INTL("{1} -> expected: {2}, result: {3}\t{4}", pokemon, expected_result, result, verdict)
end