Skip to content

Commit 7cc01b5

Browse files
committed
add four new tests in test_utils from dbt-tests-adapter v1.6.0
- mention this adapter works with v1.6.x in README
1 parent dec62d3 commit 7cc01b5

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ Use the right version. Starting with the release of dbt-core 1.0.0,
3434
versions of dbt-sqlite are aligned to the same major+minor
3535
[version](https://semver.org/) of dbt-core.
3636

37+
- versions 1.6.x of this adapter work with dbt-core 1.6.x
3738
- versions 1.5.x of this adapter work with dbt-core 1.5.x
3839
- versions 1.4.x of this adapter work with dbt-core 1.4.x
3940
- versions 1.3.x of this adapter work with dbt-core 1.3.x

tests/functional/adapter/utils/test_utils.py

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@
3333
from dbt.tests.adapter.utils.test_safe_cast import BaseSafeCast
3434
from dbt.tests.adapter.utils.test_split_part import BaseSplitPart
3535
from dbt.tests.adapter.utils.test_string_literal import BaseStringLiteral
36-
36+
from dbt.tests.adapter.utils.test_equals import BaseEquals
37+
from dbt.tests.adapter.utils.test_null_compare import BaseMixedNullCompare, BaseNullCompare
38+
from dbt.tests.adapter.utils.test_validate_sql import BaseValidateSqlMethod
3739

3840
class TestAnyValue(BaseAnyValue):
3941
pass
@@ -213,3 +215,15 @@ class TestSplitPart(BaseSplitPart):
213215

214216
class TestStringLiteral(BaseStringLiteral):
215217
pass
218+
219+
class TestEquals(BaseEquals):
220+
pass
221+
222+
class TestMixedNullCompare(BaseMixedNullCompare):
223+
pass
224+
225+
class TestNullCompare(BaseNullCompare):
226+
pass
227+
228+
class TestValidateSqlMethod(BaseValidateSqlMethod):
229+
pass

0 commit comments

Comments
 (0)