#![allow(clippy::expect_used, clippy::panic, clippy::unwrap_used)]
use meerkat_core::ops_lifecycle::OperationKind;
#[test]
fn ops_lifecycle_integration_red_ok_operation_kinds_define_peer_expectations() {
assert!(
OperationKind::MobMemberChild.expects_peer_channel(),
"mob helper-agent flows should require a peer-ready handoff"
);
assert!(
!OperationKind::BackgroundToolOp.expects_peer_channel(),
"background async operations should not require a peer-ready handoff"
);
}