(self)
| 111 | assert_equal(eye(3, 2, -3), [[0, 0], [0, 0], [0, 0]]) |
| 112 | |
| 113 | def test_strings(self): |
| 114 | assert_equal(eye(2, 2, dtype='S3'), |
| 115 | [[b'1', b''], [b'', b'1']]) |
| 116 | |
| 117 | def test_bool(self): |
| 118 | assert_equal(eye(2, 2, dtype=bool), [[True, False], [False, True]]) |
nothing calls this directly
no test coverage detected