def test_draw_huge_random(): with patch.object(Tk, 'mainloop'): x = Random_Line_Network(50, sparsity=0.2) draw(x)
def test_network_draw_tk(): with patch.object(Tk, 'mainloop'): x = Unidirectional_Ring(6) LCR(x) draw(x)