Test sql function with invalid engine.
()
| 127 | |
| 128 | |
| 129 | def test_sql_with_invalid_engine() -> None: |
| 130 | """Test sql function with invalid engine.""" |
| 131 | with pytest.raises(ValueError, match="Unsupported engine"): |
| 132 | sql("SELECT 1", engine="invalid") |
| 133 | |
| 134 | |
| 135 | @pytest.fixture |
nothing calls this directly
no test coverage detected
searching dependent graphs…