()
| 17 | def test_args(pyfile, target, run): |
| 18 | @pyfile |
| 19 | def code_to_debug(): |
| 20 | import sys |
| 21 | import debuggee |
| 22 | from debuggee import backchannel |
| 23 | |
| 24 | debuggee.setup() |
| 25 | backchannel.send(sys.argv) |
| 26 | |
| 27 | args = ["--arg1", "arg2", "-arg3", "--", "arg4", "-a"] |
| 28 |
nothing calls this directly
no test coverage detected
searching dependent graphs…