()
| 15 | |
| 16 | |
| 17 | def test_tojavascript_with_dict(): |
| 18 | dict_obj = {"key": "value"} |
| 19 | assert tojavascript(dict_obj) == '{\n "key": "value",\n}' |
| 20 | |
| 21 | |
| 22 | def test_tojavascript_with_dict_with_mixed_key_types(): |
nothing calls this directly
no test coverage detected