Skip to content

Commit

Permalink
🫡 Add another test
Browse files Browse the repository at this point in the history
  • Loading branch information
awtkns committed Nov 13, 2024
1 parent 706755f commit 8ff1fce
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions core/test/parser/test_null_values.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,19 @@ def test_pydantic_schema_validation_success(data: Dict[str, Any]):
},
],
},
{
"group": "Team",
"members": [
{
"name": "Adam",
"age": 29,
},
{
"name": "",
"age": None,
},
],
},
],
)
def test_with_emtpy_objects(data):
Expand Down

0 comments on commit 8ff1fce

Please sign in to comment.