Skip to content

Commit 0ec244a

Browse files
committed
TST: run setitem tests for IntegerArray
1 parent f06b969 commit 0ec244a

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

pandas/core/arrays/integer.py

+4
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@ def numpy_dtype(self):
5858
def kind(self):
5959
return self.numpy_dtype.kind
6060

61+
@cache_readonly
62+
def itemsize(self):
63+
return self.numpy_dtype.itemsize
64+
6165
@classmethod
6266
def construct_array_type(cls):
6367
"""Return the array type associated with this dtype

pandas/tests/extension/test_integer.py

+4
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,10 @@ class TestGetitem(base.BaseGetitemTests):
174174
pass
175175

176176

177+
class TestSetitem(base.BaseSetitemTests):
178+
pass
179+
180+
177181
class TestMissing(base.BaseMissingTests):
178182
pass
179183

0 commit comments

Comments
 (0)