(message: &str, is_merge: bool)
| 4172 | // ═══════════════════════════════════════════════════════════════════ |
| 4173 | |
| 4174 | fn test_info(message: &str, is_merge: bool) -> ImportedCommitInfo { |
| 4175 | ImportedCommitInfo { |
| 4176 | git_sha: "aabbccdd11223344".to_string(), |
| 4177 | short_sha: "aabbccdd".to_string(), |
| 4178 | atomic_hash: ContentHash::ZERO, |
| 4179 | is_merge, |
| 4180 | message: message.to_string(), |
| 4181 | } |
| 4182 | } |
| 4183 | |
| 4184 | #[test] |
| 4185 | fn test_classify_normal_commit() { |
no outgoing calls
no test coverage detected