()
| 88 | |
| 89 | |
| 90 | def test_table_source(): |
| 91 | with pytest.raises(TypeError): |
| 92 | TableSourceNodeOptions(pa.record_batch([pa.array([1, 2, 3])], ["a"])) |
| 93 | |
| 94 | table_source = TableSourceNodeOptions(None) |
| 95 | decl = Declaration("table_source", table_source) |
| 96 | with pytest.raises( |
| 97 | ValueError, match="TableSourceNode requires table which is not null" |
| 98 | ): |
| 99 | _ = decl.to_table() |
| 100 | |
| 101 | |
| 102 | def test_filter(table_source): |
nothing calls this directly
no test coverage detected