bottest/tests/unit/basic/basic_keywords_user_memory.rs

16 lines
497 B
Rust
Raw Normal View History

//! Unit tests migrated from src/basic/keywords/user_memory.rs
//! These tests were originally in botserver and have been migrated to bottest.
#![allow(unused_imports)]
#![allow(unused_variables)]
#![allow(dead_code)]
// Original: use super::*; - tests used internal functions from botserver
#[test]
fn test_fact_key_generation() {
let fact_key = format!("fact_{}", Uuid::new_v4());
assert!(fact_key.starts_with("fact_"));
assert!(fact_key.len() > 5);
}