(self)
| 293 | assert_raises(ValueError, linspace, 0, 10, num=-1) |
| 294 | |
| 295 | def test_corner(self): |
| 296 | y = list(linspace(0, 1, 1)) |
| 297 | assert_(y == [0.0], y) |
| 298 | assert_raises(TypeError, linspace, 0, 1, num=2.5) |
| 299 | |
| 300 | def test_type(self): |
| 301 | t1 = linspace(0, 1, 0).dtype |
nothing calls this directly
no test coverage detected