We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9fe5d3 commit 2247461Copy full SHA for 2247461
pandas/tests/extension/base/ops.py
@@ -78,6 +78,10 @@ def test_divmod(self, data):
78
self._check_divmod_op(s, divmod, 1, exc=TypeError)
79
self._check_divmod_op(1, ops.rdivmod, s, exc=TypeError)
80
81
+ def test_divmod_series_array(self, data):
82
+ s = pd.Series(data)
83
+ self._check_divmod_op(s, divmod, data)
84
+
85
def test_add_series_with_extension_array(self, data):
86
s = pd.Series(data)
87
result = s + data
0 commit comments