Vendor aws-sdk-go (dep ensure) (#178)
This commit is contained in:
16
vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sagemakerruntime/client.go
generated
vendored
Normal file
16
vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sagemakerruntime/client.go
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
// +build integration
|
||||
|
||||
//Package sagemakerruntime provides gucumber integration tests support.
|
||||
package sagemakerruntime
|
||||
|
||||
import (
|
||||
"github.com/aws/aws-sdk-go/awstesting/integration/smoke"
|
||||
"github.com/aws/aws-sdk-go/service/sagemakerruntime"
|
||||
"github.com/gucumber/gucumber"
|
||||
)
|
||||
|
||||
func init() {
|
||||
gucumber.Before("@sagemakerruntime", func() {
|
||||
gucumber.World["client"] = sagemakerruntime.New(smoke.Session)
|
||||
})
|
||||
}
|
||||
10
vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sagemakerruntime/sagemakerruntime.feature
generated
vendored
Normal file
10
vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sagemakerruntime/sagemakerruntime.feature
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
# language: en
|
||||
@sagemakerruntime @client
|
||||
Feature: Amazon SageMaker Runtime
|
||||
|
||||
Scenario: Making a request
|
||||
When I attempt to call the "InvokeEndpoint" API with JSON:
|
||||
"""
|
||||
{"EndpointName": "fake-endpoint", "Body": [123, 125]}
|
||||
"""
|
||||
Then I expect the response error code to be "ValidationError"
|
||||
Reference in New Issue
Block a user