()
| 814 | |
| 815 | #[test] |
| 816 | fn test_repository_not_found_suggestion() { |
| 817 | let err = CliError::repository_not_found("/path"); |
| 818 | let suggestion = err.suggestion(); |
| 819 | assert!(suggestion.is_some()); |
| 820 | assert!(suggestion.unwrap().contains("atomic init")); |
| 821 | } |
| 822 | |
| 823 | #[test] |
| 824 | fn test_view_not_found_suggestion() { |
nothing calls this directly
no test coverage detected