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
9 lines
254 B
Python
9 lines
254 B
Python
from pytest_console_scripts import ScriptRunner
|
|
|
|
|
|
def test_project_command(script_runner: ScriptRunner) -> None:
|
|
result = script_runner.run(["dlt", "license", "-h"])
|
|
assert result.returncode == 0
|
|
|
|
assert "Usage: dlt license" in result.stdout
|