veilid/veilid-core/src/tests/mod.rs

15 lines
263 B
Rust
Raw Normal View History

2022-11-30 03:51:51 +00:00
#[cfg(target_os = "android")]
mod android;
2021-11-22 16:28:30 +00:00
pub mod common;
2022-11-30 03:51:51 +00:00
#[cfg(target_os = "ios")]
mod ios;
2021-11-22 16:28:30 +00:00
#[cfg(not(target_arch = "wasm32"))]
mod native;
2022-11-30 03:51:51 +00:00
#[allow(unused_imports)]
use super::*;
pub use common::*;
pub use crypto::tests::*;
pub use network_manager::tests::*;