You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
264 B

4 years ago
  1. import unittest
  2. from nd2reader2 import __version__ as VERSION
  3. class TestVersion(unittest.TestCase):
  4. def test_module_version_type(self):
  5. # just make sure the version number exists and is the type we expect
  6. self.assertEqual(type(VERSION), str)