Added a records function to client.
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1s

This commit is contained in:
2026-02-18 12:00:39 -05:00
parent bcddc1047a
commit 0614c98221
3 changed files with 46 additions and 7 deletions

View File

@@ -21,11 +21,12 @@ fn errors_on_missing_page() {
}
#[test]
#[ignore]
fn can_create_document() {
let mut mtt = MoreThanText::new();
let doc_name = Name::english(Uuid::new_v4().to_string().as_str());
let mut docdef = DocDef::new(doc_name.clone());
let field_name = Name::english(Uuid::new_v4().to_string().as_str());
docdef.add_field(field_name.clone(), FieldType::Uuid);
mtt.request(docdef);
mtt.records(docdef);
}