Skip to content

Commit

Permalink
Various snapshot tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gshank committed Oct 9, 2024
1 parent 009ee81 commit 87c52d5
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# install latest changes in dbt-core + dbt-postgres
git+https://github.com/dbt-labs/dbt-core.git#subdirectory=core
git+https://github.com/dbt-labs/dbt-adapters.git
git+https://github.com/dbt-labs/dbt-adapters.git#subdirectory=dbt-tests-adapter
git+https://github.com/dbt-labs/dbt-core.git@snapshot_dbt_valid_to_current#subdirectory=core
git+https://github.com/dbt-labs/dbt-adapters.git@test_various_snapshot_configs
git+https://github.com/dbt-labs/dbt-adapters.git@test_various_snapshot_configs#subdirectory=dbt-tests-adapter
git+https://github.com/dbt-labs/dbt-common.git
git+https://github.com/dbt-labs/dbt-postgres.git@snapshot_dbt_valid_to_current
git+https://github.com/dbt-labs/dbt-postgres.git@test_various_snapshot_configs

# dev
ipdb~=0.13.13
Expand Down
23 changes: 23 additions & 0 deletions tests/functional/adapter/test_simple_snapshot.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,32 @@
from dbt.tests.adapter.simple_snapshot.test_snapshot import BaseSnapshotCheck, BaseSimpleSnapshot

from dbt.tests.adapter.simple_snapshot.test_various_configs import (
BaseSnapshotColumnNames,
BaseSnapshotColumnNamesFromDbtProject,
BaseSnapshotInvalidColumnNames,
BaseSnapshotDbtValidToCurrent,
)


class TestSnapshot(BaseSimpleSnapshot):
pass


class TestSnapshotCheck(BaseSnapshotCheck):
pass


class TestSnapshotColumnNames(BaseSnapshotColumnNames):
pass


class TestSnapshotColumnNamesFromDbtProject(BaseSnapshotColumnNamesFromDbtProject):
pass


class TestSnapshotInvalidColumnNames(BaseSnapshotInvalidColumnNames):
pass


class TestSnapshotDbtValidToCurrent(BaseSnapshotDbtValidToCurrent):
pass

0 comments on commit 87c52d5

Please sign in to comment.