()
| 924 | |
| 925 | #[test] |
| 926 | fn test_revise_with_message() { |
| 927 | let revise = Revise::new().with_message("New message"); |
| 928 | assert_eq!(revise.message, Some("New message".to_string())); |
| 929 | } |
| 930 | |
| 931 | #[test] |
| 932 | fn test_revise_with_reword() { |
nothing calls this directly
no test coverage detected