1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
# SPDX-License-Identifier: MIT OR Apache-2.0
# This file is dual licensed under the terms of the Apache License, Version
# 2.0, and the MIT License. See the LICENSE file in the root of this
# repository for complete details.
from importlib import metadata
import pytest
import structlog
class TestLegacyMetadataHack:
def test_version(self, recwarn):
"""
structlog.__version__ returns the correct version and doesn't warn.
"""
assert metadata.version("structlog") == structlog.__version__
assert [] == recwarn.list
def test_description(self):
"""
structlog.__description__ returns the correct description.
"""
with pytest.deprecated_call():
assert "Structured Logging for Python" == structlog.__description__
def test_uri(self):
"""
structlog.__uri__ returns the correct project URL.
"""
with pytest.deprecated_call():
assert "https://www.structlog.org/" == structlog.__uri__
def test_email(self):
"""
structlog.__email__ returns Hynek's email address.
"""
with pytest.deprecated_call():
assert "hs@ox.cx" == structlog.__email__
def test_does_not_exist(self):
"""
Asking for unsupported dunders raises an AttributeError.
"""
with pytest.raises(
AttributeError, match="module structlog has no attribute __yolo__"
):
structlog.__yolo__
|