2025-12-23 15:52:52 -03:00
|
|
|
//! Unit tests for botserver modules
|
2025-12-06 11:05:57 -03:00
|
|
|
|
|
|
|
|
mod attendance;
|
2025-12-23 15:52:52 -03:00
|
|
|
mod basic;
|
|
|
|
|
mod calendar;
|
|
|
|
|
mod compliance;
|
|
|
|
|
mod console;
|
|
|
|
|
mod core;
|
|
|
|
|
mod drive;
|
|
|
|
|
mod email;
|
|
|
|
|
mod llm;
|
2025-12-06 11:05:57 -03:00
|
|
|
mod math_functions;
|
2025-12-23 15:52:52 -03:00
|
|
|
mod security;
|
|
|
|
|
mod sources;
|
2025-12-06 11:05:57 -03:00
|
|
|
mod string_functions;
|
2025-12-23 15:52:52 -03:00
|
|
|
mod timeseries;
|
|
|
|
|
mod vector_db;
|
|
|
|
|
mod weba;
|
|
|
|
|
mod whatsapp;
|
2025-12-06 11:05:57 -03:00
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_unit_module_loads() {
|
|
|
|
|
assert!(true);
|
|
|
|
|
}
|