Skip to content

Commit 585ef31

Browse files
committed
more tests
1 parent 5784380 commit 585ef31

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pandas/tools/tests/test_hashing.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,11 @@ def test_hash_pandas_object(self):
7777
self.check_equal(obj)
7878
self.check_not_equal_with_index(obj)
7979

80+
def test_hash_pandas_object2(self):
81+
for name, s in self.df.iteritems():
82+
self.check_equal(s)
83+
self.check_not_equal_with_index(s)
84+
8085
def test_hash_pandas_empty_object(self):
8186
for obj in [Series([], dtype='float64'),
8287
Series([], dtype='object'),

0 commit comments

Comments
 (0)