Test op(Series[EA], EA]) · pandas-dev/pandas@2247461 (original) (raw)

File tree

1 file changed

lines changed

1 file changed

lines changed

Original file line number Diff line number Diff line change
@@ -78,6 +78,10 @@ def test_divmod(self, data):
78 78 self._check_divmod_op(s, divmod, 1, exc=TypeError)
79 79 self._check_divmod_op(1, ops.rdivmod, s, exc=TypeError)
80 80
81 +def test_divmod_series_array(self, data):
82 +s = pd.Series(data)
83 +self._check_divmod_op(s, divmod, data)
84 +
81 85 def test_add_series_with_extension_array(self, data):
82 86 s = pd.Series(data)
83 87 result = s + data