()
| 798 | |
| 799 | #[test] |
| 800 | fn test_view_not_found_suggestion() { |
| 801 | let err = CliError::view_not_found("feature"); |
| 802 | let suggestion = err.suggestion(); |
| 803 | assert!(suggestion.is_some()); |
| 804 | assert!(suggestion.unwrap().contains("atomic view list")); |
| 805 | } |
| 806 | |
| 807 | #[test] |
| 808 | fn test_file_not_tracked_suggestion() { |
nothing calls this directly
no test coverage detected