botserver/src/core/bootstrap/bootstrap.test.rs

11 lines
211 B
Rust
Raw Normal View History

2025-11-22 22:55:35 -03:00
#[cfg(test)]
mod tests {
use super::*;
use crate::tests::test_util;
#[test]
fn test_bootstrap_module() {
test_util::setup();
assert!(true, "Basic bootstrap module test");
}
}