Skip to content

Commit ba4acb9

Browse files
committed
add new column type tests
1 parent 4da177e commit ba4acb9

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import pytest
2+
from dbt.tests.adapter.column_types.test_column_types import BaseColumnTypes, model_sql, schema_yml
3+
4+
5+
class TestColumnTypesSQLServer(BaseColumnTypes):
6+
@pytest.fixture(scope="class")
7+
def models(self):
8+
return {"model.sql": model_sql, "schema.yml": schema_yml}
9+
10+
def test_run_and_test(self, project):
11+
self.run_and_test()

0 commit comments

Comments
 (0)