()
| 866 | |
| 867 | #[test] |
| 868 | fn test_view_not_found_suggestion() { |
| 869 | let err = CliError::view_not_found("feature"); |
| 870 | let suggestion = err.suggestion(); |
| 871 | assert!(suggestion.is_some()); |
| 872 | assert!(suggestion.unwrap().contains("atomic view list")); |
| 873 | } |
| 874 | |
| 875 | #[test] |
| 876 | fn test_file_not_tracked_suggestion() { |
nothing calls this directly
no test coverage detected