pytest: Rename start tests to reflect the plugin under test

This commit is contained in:
Christian Decker
2019-12-27 15:58:14 +01:00
parent ba85a5796a
commit c6e3b9f011
7 changed files with 7 additions and 7 deletions

View File

@@ -4,7 +4,7 @@ from pyln.testing.fixtures import * # noqa: F401,F403
plugin_path = os.path.join(os.path.dirname(__file__), "monitor.py")
def test_helpme_starts(node_factory):
def test_monitor_starts(node_factory):
l1 = node_factory.get_node()
# Test dynamically
l1.rpc.plugin_start(plugin_path)

View File

@@ -4,7 +4,7 @@ from pyln.testing.fixtures import * # noqa: F401,F403
plugin_path = os.path.join(os.path.dirname(__file__), "persistent-channels.py")
def test_helpme_starts(node_factory):
def test_persistent_channels_starts(node_factory):
l1 = node_factory.get_node()
# Test dynamically
l1.rpc.plugin_start(plugin_path)

View File

@@ -4,7 +4,7 @@ from pyln.testing.fixtures import * # noqa: F401,F403
plugin_path = os.path.join(os.path.dirname(__file__), "probe.py")
def test_helpme_starts(node_factory):
def test_probe_starts(node_factory):
l1 = node_factory.get_node()
# Test dynamically
l1.rpc.plugin_start(plugin_path)

View File

@@ -4,7 +4,7 @@ from pyln.testing.fixtures import * # noqa: F401,F403
plugin_path = os.path.join(os.path.dirname(__file__), "prometheus.py")
def test_helpme_starts(node_factory):
def test_prometheus_starts(node_factory):
l1 = node_factory.get_node()
# Test dynamically
l1.rpc.plugin_start(plugin_path)

View File

@@ -4,7 +4,7 @@ from pyln.testing.fixtures import * # noqa: F401,F403
plugin_path = os.path.join(os.path.dirname(__file__), "rebalance.py")
def test_helpme_starts(node_factory):
def test_rebalance_starts(node_factory):
l1 = node_factory.get_node()
# Test dynamically
l1.rpc.plugin_start(plugin_path)

View File

@@ -4,7 +4,7 @@ from pyln.testing.fixtures import * # noqa: F401,F403
plugin_path = os.path.join(os.path.dirname(__file__), "sendinvoiceless.py")
def test_helpme_starts(node_factory):
def test_sendinvoiceless_starts(node_factory):
l1 = node_factory.get_node()
# Test dynamically
l1.rpc.plugin_start(plugin_path)

View File

@@ -4,7 +4,7 @@ from pyln.testing.fixtures import * # noqa: F401,F403
plugin_path = os.path.join(os.path.dirname(__file__), "cl-zmq.py")
def test_helpme_starts(node_factory):
def test_zmq_starts(node_factory):
l1 = node_factory.get_node()
# Test dynamically
l1.rpc.plugin_start(plugin_path)