Source code for casinotools.fileformat.casino2.test_Version

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

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

# Standard library modules.
import unittest

# Third party modules.

# Local modules.
import casinotools.fileformat.casino2.Version #@UnusedImport

# Globals and constants variables.

[docs]class TestVersion(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.assertTrue(True)
if __name__ == '__main__': #pragma: no cover import nose nose.runmodule()