Current File : /home/inlingua/miniconda3/pkgs/packaging-24.2-py312h06a4308_0/info/test/tests/test_licenses.py
from packaging.licenses._spdx import EXCEPTIONS, LICENSES


def test_licenses():
    for license_id in LICENSES.keys():
        assert license_id == license_id.lower()


def test_exceptions():
    for exception_id in EXCEPTIONS.keys():
        assert exception_id == exception_id.lower()