test_lightningd: Test missing arguments.

This commit is contained in:
ZmnSCPxj 2018-02-02 13:44:48 +00:00 committed by Rusty Russell
parent 5b304fce4f
commit 4ac5d123d6

View File

@ -3287,5 +3287,18 @@ class LightningDTests(BaseLightningDTests):
j, _ = json.JSONDecoder().raw_decode(out)
assert 'help [command]' in j['verbose']
# Test missing parameters.
try:
# This will error due to missing parameters.
# We want to check if lightningd will crash.
out = subprocess.check_output(['cli/lightning-cli',
'--lightning-dir={}'
.format(l1.daemon.lightning_dir),
'-J', '-o',
'sendpay']).decode('utf-8')
except:
pass
if __name__ == '__main__':
unittest.main(verbosity=2)