(self, stmt, mod_name)
| 103 | |
| 104 | @parameterized.expand([("$import json", "json"), ("$import json as j", "j")]) |
| 105 | def test_import(self, stmt, mod_name): |
| 106 | test_globals = {} |
| 107 | ConfigExpression(id="", config=stmt, globals=test_globals).evaluate() |
| 108 | self.assertTrue(callable(test_globals[mod_name].dump)) |
| 109 | |
| 110 | @parameterized.expand( |
| 111 | [ |
nothing calls this directly
no test coverage detected