()
| 4183 | |
| 4184 | #[test] |
| 4185 | fn test_classify_normal_commit() { |
| 4186 | let info = test_info("fix: typo in readme", false); |
| 4187 | assert!(matches!( |
| 4188 | classify_commit(&info), |
| 4189 | CommitClassification::Normal |
| 4190 | )); |
| 4191 | } |
| 4192 | |
| 4193 | #[test] |
| 4194 | fn test_classify_merge_commit() { |
nothing calls this directly
no test coverage detected