Skip to content

Commit

Permalink
add missing seed test
Browse files Browse the repository at this point in the history
  • Loading branch information
benc-db committed Nov 9, 2023
1 parent c12d663 commit 9164b46
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/functional/adapter/test_seeds.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from dbt.tests.adapter.simple_seed.test_seed import SeedUniqueDelimiterTestBase
from dbt.tests.adapter.simple_seed.test_seed import SeedUniqueDelimiterTestBase, BaseTestEmptySeed
from dbt.tests.util import run_dbt
import pytest

Expand Down Expand Up @@ -557,3 +557,7 @@ def test_seed_with_empty_delimiter(self, project):
"""Testing failure of running dbt seed with an empty configured delimiter value"""
seed_result = run_dbt(["seed"], expect_pass=False)
assert "compilation error" in seed_result.results[0].message.lower()


class TestDatabricksEmptySeed(BaseTestEmptySeed):
pass

0 comments on commit 9164b46

Please sign in to comment.