(value, expected)
| 519 | (None, False), |
| 520 | ]) |
| 521 | def test_is_numeric_value(value, expected): |
| 522 | res = is_numeric_value(value) |
| 523 | assert type(res) is type(expected) |
| 524 | assert res == expected |
nothing calls this directly
no test coverage detected
searching dependent graphs…