morethantext/tests/document_test.rs

11 lines
298 B
Rust
Raw Normal View History

2026-02-19 14:26:29 -05:00
use morethantext::{action::*, MoreThanText, TestMoreThanText};
use uuid::Uuid;
#[test]
fn is_document_created() {
let mut mtt = MoreThanText::new();
let doc_name = TestMoreThanText::random_name();
let docdef = DocDef::new(doc_name.clone());
mtt.create_document(docdef).unwrap();
}