()
| 37 | |
| 38 | |
| 39 | def test_invalid_integers(): |
| 40 | with pytest.raises(TypeError, |
| 41 | match="integer argument expected, got float"): |
| 42 | func(1.) |
| 43 | with pytest.raises(OverflowError): |
| 44 | func(2**100) |
| 45 | |
| 46 | |
| 47 | def test_missing_arguments(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…