Skip to content

Commit

Permalink
now with tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jwills committed May 21, 2023
1 parent 6e31677 commit 4ec3e88
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 16 deletions.
17 changes: 17 additions & 0 deletions tests/functional/adapter/simple_seed/test_fast_seed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import pytest

from dbt.tests.adapter.simple_seed.test_seed import SeedTestBase
from dbt.tests.util import (
run_dbt,
)

class TestSeedConfigFast(SeedTestBase):
@pytest.fixture(scope="class")
def project_config_update(self):
return {
"seeds": {"quote_columns": False, "fast": True}
}

def test_simple_seed_fast(self, project):
self._build_relations_for_test(project)
self._check_relation_end_state(run_result=run_dbt(["seed"]), project=project, exists=True)
16 changes: 0 additions & 16 deletions tests/functional/adapter/simple_seed/test_simple_seed.py

This file was deleted.

0 comments on commit 4ec3e88

Please sign in to comment.