File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,11 @@ def test_model_item_init(attributes):
4646
4747
4848def test_default_element_tags_order (empty_model : Model ):
49- """Test that the default tags get added in the right order."""
49+ """
50+ Test that the default tags get added in the right order.
51+
52+ Based on test_getTags_WhenThereAreNoTags() from the Java API.
53+ """
5054 element = empty_model .add_software_system (name = "Name" , description = "Description" )
5155 assert list (element .tags ) == ["Element" , "Software System" ]
5256
@@ -55,6 +59,8 @@ def test_default_and_custom_tags(empty_model: Model):
5559 """
5660 Test that tags are in the order that they were added.
5761
62+ Based on test_getTags_ReturnsTheListOfTags_WhenThereAreSomeTags from the Java API.
63+
5864 See https://github.com/Midnighter/structurizr-python/issues/22
5965 """
6066 element = empty_model .add_software_system (name = "Name" , description = "Description" )
You can’t perform that action at this time.
0 commit comments