mirror of
https://github.com/dlt-hub/dlt.git
synced 2025-12-17 19:31:30 +00:00
* 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
12 lines
364 B
Python
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
|