()
| 196 | |
| 197 | |
| 198 | def test_fit(): |
| 199 | x, y = (range(10),) * 2 |
| 200 | p = poly.Polynomial.fit(x, y, deg=1, symbol='z') |
| 201 | assert_equal(p.symbol, 'z') |
| 202 | |
| 203 | |
| 204 | def test_froomroots(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…