()
| 26 | |
| 27 | |
| 28 | def test_tojavascript_with_list(): |
| 29 | list_obj = ["value1", "value2"] |
| 30 | assert tojavascript(list_obj) == '[\n"value1",\n"value2",\n]' |
| 31 | |
| 32 | |
| 33 | def test_tojavascript_with_string(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…