Skip to content

Commit 7e42f8a

Browse files
committed
move pickle compression tests into a new class
1 parent 9a07250 commit 7e42f8a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pandas/io/tests/test_pickle.py

+5
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,11 @@ def test_pickle_v0_15_2(self):
284284
#
285285
tm.assert_categorical_equal(cat, pd.read_pickle(pickle_path))
286286

287+
class TestPickleCompression:
288+
289+
def setUp(self):
290+
self.path = u('__%s__.pickle' % tm.rands(10))
291+
287292
def compression_explicit(self, compression):
288293
# issue 11666
289294
if compression == 'xz':

0 commit comments

Comments
 (0)