forked from loafle/openapi-generator-original
18 lines
640 B
PowerShell
18 lines
640 B
PowerShell
#
|
|
# OpenAPI Petstore
|
|
# This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters.
|
|
# Version: 1.0.0
|
|
# Generated by OpenAPI Generator: https://openapi-generator.tech
|
|
#
|
|
|
|
Describe -tag 'PSPetstore' -name 'PSApiResponse' {
|
|
Context 'PSApiResponse' {
|
|
It 'Initialize-PSApiResponse' {
|
|
# a simple test to create an object
|
|
#$NewObject = Initialize-PSApiResponse -Code "TEST_VALUE" -Type "TEST_VALUE" -Message "TEST_VALUE"
|
|
#$NewObject | Should -BeOfType ApiResponse
|
|
#$NewObject.property | Should -Be 0
|
|
}
|
|
}
|
|
}
|