add additional sources and search through them
(node_factory)
| 217 | |
| 218 | |
| 219 | def test_search(node_factory): |
| 220 | """add additional sources and search through them""" |
| 221 | n = get_reckless_node(node_factory) |
| 222 | r = reckless([f"--network={NETWORK}", "search", "testplugpass"], dir=n.lightning_dir) |
| 223 | assert r.returncode == 0 |
| 224 | assert r.search_stdout('found testplugpass in source: https://github.com/lightningd/plugins') |
| 225 | |
| 226 | |
| 227 | def test_search_partial_match(node_factory): |
nothing calls this directly
no test coverage detected