zag-orch 0.12.0

Orchestration library for zag — multi-session coordination for AI coding agents
Documentation
1
2
3
4
5
6
7
8
9
use super::*;

#[test]
fn cancel_nonexistent_session_returns_error() {
    let result = cancel_session("nonexistent-id", Some("test"), None);
    // It will fail because we can't resolve the log path
    assert!(!result.cancelled || result.error.is_some());
    // At minimum it doesn't panic
}