Skip to content

Commit 14478e3

Browse files
committed
Ensure OpenApiParameterTests cover terse output
1 parent b60ca92 commit 14478e3

File tree

17 files changed

+118
-115
lines changed

17 files changed

+118
-115
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "name1",
3+
"in": "query",
4+
"description": "description1",
5+
"style": "form",
6+
"explode": false,
7+
"schema": {
8+
"type": "array",
9+
"items": {
10+
"enum": [
11+
"value1",
12+
"value2"
13+
]
14+
}
15+
}
16+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"name":"name1","in":"query","description":"description1","style":"form","explode":false,"schema":{"type":"array","items":{"enum":["value1","value2"]}}}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "name1",
3+
"in": "query",
4+
"description": "description1",
5+
"style": "form",
6+
"schema": {
7+
"type": "array",
8+
"items": {
9+
"enum": [
10+
"value1",
11+
"value2"
12+
]
13+
}
14+
}
15+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"name":"name1","in":"query","description":"description1","style":"form","schema":{"type":"array","items":{"enum":["value1","value2"]}}}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"in": "header",
3+
"name": "name1",
4+
"description": "description1",
5+
"required": true,
6+
"type": "string"
7+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"in":"header","name":"name1","description":"description1","required":true,"type":"string"}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"in": "header",
3+
"name": "name1",
4+
"description": "description1",
5+
"required": true,
6+
"type": "string"
7+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"in":"header","name":"name1","description":"description1","required":true,"type":"string"}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"in": "path",
3+
"name": "name1"
4+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"in":"path","name":"name1"}

0 commit comments

Comments
 (0)