Source code for pymcxray.serialization.test_SerializationH5py

#!/usr/bin/env python
""" """

# Script information for the file.
__author__ = "Hendrix Demers (hendrix.demers@mail.mcgill.ca)"
__version__ = ""
__date__ = ""
__copyright__ = "Copyright (c) 2011 Hendrix Demers"
__license__ = ""

# Standard library modules.
import unittest
import logging

# Third party modules.

# Local modules.

# Project modules
import pymcxray.serialization._Serialization as _Serialization

# Globals and constants variables.

[docs]class TestSerializationH5py(unittest.TestCase):
[docs] def setUp(self): unittest.TestCase.setUp(self)
[docs] def tearDown(self): unittest.TestCase.tearDown(self)
[docs] def testSkeleton(self): #self.fail("Test if the testcase is working.") self.assert_(True)
if __name__ == '__main__': #pragma: no cover logging.getLogger().setLevel(logging.DEBUG) from pymcxray.Testings import runTestModule runTestModule()