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

13 lines
288 B
Rust
Raw Normal View History

2022-12-01 02:32:41 +00:00
#[cfg(all(target_os = "android", feature = "veilid_tools_android_tests"))]
2022-11-28 03:33:41 +00:00
mod android;
2022-11-27 14:00:20 +00:00
pub mod common;
2022-12-01 02:32:41 +00:00
#[cfg(all(target_os = "ios", feature = "veilid_tools_ios_tests"))]
2022-11-28 03:33:41 +00:00
mod ios;
2022-11-27 14:00:20 +00:00
#[cfg(not(target_arch = "wasm32"))]
mod native;
2022-11-28 03:33:41 +00:00
2022-11-28 03:42:34 +00:00
#[allow(unused_imports)]
2022-11-28 03:33:41 +00:00
use super::*;
pub use common::*;