Commit 2d37df7b authored by Denis Bilenko's avatar Denis Bilenko

add test for core.get_header_version

parent 0472c424
......@@ -11,6 +11,10 @@ class Test(TestCase):
version = core.get_version()
assert isinstance(version, str), repr(version)
assert version, repr(version)
header_version = core.get_header_version()
assert isinstance(header_version, str), repr(header_version)
assert header_version, repr(header_version)
self.assertEqual(version, header_version)
def test_flags_conversion(self):
if sys.platform != 'win32':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment