(self)
| 102 | assert_equal(y.dtype, dtype('int32')) |
| 103 | |
| 104 | def test_physical_quantities(self): |
| 105 | a = PhysicalQuantity(1.0) |
| 106 | b = PhysicalQuantity(5.0) |
| 107 | assert_equal(logspace(a, b), logspace(1.0, 5.0)) |
| 108 | |
| 109 | def test_subclass(self): |
| 110 | a = array(1).view(PhysicalQuantity2) |
nothing calls this directly
no test coverage detected