(self)
| 183 | self.module._distill_params_20(arg) |
| 184 | |
| 185 | def test_distill_20_dict(self): |
| 186 | eq_(self.module._distill_params_20({"foo": "bar"}), [{"foo": "bar"}]) |
| 187 | eq_( |
| 188 | self.module._distill_params_20(immutabledict({"foo": "bar"})), |
| 189 | [immutabledict({"foo": "bar"})], |
| 190 | ) |
| 191 | eq_( |
| 192 | self.module._distill_params_20(MappingProxyType({"foo": "bar"})), |
| 193 | [MappingProxyType({"foo": "bar"})], |
| 194 | ) |
| 195 | |
| 196 | def test_distill_20_error(self): |
| 197 | with expect_raises_message( |
nothing calls this directly
no test coverage detected