Closed rgbkrk closed 5 months ago
Part of this is a code cleanup to gate the tests behind cfg(test). The rest is to enable the async dispatcher macros for the tests (defining main and test macros for handling) and ensuring they aren't exposed for downstream use.
cfg(test)
main
test
Going to come back to this one to make test support a more general macro.
Part of this is a code cleanup to gate the tests behind
cfg(test)
. The rest is to enable the async dispatcher macros for the tests (definingmain
andtest
macros for handling) and ensuring they aren't exposed for downstream use.