Skip to content

Commit

Permalink
add four new tests in test_utils from dbt-tests-adapter v1.6.0
Browse files Browse the repository at this point in the history
- mention this adapter works with v1.6.x in README
  • Loading branch information
tom-juntunen committed Apr 21, 2024
1 parent dec62d3 commit 7cc01b5
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ Use the right version. Starting with the release of dbt-core 1.0.0,
versions of dbt-sqlite are aligned to the same major+minor
[version](https://semver.org/) of dbt-core.

- versions 1.6.x of this adapter work with dbt-core 1.6.x
- versions 1.5.x of this adapter work with dbt-core 1.5.x
- versions 1.4.x of this adapter work with dbt-core 1.4.x
- versions 1.3.x of this adapter work with dbt-core 1.3.x
Expand Down
16 changes: 15 additions & 1 deletion tests/functional/adapter/utils/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@
from dbt.tests.adapter.utils.test_safe_cast import BaseSafeCast
from dbt.tests.adapter.utils.test_split_part import BaseSplitPart
from dbt.tests.adapter.utils.test_string_literal import BaseStringLiteral

from dbt.tests.adapter.utils.test_equals import BaseEquals
from dbt.tests.adapter.utils.test_null_compare import BaseMixedNullCompare, BaseNullCompare
from dbt.tests.adapter.utils.test_validate_sql import BaseValidateSqlMethod

class TestAnyValue(BaseAnyValue):
pass
Expand Down Expand Up @@ -213,3 +215,15 @@ class TestSplitPart(BaseSplitPart):

class TestStringLiteral(BaseStringLiteral):
pass

class TestEquals(BaseEquals):
pass

class TestMixedNullCompare(BaseMixedNullCompare):
pass

class TestNullCompare(BaseNullCompare):
pass

class TestValidateSqlMethod(BaseValidateSqlMethod):
pass

0 comments on commit 7cc01b5

Please sign in to comment.