9201ef759e
Harness Compat / harness compat (push) Failing after 0s
CI / test on 3.12 (standard) (push) Has been cancelled
CI / test on 3.13 (standard) (push) Has been cancelled
CI / test on 3.14 (standard) (push) Has been cancelled
CI / test on 3.10 (all-extras) (push) Has been cancelled
CI / test on 3.11 (all-extras) (push) Has been cancelled
CI / test on 3.12 (all-extras) (push) Has been cancelled
CI / test on 3.14 (pydantic-ai-slim) (push) Has been cancelled
CI / test on 3.10 (pydantic-evals) (push) Has been cancelled
CI / test on 3.11 (pydantic-evals) (push) Has been cancelled
CI / test on 3.12 (pydantic-evals) (push) Has been cancelled
CI / deploy-docs-preview (push) Has been cancelled
CI / build release artifacts (push) Has been cancelled
CI / publish to PyPI (push) Has been cancelled
CI / Send tweet (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / mypy (push) Has been cancelled
CI / docs (push) Has been cancelled
CI / test on 3.10 (standard) (push) Has been cancelled
CI / test on 3.11 (standard) (push) Has been cancelled
CI / test on 3.13 (all-extras) (push) Has been cancelled
CI / test on 3.14 (all-extras) (push) Has been cancelled
CI / test on 3.10 (pydantic-ai-slim) (push) Has been cancelled
CI / test on 3.11 (pydantic-ai-slim) (push) Has been cancelled
CI / test on 3.12 (pydantic-ai-slim) (push) Has been cancelled
CI / test on 3.13 (pydantic-ai-slim) (push) Has been cancelled
CI / test on 3.13 (pydantic-evals) (push) Has been cancelled
CI / test on 3.14 (pydantic-evals) (push) Has been cancelled
CI / test on 3.10 (lowest-versions) (push) Has been cancelled
CI / test on 3.11 (lowest-versions) (push) Has been cancelled
CI / test on 3.12 (lowest-versions) (push) Has been cancelled
CI / test on 3.13 (lowest-versions) (push) Has been cancelled
CI / test on 3.14 (lowest-versions) (push) Has been cancelled
CI / test examples on 3.11 (push) Has been cancelled
CI / test examples on 3.12 (push) Has been cancelled
CI / test examples on 3.13 (push) Has been cancelled
CI / test examples on 3.14 (push) Has been cancelled
CI / coverage (push) Has been cancelled
CI / check (push) Has been cancelled
CI / deploy-docs (push) Has been cancelled
50 lines
1.1 KiB
Python
50 lines
1.1 KiB
Python
"""Tests for pydantic_graph.util module."""
|
|
|
|
from pydantic_graph.util import (
|
|
Some,
|
|
TypeExpression,
|
|
get_callable_name,
|
|
unpack_type_expression,
|
|
)
|
|
|
|
|
|
def test_type_expression_unpacking():
|
|
"""Test TypeExpression wrapper and unpacking."""
|
|
# Test with a direct type
|
|
result = unpack_type_expression(int)
|
|
assert result is int
|
|
|
|
# Test with TypeExpression wrapper
|
|
wrapped = TypeExpression[str | int]
|
|
result = unpack_type_expression(wrapped)
|
|
assert result == str | int
|
|
|
|
|
|
def test_some_wrapper():
|
|
"""Test Some wrapper for Maybe pattern."""
|
|
value = Some(42)
|
|
assert value.value == 42
|
|
|
|
none_value = Some(None)
|
|
assert none_value.value is None
|
|
|
|
|
|
def test_get_callable_name():
|
|
"""Test extracting names from callables."""
|
|
|
|
def my_function():
|
|
pass
|
|
|
|
assert get_callable_name(my_function) == 'my_function'
|
|
|
|
class MyClass:
|
|
pass
|
|
|
|
assert get_callable_name(MyClass) == 'MyClass'
|
|
|
|
# Test with object without __name__ attribute
|
|
obj = object()
|
|
name = get_callable_name(obj)
|
|
assert isinstance(name, str)
|
|
assert 'object' in name
|