()
| 128 | |
| 129 | |
| 130 | def test_pop_no_params(): |
| 131 | likes = pm.eval('({"color": "blue", "fruit": "apple", "pet": "dog"})') |
| 132 | try: |
| 133 | likes.pop() |
| 134 | assert (False) |
| 135 | except Exception as e: |
| 136 | assert str(type(e)) == "<class 'TypeError'>" |
| 137 | assert str(e) == "pop expected at least 1 argument, got 0" |
| 138 | |
| 139 | # clear |
| 140 |
nothing calls this directly
no outgoing calls
no test coverage detected