From 221ec20c404997f23c78b10666c6ef7b87a74bcc Mon Sep 17 00:00:00 2001 From: Sam Debruyn Date: Thu, 18 May 2023 15:49:23 +0200 Subject: [PATCH] wip --- tests/functional/adapter/test_simple_copy.py | 9 +++++++++ tests/functional/adapter/test_snapshot.py | 9 +++++++++ 2 files changed, 18 insertions(+) create mode 100644 tests/functional/adapter/test_simple_copy.py create mode 100644 tests/functional/adapter/test_snapshot.py diff --git a/tests/functional/adapter/test_simple_copy.py b/tests/functional/adapter/test_simple_copy.py new file mode 100644 index 00000000..60c502b3 --- /dev/null +++ b/tests/functional/adapter/test_simple_copy.py @@ -0,0 +1,9 @@ +from dbt.tests.adapter.simple_copy.test_simple_copy import EmptyModelsArentRunBase, SimpleCopyBase + + +class TestSimpleCopyBaseSQLServer(SimpleCopyBase): + pass + + +class TestEmptyModelsArentRunSQLServer(EmptyModelsArentRunBase): + pass diff --git a/tests/functional/adapter/test_snapshot.py b/tests/functional/adapter/test_snapshot.py new file mode 100644 index 00000000..5ef0c33d --- /dev/null +++ b/tests/functional/adapter/test_snapshot.py @@ -0,0 +1,9 @@ +from dbt.tests.adapter.simple_snapshot.test_snapshot import BaseSimpleSnapshot, BaseSnapshotCheck + + +class TestSnapshotSQLServer(BaseSimpleSnapshot): + pass + + +class TestSnapshotCheckSQLServer(BaseSnapshotCheck): + pass