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

10 lines
211 B
Rust

#[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");
}
}