| 25 | } |
| 26 | |
| 27 | static void check_contains(struct oidtree *ot, const char *hex, bool expected) |
| 28 | { |
| 29 | struct object_id oid; |
| 30 | |
| 31 | cl_parse_any_oid(hex, &oid); |
| 32 | cl_assert_equal_i(oidtree_contains(ot, &oid), expected); |
| 33 | } |
| 34 | |
| 35 | struct expected_hex_iter { |
| 36 | size_t i; |