This commit is contained in:
2026-05-25 23:55:19 -06:00
parent 1498e1046f
commit bf2a95ef01
3 changed files with 41 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
from .function_call import CountFunctionCallEngine, MustCallFunctionEngine, MustNotCallFunctionEngine
from .method_call import MustCallMethodEngine, MustNotCallMethodEngine
from .nesting import MustHaveNestingEngine
from .node_count import CountNodeEngine
from .node_exists import MustExistNodeEngine, MustNotExistNodeEngine
from .operator import MustUseOperatorEngine
@@ -14,6 +15,7 @@ ENGINES = {
"must_call_method": MustCallMethodEngine(),
"must_not_call_method": MustNotCallMethodEngine(),
"must_use_operator": MustUseOperatorEngine(),
"must_have_nesting": MustHaveNestingEngine(),
}