lncm / noma

Noma - Bitcoin lightning node management CLI utility & Python API
https://lncm.io
Apache License 2.0
5 stars 2 forks source link

Add tests #1

Closed AnotherDroog closed 5 years ago

AnotherDroog commented 5 years ago

I've added the first tests, maybe you can help improve coverage @nolim1t ?

nolim1t commented 5 years ago

Sounds good

nolim1t commented 5 years ago

the create wallet function is a bit hard to test, as those functions are only available if there is no wallet on LND.

Unless we wrote an LND mock which would be useful anyway so it could run on travis

ln2max commented 5 years ago

I'm currently just mocking up requests.get() and requests.post() so that the tests will run even if there is nothing else set up locally: https://github.com/ln2max/noma/blob/lnd_tests/tests/test_lnd.py

AnotherDroog commented 5 years ago

Wow awesome work @ln2max