()
| 59 | |
| 60 | |
| 61 | def test_binop_numbers(): |
| 62 | src = """ |
| 63 | 20 + 22 |
| 64 | """ |
| 65 | tree = process_source_code(src) |
| 66 | assert isinstance(tree, Number) |
| 67 | assert int(tree) == 42 |
| 68 | |
| 69 | |
| 70 | def test_binop_string_vars(): |
nothing calls this directly
no test coverage detected