()
| 4192 | |
| 4193 | #[test] |
| 4194 | fn test_classify_merge_commit() { |
| 4195 | let info = test_info("Merge branch 'feature' into main", true); |
| 4196 | assert!(matches!( |
| 4197 | classify_commit(&info), |
| 4198 | CommitClassification::Merge |
| 4199 | )); |
| 4200 | } |
| 4201 | |
| 4202 | #[test] |
| 4203 | fn test_classify_squash_with_atomic_trailer() { |
nothing calls this directly
no test coverage detected