Skip to content

Commit

Permalink
Import relevant pytest(s) for cross-database cast macro (#805)
Browse files Browse the repository at this point in the history
Co-authored-by: Colin Rogers <[email protected]>
  • Loading branch information
dbeatty10 and colin-rogers-dbt authored May 14, 2024
1 parent 4b8add4 commit 2489280
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .changes/unreleased/Features-20240430-185708.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: Features
body: Add tests for cross-database `cast` macro
time: 2024-04-30T18:57:08.04492-06:00
custom:
Author: dbeatty10
Issue: "804"
5 changes: 5 additions & 0 deletions tests/functional/adapter/utils/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from dbt.tests.adapter.utils.test_array_construct import BaseArrayConstruct
from dbt.tests.adapter.utils.test_any_value import BaseAnyValue
from dbt.tests.adapter.utils.test_bool_or import BaseBoolOr
from dbt.tests.adapter.utils.test_cast import BaseCast
from dbt.tests.adapter.utils.test_cast_bool_to_text import BaseCastBoolToText
from dbt.tests.adapter.utils.test_concat import BaseConcat
from dbt.tests.adapter.utils.test_current_timestamp import BaseCurrentTimestampNaive
Expand Down Expand Up @@ -49,6 +50,10 @@ class TestBoolOr(BaseBoolOr):
pass


class TestCast(BaseCast):
pass


class TestCastBoolToText(BaseCastBoolToText):
pass

Expand Down

0 comments on commit 2489280

Please sign in to comment.