1 #[cfg(test)]
2 pub use self::support::*;
3 // This has to have the same name as the module in `tracing`.
4 #[path = "../../tracing/tests/support/mod.rs"]
5 #[cfg(test)]
6 // path attribute requires referenced module to have same name so allow module inception here
7 #[allow(clippy::module_inception)]
8 mod support;
9