(len_entry, first_2_params)
| 5 | |
| 6 | |
| 7 | def check_len_entry(len_entry, first_2_params): |
| 8 | assert len_entry[:2] == first_2_params |
| 9 | assert callable(len_entry[2]) |
| 10 | assert len_entry[2]("check") == "len(check)" |
| 11 | |
| 12 | |
| 13 | def test_dict_resolver(): |
no outgoing calls
no test coverage detected