()
| 858 | |
| 859 | #[test] |
| 860 | fn test_nothing_to_record_suggestion() { |
| 861 | let err = CliError::NothingToRecord; |
| 862 | let suggestion = err.suggestion(); |
| 863 | assert!(suggestion.is_some()); |
| 864 | assert!(suggestion.unwrap().contains("atomic add")); |
| 865 | } |
| 866 | |
| 867 | #[test] |
| 868 | fn test_internal_error_suggestion() { |
nothing calls this directly
no test coverage detected