(self)
| 152 | self.A = np.array('abc1', dtype='c').view(np.chararray) |
| 153 | |
| 154 | def test_it(self): |
| 155 | assert_equal(self.A.shape, (4,)) |
| 156 | assert_equal(self.A.upper()[:2].tobytes(), b'AB') |
| 157 | |
| 158 | class TestComparisons: |
| 159 | def setup_method(self): |
nothing calls this directly
no test coverage detected