()
| 71 | |
| 72 | #[test] |
| 73 | fn test_record_with_identity() { |
| 74 | let record = Record::new() |
| 75 | .with_identity("alice") |
| 76 | .with_message("Test commit"); |
| 77 | |
| 78 | assert_eq!(record.identity, Some("alice".to_string())); |
| 79 | assert_eq!(record.message, Some("Test commit".to_string())); |
| 80 | } |
| 81 | |
| 82 | #[test] |
| 83 | fn test_record_with_usage() { |
nothing calls this directly
no test coverage detected