(node_factory, benchmark)
| 108 | |
| 109 | |
| 110 | def test_invoice(node_factory, benchmark): |
| 111 | l1 = get_bench_node(node_factory) |
| 112 | |
| 113 | def bench_invoice(): |
| 114 | l1.rpc.invoice(1000, 'invoice-{}'.format(time()), 'desc') |
| 115 | |
| 116 | benchmark(bench_invoice) |
| 117 | |
| 118 | |
| 119 | def test_pay(node_factory, benchmark): |
nothing calls this directly
no test coverage detected