Moved some update errors into lib testing.
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1s

This commit is contained in:
2026-03-02 08:47:40 -05:00
parent f8b5b477ee
commit d41b5ff418
3 changed files with 75 additions and 24 deletions

View File

@@ -9,21 +9,6 @@ use support::{setup_range, TestDocument};
const COUNT: usize = 5;
/*
fn setup_range(COUNT) -> (MoreThanText, TestDocument) {
let mut mtt = MoreThanText::new();
let test_doc = TestDocument::new(vec![FieldType::Integer]);
mtt.create_document(test_doc.get_docdef()).unwrap();
let mut data: Vec<Vec<i128>> = Vec::new();
for i in 0..COUNT {
let holder: i128 = i.try_into().unwrap();
data.push(vec![holder]);
}
test_doc.populate_multiple(&mut mtt, data);
(mtt, test_doc)
}
*/
#[test]
fn does_empty_query_get_all_documents() {
let (mut mtt, test_doc) = setup_range(COUNT);