-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Run tests for data type macros * Repoint to dbt-core main
- Loading branch information
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.