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 a22c1ab commit 617e426Copy full SHA for 617e426
tools/cli/internal/changelog/outputfilter/squash_test.go
@@ -139,6 +139,17 @@ func TestExtractExactValuesOrFail(t *testing.T) {
139
want: []string{"GROUP_USER_ADMIN", "/items/roles/items/"},
140
wantErr: require.NoError,
141
},
142
+ {
143
+ name: "Multiple values with empty entries",
144
+ operation: "test",
145
+ entry: &OasDiffEntry{
146
+ ID: "response-write-only-property-enum-value-added",
147
+ OperationID: "op1",
148
+ Text: "added the new '' enum value to the request property '/items/roles/items/'"},
149
+ expectedNumberOfValues: 2,
150
+ want: []string{"", "/items/roles/items/"},
151
+ wantErr: require.NoError,
152
+ },
153
{
154
name: "Incorrect number of values",
155
operation: "test",
0 commit comments