File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ from dbt .tests .adapter .query_comment .test_query_comment import (
2
+ BaseEmptyQueryComments ,
3
+ BaseMacroArgsQueryComments ,
4
+ BaseMacroInvalidQueryComments ,
5
+ BaseMacroQueryComments ,
6
+ BaseNullQueryComments ,
7
+ BaseQueryComments ,
8
+ )
9
+
10
+
11
+ class TestQueryCommentsSQLServer (BaseQueryComments ):
12
+ pass
13
+
14
+
15
+ class TestMacroQueryCommentsSQLServer (BaseMacroQueryComments ):
16
+ pass
17
+
18
+
19
+ class TestMacroArgsQueryCommentsSQLServer (BaseMacroArgsQueryComments ):
20
+ pass
21
+
22
+
23
+ class TestMacroInvalidQueryCommentsSQLServer (BaseMacroInvalidQueryComments ):
24
+ pass
25
+
26
+
27
+ class TestNullQueryCommentsSQLServer (BaseNullQueryComments ):
28
+ pass
29
+
30
+
31
+ class TestEmptyQueryCommentsSQLServer (BaseEmptyQueryComments ):
32
+ pass
You can’t perform that action at this time.
0 commit comments