Middle of session move.

This commit is contained in:
2026-05-13 11:35:30 -04:00
parent 89715320cb
commit 8f34bad321
9 changed files with 910 additions and 912 deletions

View File

@@ -815,26 +815,4 @@ mod internal_features {
},
}
}
#[test]
fn do_normal_definitions_request_session() {
let sess_name = Session::doc_names()[0].clone();
let mut test_env = TestMoreThanText::new();
let mut mtt = test_env.get_morethantext();
let client = mtt.client();
let name = Name::english("something");
let docdef = DocDef::new(name.clone());
client.create_document(docdef);
let path = Path::new(
Include::All,
Include::Just(sess_name.clone().into()),
Include::Just(Action::Query),
);
test_env.register_channel(vec![path]);
client.records(Query::new(name)).unwrap();
match test_env.recv() {
Ok(msg) => {}
Err(err) => unreachable!("got {:?}, should have requested session", err),
}
}
}