()
| 433 | use super::*; |
| 434 | |
| 435 | fn test_ctx() -> CommandContext { |
| 436 | CommandContext { |
| 437 | session_id: "test-session-123".into(), |
| 438 | workspace: "/tmp/test".into(), |
| 439 | model: "openai/kimi-k2.5".into(), |
| 440 | history_len: 10, |
| 441 | total_tokens: 5000, |
| 442 | total_cost: 0.0123, |
| 443 | tool_names: vec![ |
| 444 | "read".into(), |
| 445 | "write".into(), |
| 446 | "bash".into(), |
| 447 | "mcp__github__create_issue".into(), |
| 448 | "mcp__github__list_repos".into(), |
| 449 | ], |
| 450 | mcp_servers: vec![("github".into(), 2)], |
| 451 | } |
| 452 | } |
| 453 | |
| 454 | #[test] |
| 455 | fn test_is_command() { |
no outgoing calls
no test coverage detected