(self, a, b, tags)
| 529 | class InvCases(LinalgSquareTestCase, LinalgGeneralizedSquareTestCase): |
| 530 | |
| 531 | def do(self, a, b, tags): |
| 532 | a_inv = linalg.inv(a) |
| 533 | assert_almost_equal(dot_generalized(a, a_inv), |
| 534 | identity_like_generalized(a)) |
| 535 | assert_(consistent_subclass(a_inv, a)) |
| 536 | |
| 537 | |
| 538 | class TestInv(InvCases): |
nothing calls this directly
no test coverage detected