8 lines
170 B
Python
8 lines
170 B
Python
from shlax.cli import ConsoleScript
|
|
|
|
|
|
def test_parser():
|
|
parser = ConsoleScript.Parser(['@host'])
|
|
parser.parse()
|
|
assert parser.targets['host'] == Ssh('host')
|