()
| 941 | |
| 942 | #[test] |
| 943 | fn test_tool_executor_registry() { |
| 944 | let executor = ToolExecutor::new("/tmp".to_string()); |
| 945 | let registry = executor.registry(); |
| 946 | // Baseline tools on a raw ToolExecutor: 13 |
| 947 | assert_eq!(registry.len(), 13); |
| 948 | } |
| 949 | |
| 950 | #[tokio::test] |
| 951 | async fn test_tool_executor_get_artifact() { |