datahub/metadata-ingestion/tests/unit/redshift/test_redshift_config.py

7 lines
239 B
Python
Raw Permalink Normal View History

from datahub.ingestion.source.redshift.config import RedshiftConfig
def test_incremental_lineage_default_to_false():
config = RedshiftConfig(host_port="localhost:5439", database="test")
assert config.incremental_lineage is False