()
| 213 | |
| 214 | #[tokio::test] |
| 215 | async fn test_web_fetch_missing_url() { |
| 216 | let tool = WebFetchTool; |
| 217 | let ctx = ToolContext::new(std::path::PathBuf::from("/tmp")); |
| 218 | |
| 219 | let result = tool.execute(&serde_json::json!({}), &ctx).await.unwrap(); |
| 220 | assert!(!result.success); |
| 221 | } |
| 222 | |
| 223 | #[test] |
| 224 | fn test_web_fetch_schema_is_canonical() { |