what are some examples in python tests of how to e...
# development
h
what are some examples in python tests of how to execute a single
@rule
?
w
use
run_rule
that represents the absolute most unity a unit test of a rule can be
ConsoleRuleTestBase is closer to an integration test
self.context.scheduler.product_request
on a TestBase subclass is a middle ground where you can install additional rules and shims, but still operate on a bunch of rules
h
cool will look