(self)
| 329 | assert_raises(ValueError, linspace, 0, 10, num=-1) |
| 330 | |
| 331 | def test_corner(self): |
| 332 | y = list(linspace(0, 1, 1)) |
| 333 | assert_(y == [0.0], y) |
| 334 | assert_raises(TypeError, linspace, 0, 1, num=2.5) |
| 335 | |
| 336 | def test_type(self): |
| 337 | t1 = linspace(0, 1, 0).dtype |
nothing calls this directly
no test coverage detected