morethantext/tests/support.rs
Jeff Baskin 5251689158
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1s
Updated error to be more expressive.
2026-02-25 10:16:50 -05:00

7 lines
129 B
Rust

use morethantext::Name;
use uuid::Uuid;
pub fn random_name() -> Name {
Name::english(Uuid::new_v4().to_string().as_str())
}