| 132 | def test_with_encoding_options(self): |
| 133 | """Test encoding with custom TOON options.""" |
| 134 | class Item(BaseModel): |
| 135 | id: int |
| 136 | tags: list[str] |
| 137 | |
| 138 | item = Item(id=1, tags=['tag1', 'tag2', 'tag3']) |
| 139 |
no outgoing calls
searching dependent graphs…