(self)
| 128 | assert_equal(y.dtype, dtype('int32')) |
| 129 | |
| 130 | def test_physical_quantities(self): |
| 131 | a = PhysicalQuantity(1.0) |
| 132 | b = PhysicalQuantity(5.0) |
| 133 | assert_equal(logspace(a, b), logspace(1.0, 5.0)) |
| 134 | |
| 135 | def test_subclass(self): |
| 136 | a = array(1).view(PhysicalQuantity2) |
nothing calls this directly
no test coverage detected