Added show module which will eventually show DocDef.
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1s

This commit is contained in:
2026-02-16 07:12:59 -05:00
parent 903158b72a
commit e2bb5bb93f
7 changed files with 62 additions and 9 deletions

View File

@@ -75,6 +75,15 @@ impl fmt::Display for Name {
}
}
#[cfg(test)]
pub mod test_support {
use super::*;
pub fn random_name() -> Name {
Name::english(Uuid::new_v4().to_string().as_str())
}
}
#[derive(Clone, Debug, PartialEq)]
pub struct Names {
names: HashMap<Name, Uuid>,