diff --git a/tests/test_ufonormalizer.py b/tests/test_ufonormalizer.py index faf94bc..09dbcd4 100644 --- a/tests/test_ufonormalizer.py +++ b/tests/test_ufonormalizer.py @@ -1582,6 +1582,11 @@ def test_normalizeLibPlistWithBytesData(self): Ny8wOS8yNiAwOToxMzoyMXEGc31xB2JzLg== """)) + def test_version_not_unknown(self): + """Test that package version is not 'unknown', which should only happen in cases + where the package has not been installed and is outside of source control. """ + self.assertNotEqual(ufonormalizerVersion, 'unknown') + class XMLWriterTest(unittest.TestCase): def __init__(self, methodName):