()
| 57 | |
| 58 | |
| 59 | def test_too_many_positional(): |
| 60 | # the second argument is positional but can be passed as keyword. |
| 61 | with pytest.raises(TypeError, |
| 62 | match="takes from 2 to 3 positional arguments but 4 were given"): |
| 63 | func(1, 2, 3, 4) |
| 64 | |
| 65 | |
| 66 | def test_multiple_values(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…