Skip to content

Commit

Permalink
overwrite for cascade exception
Browse files Browse the repository at this point in the history
  • Loading branch information
Ty Schlichenmeyer committed Jan 25, 2024
1 parent fb32960 commit 7e900be
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/functional/adapter/test_seed.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,15 @@ class TestSeedConfigFullRefreshOnSQLServer(BaseSeedConfigFullRefreshOn):
def setUp(self, project):
project.run_sql(fixed_setup_sql)

def test_simple_seed_full_refresh_config(self, project):
"""Drop the seed_actual table and re-create.
Verifies correct behavior by the absence of the
model which depends on seed_actual."""
self._build_relations_for_test(project)
self._check_relation_end_state(
run_result=run_dbt(["seed", "--full-refresh"]), project=project, exists=True
)


class TestSeedConfigFullRefreshOffSQLServer(BaseSeedConfigFullRefreshOff):
@pytest.fixture(scope="class", autouse=True)
Expand Down

0 comments on commit 7e900be

Please sign in to comment.