(poly, tgt)
| 319 | (poly.Legendre, '1.0 + 2.0·P₁(z) + 3.0·P₂(z)'), |
| 320 | )) |
| 321 | def test_symbol(poly, tgt): |
| 322 | p = poly([1, 2, 3], symbol='z') |
| 323 | assert_equal(f"{p:unicode}", tgt) |
| 324 | |
| 325 | |
| 326 | class TestRepr: |
nothing calls this directly
no test coverage detected