(self)
| 93 | assert_equal(eye(3, 2, -3), [[0, 0], [0, 0], [0, 0]]) |
| 94 | |
| 95 | def test_strings(self): |
| 96 | assert_equal(eye(2, 2, dtype='S3'), |
| 97 | [[b'1', b''], [b'', b'1']]) |
| 98 | |
| 99 | def test_bool(self): |
| 100 | assert_equal(eye(2, 2, dtype=bool), [[True, False], [False, True]]) |
nothing calls this directly
no test coverage detected