(self, df)
| 807 | assert ctx["body"][0][2]["display_value"] == "NA" |
| 808 | |
| 809 | def test_caption(self, df): |
| 810 | styler = Styler(df, caption="foo") |
| 811 | result = styler.to_html() |
| 812 | assert all(["caption" in result, "foo" in result]) |
| 813 | |
| 814 | styler = df.style |
| 815 | result = styler.set_caption("baz") |
| 816 | assert styler is result |
| 817 | assert styler.caption == "baz" |
| 818 | |
| 819 | def test_uuid(self, df): |
| 820 | styler = Styler(df, uuid="abc123") |
nothing calls this directly
no test coverage detected