(poly, tgt)
| 343 | (poly.Legendre, '1.0 + 2.0·P₁(z) + 3.0·P₂(z)'), |
| 344 | )) |
| 345 | def test_symbol(poly, tgt): |
| 346 | p = poly([1, 2, 3], symbol='z') |
| 347 | assert_equal(f"{p:unicode}", tgt) |
| 348 | |
| 349 | |
| 350 | class TestRepr: |
nothing calls this directly
no test coverage detected
searching dependent graphs…