pub fn init_test()
deploy
Enables “test mode” for Hydro, which makes it possible to compile Hydro programs written inside a #[cfg(test)] module. This should be enabled in a global [ctor] hook.
#[cfg(test)]
ctor
#[cfg(test)] mod test_init { #[ctor::ctor] fn init() { hydro_lang::deploy::init_test(); } }