()
| 884 | |
| 885 | #[test] |
| 886 | fn test_nothing_to_record_suggestion() { |
| 887 | let err = CliError::NothingToRecord; |
| 888 | let suggestion = err.suggestion(); |
| 889 | assert!(suggestion.is_some()); |
| 890 | assert!(suggestion.unwrap().contains("atomic add")); |
| 891 | } |
| 892 | |
| 893 | #[test] |
| 894 | fn test_internal_error_suggestion() { |
nothing calls this directly
no test coverage detected