(s)
| 37 | class TestSymbolic(util.F2PyTest): |
| 38 | def test_eliminate_quotes(self): |
| 39 | def worker(s): |
| 40 | r, d = eliminate_quotes(s) |
| 41 | s1 = insert_quotes(r, d) |
| 42 | assert s1 == s |
| 43 | |
| 44 | for kind in ["", "mykind_"]: |
| 45 | worker(kind + '"1234" // "ABCD"') |
nothing calls this directly
no test coverage detected