Is every key in B is the same in A?
(a, b)
| 642 | def check_route_as_expected(routes, paths): |
| 643 | """Make sure all fields in paths are match those in routes""" |
| 644 | def dict_subset_eq(a, b): |
| 645 | """Is every key in B is the same in A?""" |
| 646 | return all(a.get(key) == b[key] for key in b) |
| 647 | |
| 648 | for path in paths: |
| 649 | found = False |
no test coverage detected