()
| 19 | |
| 20 | |
| 21 | def test_deprecated_parse_obj(): |
| 22 | with pytest.warns(DeprecationWarning): |
| 23 | item = Item.parse_obj({"name": "Hello"}) |
| 24 | assert item.name == "Hello" |
| 25 | |
| 26 | |
| 27 | def test_deprecated_dict(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…