(constructor)
| 844 | |
| 845 | |
| 846 | def test_mixed_number_input(constructor): |
| 847 | df = constructor(dict(a=[1, 2], b=[1.1, 2.1])) |
| 848 | fig = px.line(df) |
| 849 | assert len(fig.data) == 2 |
| 850 | |
| 851 | |
| 852 | def test_line_group(constructor): |
nothing calls this directly
no test coverage detected