()
| 46 | |
| 47 | @pytest.fixture |
| 48 | def table_source(): |
| 49 | table = pa.table({'a': [1, 2, 3], 'b': [4, 5, 6]}) |
| 50 | table_opts = TableSourceNodeOptions(table) |
| 51 | table_source = Declaration("table_source", options=table_opts) |
| 52 | return table_source |
| 53 | |
| 54 | |
| 55 | def test_declaration(): |
nothing calls this directly
no test coverage detected