Skip to content

Commit

Permalink
Update snapshots for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Swimburger committed Nov 4, 2024
1 parent 7baae7f commit 165e92a
Show file tree
Hide file tree
Showing 125 changed files with 17,655 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2888,6 +2888,38 @@ func do() {
exports[`test definitions > grpc-proto-exhaustive 1`] = `
"package example
import (
context "context"
client "github.com/acme/acme-go/client"
)
func do() {
client := client.NewClient()
client.Dataservice.Foo(
context.TODO(),
)
}
------------------------
package example
import (
context "context"
client "github.com/acme/acme-go/client"
)
func do() {
client := client.NewClient()
client.Dataservice.Foo(
context.TODO(),
)
}
------------------------
package example
import (
context "context"
acme "github.com/acme/acme-go"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,9 @@ types:
"docs": "OK",
"type": "root.EndUser",
},
"source": {
"openapi": "../openapi.json",
},
},
"getEndUsers": {
"auth": true,
Expand Down Expand Up @@ -565,6 +568,9 @@ types:
"docs": "OK",
"type": "root.EndUsers",
},
"source": {
"openapi": "../openapi.json",
},
},
"updateEndUserById": {
"auth": true,
Expand Down Expand Up @@ -595,6 +601,9 @@ types:
"docs": "OK",
"type": "root.EndUser",
},
"source": {
"openapi": "../openapi.json",
},
},
},
"source": {
Expand All @@ -613,6 +622,8 @@ service:
method: GET
auth: true
docs: Get a specific end user
source:
openapi: ../openapi.json
path-parameters:
end_user_id:
type: string
Expand All @@ -637,6 +648,8 @@ service:
method: PATCH
auth: true
docs: Update an end user. Request data is limited to 4KB in size total.
source:
openapi: ../openapi.json
path-parameters:
end_user_id:
type: string
Expand All @@ -660,6 +673,8 @@ service:
method: GET
auth: true
docs: Get multiple end users
source:
openapi: ../openapi.json
display-name: Get multiple end users by ID
request:
name: GetEndUsersRequest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@
"docs": "A simple API response.",
"type": "Response",
},
"source": {
"openapi": "../openapi.yml",
},
},
},
"source": {
Expand Down Expand Up @@ -75,6 +78,8 @@
path: /get
method: GET
auth: false
source:
openapi: ../openapi.yml
request:
name: Request
body:
Expand Down
Loading

0 comments on commit 165e92a

Please sign in to comment.