(df)
| 126 | |
| 127 | |
| 128 | def test_name(df): |
| 129 | out = (df["x"] + df["y"]) - 1 |
| 130 | fused = optimize(out, fuse=True) |
| 131 | assert "getitem" in str(fused.expr) |
| 132 | assert "sub" in str(fused.expr) |
| 133 | assert str(fused.expr) == str(fused.expr).lower() |
| 134 | |
| 135 | |
| 136 | def test_fusion_executes_only_once(): |
nothing calls this directly
no test coverage detected