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

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