morethantext/tests/support.rs

7 lines
129 B
Rust
Raw Normal View History

2026-02-25 10:16:50 -05:00
use morethantext::Name;
use uuid::Uuid;
pub fn random_name() -> Name {
Name::english(Uuid::new_v4().to_string().as_str())
}