()
| 816 | |
| 817 | #[test] |
| 818 | fn test_nothing_to_record_suggestion() { |
| 819 | let err = CliError::NothingToRecord; |
| 820 | let suggestion = err.suggestion(); |
| 821 | assert!(suggestion.is_some()); |
| 822 | assert!(suggestion.unwrap().contains("atomic add")); |
| 823 | } |
| 824 | |
| 825 | #[test] |
| 826 | fn test_internal_error_suggestion() { |
nothing calls this directly
no test coverage detected