mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-06 16:49:03 +00:00
11 lines
272 B
Python
11 lines
272 B
Python
![]() |
from click.testing import CliRunner
|
||
|
|
||
|
from datahub.entrypoints import datahub
|
||
|
|
||
|
|
||
|
def test_list_all():
|
||
|
# This just verifies that it runs without error.
|
||
|
runner = CliRunner()
|
||
|
result = runner.invoke(datahub, ["ingest-list-plugins"])
|
||
|
assert result.exit_code == 0
|