(cell)
| 75 | ], |
| 76 | ) |
| 77 | def test_multiline(cell): |
| 78 | expected = "hello" |
| 79 | start = cell.index(expected) + 1 |
| 80 | for i in range(start, start + len(expected)): |
| 81 | expect_token(expected, cell, i) |
| 82 | start = cell.index(expected) + 1 |
| 83 | for i in range(start, start + len(expected)): |
| 84 | expect_token(expected, cell, i) |
| 85 | |
| 86 | |
| 87 | def test_nested_call_kwargs(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…