Compare commits

...

2 Commits

Author SHA1 Message Date
Michelle Ark
cb99327bd3 separate test 2025-02-07 11:27:26 -05:00
Michelle Ark
d262cdf498 quick functional test on doc_blocks issue 2025-02-07 11:20:26 -05:00

View File

@@ -0,0 +1,23 @@
import pytest
from dbt.tests.util import run_dbt
schema_yml = """
models:
- name: test_model
columns:
- name: test
doc_blocks: 2
"""
class TestDocBlocksBackCompat:
@pytest.fixture(scope="class")
def models(self):
return {
"test_model.sql": "select 1 as fun",
"schema.yml": schema_yml,
}
def test_doc_blocks_back_compat(self, project):
run_dbt(["parse"])