()
| 407 | |
| 408 | |
| 409 | def test_values_repr(): |
| 410 | car = pm.eval('({"brand": "Ford","model": "Mustang","year": 1964})') |
| 411 | a = car.values() |
| 412 | assert str(a) == "dict_values(['Ford', 'Mustang', 1964.0])" |
| 413 | |
| 414 | |
| 415 | def test_values_update_object_updates_the_values(): |
nothing calls this directly
no outgoing calls
no test coverage detected