Files
dlt/tests/hub/test_destinations.py
rudolfix b062dcafa4 docs/removes dlt plus docs and adds eula (#3079)
* answers defaults in cli if tty disconnected

* adds method to send anon tracker event even if disabled

* fixes types in source/resource build in generator

* adds dlt.hub with transformation decorator

* moves dlt-plus to separate sidebar in docs, renames to dltHub Features, adds EULA

* renamed plus to hub in docs

* fixes docs logos

* removes more dlt+

* renames plus tests

* fixes ci run main

* fixes hub workflows
2025-09-21 00:15:08 +02:00

12 lines
364 B
Python

from dlt.common.destination.reference import DestinationReference
def test_iceberg_destination() -> None:
# check that iceberg destination is available
assert DestinationReference.find("iceberg") is not None
def test_delta_destination() -> None:
# check that delta destination is available
assert DestinationReference.find("delta") is not None