Skip to content

Commit 2247461

Browse files
committed
Test op(Series[EA], EA])
1 parent c9fe5d3 commit 2247461

File tree

1 file changed

+4
-0
lines changed
  • pandas/tests/extension/base

1 file changed

+4
-0
lines changed

Diff for: pandas/tests/extension/base/ops.py

+4
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,10 @@ def test_divmod(self, data):
7878
self._check_divmod_op(s, divmod, 1, exc=TypeError)
7979
self._check_divmod_op(1, ops.rdivmod, s, exc=TypeError)
8080

81+
def test_divmod_series_array(self, data):
82+
s = pd.Series(data)
83+
self._check_divmod_op(s, divmod, data)
84+
8185
def test_add_series_with_extension_array(self, data):
8286
s = pd.Series(data)
8387
result = s + data

0 commit comments

Comments
 (0)