Skip to content

Commit

Permalink
Merge pull request #375 from dbt-msft/add-query-comment-tests
Browse files Browse the repository at this point in the history
add query comment tests
  • Loading branch information
sdebruyn authored May 15, 2023
2 parents 924c9d8 + 13af1c5 commit 48fc41e
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions tests/functional/adapter/test_query_comment.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
from dbt.tests.adapter.query_comment.test_query_comment import (
BaseEmptyQueryComments,
BaseMacroArgsQueryComments,
BaseMacroInvalidQueryComments,
BaseMacroQueryComments,
BaseNullQueryComments,
BaseQueryComments,
)


class TestQueryCommentsSQLServer(BaseQueryComments):
pass


class TestMacroQueryCommentsSQLServer(BaseMacroQueryComments):
pass


class TestMacroArgsQueryCommentsSQLServer(BaseMacroArgsQueryComments):
pass


class TestMacroInvalidQueryCommentsSQLServer(BaseMacroInvalidQueryComments):
pass


class TestNullQueryCommentsSQLServer(BaseNullQueryComments):
pass


class TestEmptyQueryCommentsSQLServer(BaseEmptyQueryComments):
pass

0 comments on commit 48fc41e

Please sign in to comment.