(function)
| 35 | |
| 36 | @pytest.mark.parametrize("function", [factorial, factorial_recursive]) |
| 37 | def test_float_number(function): |
| 38 | with pytest.raises(ValueError): |
| 39 | function(1.5) |
| 40 | |
| 41 | |
| 42 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected