()
| 832 | |
| 833 | #[test] |
| 834 | fn test_repository_not_found_suggestion() { |
| 835 | let err = CliError::repository_not_found("/path"); |
| 836 | let suggestion = err.suggestion(); |
| 837 | assert!(suggestion.is_some()); |
| 838 | assert!(suggestion.unwrap().contains("atomic init")); |
| 839 | } |
| 840 | |
| 841 | #[test] |
| 842 | fn test_view_not_found_suggestion() { |
nothing calls this directly
no test coverage detected