Skip to content

Commit

Permalink
move pickle compression tests into a new class
Browse files Browse the repository at this point in the history
  • Loading branch information
goldenbull committed Jan 4, 2017
1 parent 9a07250 commit ccbeaa9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pandas/io/tests/test_pickle.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,12 @@ def test_pickle_v0_15_2(self):
#
tm.assert_categorical_equal(cat, pd.read_pickle(pickle_path))


class TestPickleCompression:

def setUp(self):
self.path = u('__%s__.pickle' % tm.rands(10))

def compression_explicit(self, compression):
# issue 11666
if compression == 'xz':
Expand Down

0 comments on commit ccbeaa9

Please sign in to comment.