New interface to show, select, and remove path connections

This commit is contained in:
Dion Moult
2022-09-20 16:25:52 +10:00
parent de2ada1141
commit e179070978
9 changed files with 164 additions and 4 deletions
+12
View File
@@ -382,3 +382,15 @@ class TestRemoveRepresentation:
).should_be_called()
ifc.run("geometry.remove_representation", representation="representation").should_be_called()
subject.remove_representation(ifc, geometry, obj="obj", representation="representation")
class TestSelectConnection:
def test_run(self, geometry):
geometry.select_connection("connection").should_be_called()
subject.select_connection(geometry, connection="connection")
class TestRemoveConnection:
def test_run(self, geometry):
geometry.remove_connection("connection").should_be_called()
subject.remove_connection(geometry, connection="connection")