From 8427115fec540d59f8d34bb8dabdf9df4f0a4d98 Mon Sep 17 00:00:00 2001 From: Damian Owsianny Date: Mon, 8 Apr 2024 13:51:13 +0200 Subject: [PATCH] Add tests for --empty flag --- .changes/unreleased/Under the Hood-20240408-134750.yaml | 7 +++++++ tests/functional/adapter/empty/test_empty.py | 5 +++++ 2 files changed, 12 insertions(+) create mode 100644 .changes/unreleased/Under the Hood-20240408-134750.yaml create mode 100644 tests/functional/adapter/empty/test_empty.py diff --git a/.changes/unreleased/Under the Hood-20240408-134750.yaml b/.changes/unreleased/Under the Hood-20240408-134750.yaml new file mode 100644 index 00000000..2fbf15c1 --- /dev/null +++ b/.changes/unreleased/Under the Hood-20240408-134750.yaml @@ -0,0 +1,7 @@ +kind: Under the Hood +body: Add tests for --empty flag +time: 2024-04-08T13:47:50.027069+02:00 +custom: + Author: damian3031 + Issue: "391" + PR: "393" diff --git a/tests/functional/adapter/empty/test_empty.py b/tests/functional/adapter/empty/test_empty.py new file mode 100644 index 00000000..d76a83d5 --- /dev/null +++ b/tests/functional/adapter/empty/test_empty.py @@ -0,0 +1,5 @@ +from dbt.tests.adapter.empty.test_empty import BaseTestEmpty + + +class TestTrinoEmpty(BaseTestEmpty): + pass