(self)
| 258 | self.check_conversion({"a": 1, "b": 2., "c": {"d": "eggs"}}, "AnyMap") |
| 259 | |
| 260 | def test_unconvertible(self): |
| 261 | self.check_raises(object(), ct.CanteraError, "Unable to convert") |
| 262 | |
| 263 | def test_unconvertible2(self): |
| 264 | self.check_raises([3+4j, 1-2j], ct.CanteraError, "Unable to convert") |
nothing calls this directly
no test coverage detected