(self)
| 509 | assert styler.ctx == expected |
| 510 | |
| 511 | def test_render(self): |
| 512 | df = DataFrame({"A": [0, 1]}) |
| 513 | style = lambda x: Series(["color: red", "color: blue"], name=x.name) |
| 514 | s = Styler(df, uuid="AB").apply(style) |
| 515 | s.to_html() |
| 516 | # it worked? |
| 517 | |
| 518 | def test_multiple_render(self, df): |
| 519 | # GH 39396 |