ReFRACtor
swig_pickle_test.py
Go to the documentation of this file.
1 from future import standard_library
2 standard_library.install_aliases()
3 # Test that we set up pickling correctly in the SWIG code.
4 
5 from nose.tools import *
6 from full_physics import *
7 from nose.plugins.skip import Skip, SkipTest
8 import os
9 import pickle
10 
11 test_data = os.path.dirname(__file__) + "/../../test/unit/data/"
12 
14  '''Test pickling of HdfFile class.'''
15  if(not have_full_physics_swig):
16  raise SkipTest
17  f = HdfFile(test_data + "l1b.h5")
18  t = pickle.dumps(f, pickle.HIGHEST_PROTOCOL)
19  f2 = pickle.loads(t)
20  assert f.file_name == f2.file_name

Copyright © 2017, California Institute of Technology.
ALL RIGHTS RESERVED.
U.S. Government Sponsorship acknowledged.
Generated Fri Aug 24 2018 15:44:10