()
| 579 | |
| 580 | #[test] |
| 581 | fn test_suggestion_already_installed() { |
| 582 | let err = AgentError::AlreadyInstalled { |
| 583 | agent: "claude-code".to_string(), |
| 584 | }; |
| 585 | let suggestion = err.suggestion().unwrap(); |
| 586 | assert!(suggestion.contains("--force")); |
| 587 | } |
| 588 | |
| 589 | #[test] |
| 590 | fn test_suggestion_not_a_repository() { |
nothing calls this directly
no test coverage detected