forked from databricks/dbt-databricks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_basic.py
More file actions
47 lines (29 loc) · 1.25 KB
/
test_basic.py
File metadata and controls
47 lines (29 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from dbt.tests.adapter.basic.test_base import BaseSimpleMaterializations
from dbt.tests.adapter.basic.test_singular_tests import BaseSingularTests
from dbt.tests.adapter.basic.test_singular_tests_ephemeral import (
BaseSingularTestsEphemeral,
)
from dbt.tests.adapter.basic.test_empty import BaseEmpty
from dbt.tests.adapter.basic.test_ephemeral import BaseEphemeral
from dbt.tests.adapter.basic.test_incremental import BaseIncremental
from dbt.tests.adapter.basic.test_generic_tests import BaseGenericTests
from dbt.tests.adapter.basic.test_snapshot_check_cols import BaseSnapshotCheckCols
from dbt.tests.adapter.basic.test_snapshot_timestamp import BaseSnapshotTimestamp
class TestSimpleMaterializationsDatabricks(BaseSimpleMaterializations):
pass
class TestSingularTestsDatabricks(BaseSingularTests):
pass
class TestSingularTestsEphemeralDatabricks(BaseSingularTestsEphemeral):
pass
class TestEmptyDatabricks(BaseEmpty):
pass
class TestEphemeralDatabricks(BaseEphemeral):
pass
class TestIncrementalDatabricks(BaseIncremental):
pass
class TestGenericTestsDatabricks(BaseGenericTests):
pass
class TestSnapshotCheckColsDatabricks(BaseSnapshotCheckCols):
pass
class TestSnapshotTimestampDatabricks(BaseSnapshotTimestamp):
pass