Skip to content

Commit ccbeaa9

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

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pandas/io/tests/test_pickle.py

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

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

0 commit comments

Comments
 (0)