Skip to content

Commit 0e7781c

Browse files
committed
TST: Make test_expressions cover more arithmetic operators
1 parent f927fed commit 0e7781c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/tests/test_expressions.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,12 @@ def setUp(self):
4848
def tearDown(self):
4949
expr._MIN_ELEMENTS = self._MIN_ELEMENTS
5050

51+
#TODO: add test for Panel
52+
#TODO: add tests for binary operations
5153
@nose.tools.nottest
5254
def run_arithmetic_test(self, df, assert_func, check_dtype=False):
5355
expr._MIN_ELEMENTS = 0
54-
operations = ['add', 'sub', 'mul', 'truediv']
56+
operations = ['add', 'sub', 'mul','mod','truediv','floordiv','pow']
5557
if not py3compat.PY3:
5658
operations.append('div')
5759
for arith in operations:

0 commit comments

Comments
 (0)