()
| 853 | |
| 854 | |
| 855 | def test_is_valid(): |
| 856 | # An example generated function wrapper without options |
| 857 | data = [4, 5, None] |
| 858 | assert pc.is_valid(data).to_pylist() == [True, True, False] |
| 859 | |
| 860 | with pytest.raises(TypeError): |
| 861 | pc.is_valid(data, options=None) |
| 862 | |
| 863 | |
| 864 | def test_generated_docstrings(): |