test_clsid.py 267 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 import unittest from oletools.common.clsid import KNOWN_CLSIDS class TestCommonClsid(unittest.TestCase): def test_known_clsids_uppercase(self): for k, v in KNOWN_CLSIDS.items(): k_upper = k.upper() self.assertEqual(k, k_upper)