diff --git a/.changes/1.9.0.md b/.changes/1.9.0.md index ef33647..62c16b1 100644 --- a/.changes/1.9.0.md +++ b/.changes/1.9.0.md @@ -33,4 +33,3 @@ - [@morsapaes](https://github.com/morsapaes) ([#120](https://github.com/dbt-labs/dbt-postgres/issues/120)) - [@peterallenwebb](https://github.com/peterallenwebb) ([#123](https://github.com/dbt-labs/dbt-postgres/issues/123)) - [@versusfacit](https://github.com/versusfacit) ([#85](https://github.com/dbt-labs/dbt-postgres/issues/85)) - diff --git a/tests/functional/adapter/test_simple_snapshot.py b/tests/functional/adapter/test_simple_snapshot.py index 879c7b9..76efc54 100644 --- a/tests/functional/adapter/test_simple_snapshot.py +++ b/tests/functional/adapter/test_simple_snapshot.py @@ -2,6 +2,9 @@ BaseSimpleSnapshot, BaseSnapshotCheck, ) +from dbt.tests.adapter.simple_snapshot.new_record_mode import ( + SnapshotNewRecordMode, +) class TestSnapshot(BaseSimpleSnapshot): @@ -10,3 +13,7 @@ class TestSnapshot(BaseSimpleSnapshot): class TestSnapshotCheck(BaseSnapshotCheck): pass + + +class TestPostgresSnapshotNewRecordMode(SnapshotNewRecordMode): + pass