()
| 790 | |
| 791 | #[test] |
| 792 | fn test_repository_not_found_suggestion() { |
| 793 | let err = CliError::repository_not_found("/path"); |
| 794 | let suggestion = err.suggestion(); |
| 795 | assert!(suggestion.is_some()); |
| 796 | assert!(suggestion.unwrap().contains("atomic init")); |
| 797 | } |
| 798 | |
| 799 | #[test] |
| 800 | fn test_view_not_found_suggestion() { |
nothing calls this directly
no test coverage detected