()
| 51 | use crate::config::CodeConfig; |
| 52 | |
| 53 | fn test_config() -> CodeConfig { |
| 54 | let acl = r#" |
| 55 | default_model = "anthropic/claude-sonnet-4-20250514" |
| 56 | providers "anthropic" { |
| 57 | api_key = "test-key" |
| 58 | models "claude-sonnet-4-20250514" { name = "Claude Sonnet 4" } |
| 59 | } |
| 60 | "#; |
| 61 | CodeConfig::from_acl(acl).unwrap() |
| 62 | } |
| 63 | |
| 64 | #[tokio::test] |
| 65 | async fn install_with_no_tools_is_ok() { |
no outgoing calls
no test coverage detected