()
| 840 | |
| 841 | #[test] |
| 842 | fn test_view_not_found_suggestion() { |
| 843 | let err = CliError::view_not_found("feature"); |
| 844 | let suggestion = err.suggestion(); |
| 845 | assert!(suggestion.is_some()); |
| 846 | assert!(suggestion.unwrap().contains("atomic view list")); |
| 847 | } |
| 848 | |
| 849 | #[test] |
| 850 | fn test_file_not_tracked_suggestion() { |
nothing calls this directly
no test coverage detected