Merging upstream version 0.12.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
f45bc3d463
commit
8d2f70e3c7
77 changed files with 23610 additions and 2331 deletions
13
tests/unit/cli/test_get.py
Normal file
13
tests/unit/cli/test_get.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
|
||||
import pytest
|
||||
from click.testing import CliRunner
|
||||
from eos_downloader.cli.cli import ardl
|
||||
|
||||
@pytest.fixture
|
||||
def runner():
|
||||
return CliRunner()
|
||||
|
||||
def test_get_help(runner):
|
||||
result = runner.invoke(ardl, ['get', '--help'])
|
||||
assert result.exit_code == 0
|
||||
assert "Download Arista from Arista website" in result.output
|
Loading…
Add table
Add a link
Reference in a new issue