"""Test tuple types with fixed and variable lengths.""" assert is_instance_of((1, "a"), tuple) assert is_instance_of((1, "a"), tuple[int, str]) assert is_instance_of ...
def test_normalize_type_to_list_single_type() -> None: """Test normalize_type_to_list with single types.""" def test_normalize_type_to_list_none() -> None: """Test ...