()
| 136 | |
| 137 | #[test] |
| 138 | fn test_record_with_author() { |
| 139 | let record = Record::new().with_author("Alice <alice@example.com>"); |
| 140 | assert_eq!(record.author, Some("Alice <alice@example.com>".to_string())); |
| 141 | } |
| 142 | |
| 143 | #[test] |
| 144 | fn test_record_with_edit() { |
nothing calls this directly
no test coverage detected