Skip to content

Commit

Permalink
Data type macros (#183)
Browse files Browse the repository at this point in the history
* Run tests for data type macros

* Repoint to dbt-core main

Co-authored-by: Doug Beatty <44704949+dbeatty10@users.noreply.github.com>
  • Loading branch information
jtcohen6 and dbeatty10 committed Jul 5, 2022
1 parent 74bbae3 commit 0203a16
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions tests/functional/adapter/utils/test_data_types.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import pytest
from dbt.tests.adapter.utils.data_types.test_type_bigint import BaseTypeBigInt
from dbt.tests.adapter.utils.data_types.test_type_float import BaseTypeFloat
from dbt.tests.adapter.utils.data_types.test_type_int import BaseTypeInt
from dbt.tests.adapter.utils.data_types.test_type_numeric import BaseTypeNumeric
from dbt.tests.adapter.utils.data_types.test_type_string import BaseTypeString
from dbt.tests.adapter.utils.data_types.test_type_timestamp import BaseTypeTimestamp


class TestTypeBigInt(BaseTypeBigInt):
pass


class TestTypeFloat(BaseTypeFloat):
pass


class TestTypeInt(BaseTypeInt):
pass


class TestTypeNumeric(BaseTypeNumeric):
pass


class TestTypeString(BaseTypeString):
pass


class TestTypeTimestamp(BaseTypeTimestamp):
pass
File renamed without changes.

0 comments on commit 0203a16

Please sign in to comment.