mirror of
https://github.com/bitromortac/lndmanage.git
synced 2026-08-15 12:50:55 +02:00
9 lines
237 B
Python
9 lines
237 B
Python
from unittest import TestCase
|
|
|
|
from lnregtest.lib.graph_testing import graph_test
|
|
from test.graph_definitions.star_ring_4_illiquid import nodes
|
|
|
|
|
|
class TestStarRing4Illiquid(TestCase):
|
|
def test_graph(self):
|
|
graph_test(nodes)
|