We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a269ff5 commit 8d76282Copy full SHA for 8d76282
tests/unit/model/test_deployment_node.py
@@ -47,6 +47,7 @@ def get_elements(self):
47
return []
48
49
def add_relationship(self, **kwargs):
50
+ """Simulate adding relationships."""
51
return Relationship(**kwargs)
52
53
@@ -262,6 +263,7 @@ def test_deployment_node_serialising_infrastructure_nodes(model_with_node):
262
263
264
265
def test_deployment_node_uses_adds_relationship(model_with_node):
266
+ """Test begin able to add a relationships between deployment nodes with using()."""
267
node1 = model_with_node.empty_node
268
node2 = DeploymentNode(name="node2")
269
node2.set_model(model_with_node)
0 commit comments