()
| 81 | |
| 82 | #[test] |
| 83 | fn test_record_with_usage() { |
| 84 | let record = Record::new().with_usage("work").with_message("Work commit"); |
| 85 | |
| 86 | assert_eq!(record.usage, Some("work".to_string())); |
| 87 | } |
| 88 | |
| 89 | #[test] |
| 90 | fn test_record_identity_precedence() { |
nothing calls this directly
no test coverage detected