From 0b50fd0f96ee2133697202a659fee8669a04fa27 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Fri, 28 Aug 2020 17:15:39 +0200 Subject: [PATCH] pyln-testing: Add a dummy test to check functionality --- contrib/pyln-testing/tests/test_start.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 contrib/pyln-testing/tests/test_start.py diff --git a/contrib/pyln-testing/tests/test_start.py b/contrib/pyln-testing/tests/test_start.py new file mode 100644 index 000000000..1e8e03463 --- /dev/null +++ b/contrib/pyln-testing/tests/test_start.py @@ -0,0 +1,5 @@ +from pyln.testing.fixtures import * # noqa: F401 F403 + + +def test_peers(node_factory): + l1, l2 = node_factory.line_graph(2)