split up meow tests

This commit is contained in:
PatchOfScotland
2023-02-10 16:28:55 +01:00
parent 6fab2f7a10
commit 89a0700e1d
2 changed files with 54 additions and 3 deletions

View File

@ -169,7 +169,9 @@ def create_rule(pattern:BasePattern, recipe:BaseRecipe,
# TODO fix me
# Imported here to avoid circular imports at top of file
import rules
all_rules = {(r.pattern_type, r.recipe_type):r for r in BaseRule.__subclasses__()}
all_rules = {
(r.pattern_type, r.recipe_type):r for r in BaseRule.__subclasses__()
}
# Add in new rules
for rule in new_rules: