Add a failing test

This commit is contained in:
Šarūnas Nejus
2026-07-16 14:21:41 +01:00
parent 311662bd7d
commit 84c01ef4f9

View File

@@ -28,6 +28,16 @@ _p = pytest.param
@pytest.mark.parametrize(
"str_value, list_value, expected_warning, expected_list_value",
[
_p(
"",
None,
str_field_deprecation,
None,
id="empty str value should become None, warning raised",
marks=pytest.mark.xfail(
reason="Empty string should not become ['']"
),
),
_p(
"value",
None,