X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=tests%2Fcoverage_dungeon.py;h=c583ffb5f79689fbb9244a86d86edec4be009965;hb=54927c33e548c58080232f43584bdd8cbcea068d;hp=1f27838fbca6fcdd4c1cf10b25fcb4a6333d1f2b;hpb=7723f3fc1a23cc3b77e62dd8cc702c104ae46ab5;p=open-adventure.git diff --git a/tests/coverage_dungeon.py b/tests/coverage_dungeon.py index 1f27838..c583ffb 100755 --- a/tests/coverage_dungeon.py +++ b/tests/coverage_dungeon.py @@ -25,7 +25,7 @@ YAML_PATH = "../adventure.yaml" HTML_TEMPLATE_PATH = "../templates/coverage_dungeon.html.tpl" DEFAULT_HTML_OUTPUT_PATH = "../coverage/adventure.yaml.html" DANGLING_ACTIONS = ["ACT_VERSION"] -DANGLING_MESSAGES = ["SAVERESUME_DISABLED", "SAVE_TAMPERING"] +DANGLING_MESSAGES = ["SAVERESUME_DISABLED"] STDOUT_REPORT_CATEGORY = " {name:.<19}: {percent:5.1f}% covered ({covered} of {total})\n" @@ -99,7 +99,7 @@ def obj_coverage(objects, text, report): def loc_coverage(locations, text, report): # locations have a long and a short description, that each have to - # be checked seperately + # be checked separately for name, loc in locations: desc = loc["description"] if name not in report["messages"]: @@ -173,7 +173,7 @@ def actions_coverage(items, text, report): report["covered"] += 1 def coverage_report(db, check_file_contents): - # Create report for each catagory, including total items, number of items + # Create report for each category, including total items, number of items # covered, and a list of the covered messages report = {} for name in db.keys():