(s, expected)
| 2955 | [("x", ValueError), ("1", 1), ("123", 123), ("2.0", ValueError), ("None", None)], |
| 2956 | ) |
| 2957 | def test_int_from_string(s, expected): |
| 2958 | _from_string_test(Integer, s, expected) |
| 2959 | |
| 2960 | |
| 2961 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…