()
| 822 | |
| 823 | #[test] |
| 824 | fn test_view_not_found_suggestion() { |
| 825 | let err = CliError::view_not_found("feature"); |
| 826 | let suggestion = err.suggestion(); |
| 827 | assert!(suggestion.is_some()); |
| 828 | assert!(suggestion.unwrap().contains("atomic view list")); |
| 829 | } |
| 830 | |
| 831 | #[test] |
| 832 | fn test_file_not_tracked_suggestion() { |
nothing calls this directly
no test coverage detected