From 272df6bad89b40c0a84109e5986efd3ae9629cfe Mon Sep 17 00:00:00 2001 From: Michelle Ark Date: Fri, 1 Dec 2023 17:28:27 -0500 Subject: [PATCH] add tests for --empty flag (#666) * add tests for --empty flag * changelog entry * restore dev-requirements --- .changes/unreleased/Under the Hood-20231119-132157.yaml | 6 ++++++ tests/functional/adapter/empty/test_empty.py | 5 +++++ 2 files changed, 11 insertions(+) create mode 100644 .changes/unreleased/Under the Hood-20231119-132157.yaml create mode 100644 tests/functional/adapter/empty/test_empty.py diff --git a/.changes/unreleased/Under the Hood-20231119-132157.yaml b/.changes/unreleased/Under the Hood-20231119-132157.yaml new file mode 100644 index 000000000..760c08ccf --- /dev/null +++ b/.changes/unreleased/Under the Hood-20231119-132157.yaml @@ -0,0 +1,6 @@ +kind: Under the Hood +body: Add tests for --empty flag +time: 2023-11-19T13:21:57.588501-05:00 +custom: + Author: michelleark + Issue: "667" diff --git a/tests/functional/adapter/empty/test_empty.py b/tests/functional/adapter/empty/test_empty.py new file mode 100644 index 000000000..3368a90f9 --- /dev/null +++ b/tests/functional/adapter/empty/test_empty.py @@ -0,0 +1,5 @@ +from dbt.tests.adapter.empty.test_empty import BaseTestEmpty + + +class TestRedshiftEmpty(BaseTestEmpty): + pass