MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / test_apply_common_noop_result

Function test_apply_common_noop_result

atomic-agent/src/turn/phase.rs:1402–1411  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1400
1401 #[test]
1402 fn test_apply_common_noop_result() {
1403 let mut session = MockSession::new();
1404 let result = TransitionResult::noop(Phase::Idle);
1405
1406 let remaining = apply_common_actions(&mut session, &result);
1407
1408 assert!(remaining.is_empty());
1409 assert!(!session.interaction_touched.get());
1410 assert!(!session.ended_at_cleared.get());
1411 }
1412
1413 // Integration: transition + apply_common_actions
1414

Callers

nothing calls this directly

Calls 1

apply_common_actionsFunction · 0.85

Tested by

no test coverage detected