(executor)
| 720 | |
| 721 | @dbtest |
| 722 | def test_nonexistent_view_definition(executor): |
| 723 | with pytest.raises(RuntimeError): |
| 724 | executor.view_definition("there_is_no_such_view") |
| 725 | with pytest.raises(RuntimeError): |
| 726 | executor.view_definition("mvw1") |
| 727 | |
| 728 | |
| 729 | @dbtest |
nothing calls this directly
no test coverage detected