Fix typo in Ruby examples/mustache files (#5773)

This commit is contained in:
Zack Lemmon 2017-06-04 23:19:29 -04:00 committed by wing328
parent 4fd52d17c5
commit f3da691a72
44 changed files with 44 additions and 44 deletions

View File

@ -19,7 +19,7 @@ require 'json'
end end
describe 'test an instance of {{classname}}' do describe 'test an instance of {{classname}}' do
it 'should create an instact of {{classname}}' do it 'should create an instance of {{classname}}' do
expect(@instance).to be_instance_of({{moduleName}}::{{classname}}) expect(@instance).to be_instance_of({{moduleName}}::{{classname}})
end end
end end

View File

@ -20,7 +20,7 @@ require 'date'
end end
describe 'test an instance of {{classname}}' do describe 'test an instance of {{classname}}' do
it 'should create an instact of {{classname}}' do it 'should create an instance of {{classname}}' do
expect(@instance).to be_instance_of({{moduleName}}::{{classname}}) expect(@instance).to be_instance_of({{moduleName}}::{{classname}})
end end
end end

View File

@ -38,7 +38,7 @@ describe 'FakeApi' do
end end
describe 'test an instance of FakeApi' do describe 'test an instance of FakeApi' do
it 'should create an instact of FakeApi' do it 'should create an instance of FakeApi' do
expect(@instance).to be_instance_of(Petstore::FakeApi) expect(@instance).to be_instance_of(Petstore::FakeApi)
end end
end end

View File

@ -39,7 +39,7 @@ describe 'ModelReturn' do
end end
describe 'test an instance of ModelReturn' do describe 'test an instance of ModelReturn' do
it 'should create an instact of ModelReturn' do it 'should create an instance of ModelReturn' do
expect(@instance).to be_instance_of(Petstore::ModelReturn) expect(@instance).to be_instance_of(Petstore::ModelReturn)
end end
end end

View File

@ -31,7 +31,7 @@ describe 'FakeApi' do
end end
describe 'test an instance of FakeApi' do describe 'test an instance of FakeApi' do
it 'should create an instact of FakeApi' do it 'should create an instance of FakeApi' do
expect(@instance).to be_instance_of(Petstore::FakeApi) expect(@instance).to be_instance_of(Petstore::FakeApi)
end end
end end

View File

@ -31,7 +31,7 @@ describe 'PetApi' do
end end
describe 'test an instance of PetApi' do describe 'test an instance of PetApi' do
it 'should create an instact of PetApi' do it 'should create an instance of PetApi' do
expect(@instance).to be_instance_of(Petstore::PetApi) expect(@instance).to be_instance_of(Petstore::PetApi)
end end
end end

View File

@ -31,7 +31,7 @@ describe 'StoreApi' do
end end
describe 'test an instance of StoreApi' do describe 'test an instance of StoreApi' do
it 'should create an instact of StoreApi' do it 'should create an instance of StoreApi' do
expect(@instance).to be_instance_of(Petstore::StoreApi) expect(@instance).to be_instance_of(Petstore::StoreApi)
end end
end end

View File

@ -31,7 +31,7 @@ describe 'UserApi' do
end end
describe 'test an instance of UserApi' do describe 'test an instance of UserApi' do
it 'should create an instact of UserApi' do it 'should create an instance of UserApi' do
expect(@instance).to be_instance_of(Petstore::UserApi) expect(@instance).to be_instance_of(Petstore::UserApi)
end end
end end

View File

@ -32,7 +32,7 @@ describe 'AdditionalPropertiesClass' do
end end
describe 'test an instance of AdditionalPropertiesClass' do describe 'test an instance of AdditionalPropertiesClass' do
it 'should create an instact of AdditionalPropertiesClass' do it 'should create an instance of AdditionalPropertiesClass' do
expect(@instance).to be_instance_of(Petstore::AdditionalPropertiesClass) expect(@instance).to be_instance_of(Petstore::AdditionalPropertiesClass)
end end
end end

View File

@ -32,7 +32,7 @@ describe 'AnimalFarm' do
end end
describe 'test an instance of AnimalFarm' do describe 'test an instance of AnimalFarm' do
it 'should create an instact of AnimalFarm' do it 'should create an instance of AnimalFarm' do
expect(@instance).to be_instance_of(Petstore::AnimalFarm) expect(@instance).to be_instance_of(Petstore::AnimalFarm)
end end
end end

View File

@ -32,7 +32,7 @@ describe 'Animal' do
end end
describe 'test an instance of Animal' do describe 'test an instance of Animal' do
it 'should create an instact of Animal' do it 'should create an instance of Animal' do
expect(@instance).to be_instance_of(Petstore::Animal) expect(@instance).to be_instance_of(Petstore::Animal)
end end
end end

View File

@ -32,7 +32,7 @@ describe 'ApiResponse' do
end end
describe 'test an instance of ApiResponse' do describe 'test an instance of ApiResponse' do
it 'should create an instact of ApiResponse' do it 'should create an instance of ApiResponse' do
expect(@instance).to be_instance_of(Petstore::ApiResponse) expect(@instance).to be_instance_of(Petstore::ApiResponse)
end end
end end

View File

@ -39,7 +39,7 @@ describe 'ArrayOfArrayOfNumberOnly' do
end end
describe 'test an instance of ArrayOfArrayOfNumberOnly' do describe 'test an instance of ArrayOfArrayOfNumberOnly' do
it 'should create an instact of ArrayOfArrayOfNumberOnly' do it 'should create an instance of ArrayOfArrayOfNumberOnly' do
expect(@instance).to be_instance_of(Petstore::ArrayOfArrayOfNumberOnly) expect(@instance).to be_instance_of(Petstore::ArrayOfArrayOfNumberOnly)
end end
end end

View File

@ -39,7 +39,7 @@ describe 'ArrayOfNumberOnly' do
end end
describe 'test an instance of ArrayOfNumberOnly' do describe 'test an instance of ArrayOfNumberOnly' do
it 'should create an instact of ArrayOfNumberOnly' do it 'should create an instance of ArrayOfNumberOnly' do
expect(@instance).to be_instance_of(Petstore::ArrayOfNumberOnly) expect(@instance).to be_instance_of(Petstore::ArrayOfNumberOnly)
end end
end end

View File

@ -39,7 +39,7 @@ describe 'ArrayTest' do
end end
describe 'test an instance of ArrayTest' do describe 'test an instance of ArrayTest' do
it 'should create an instact of ArrayTest' do it 'should create an instance of ArrayTest' do
expect(@instance).to be_instance_of(Petstore::ArrayTest) expect(@instance).to be_instance_of(Petstore::ArrayTest)
end end
end end

View File

@ -27,7 +27,7 @@ describe 'Capitalization' do
end end
describe 'test an instance of Capitalization' do describe 'test an instance of Capitalization' do
it 'should create an instact of Capitalization' do it 'should create an instance of Capitalization' do
expect(@instance).to be_instance_of(Petstore::Capitalization) expect(@instance).to be_instance_of(Petstore::Capitalization)
end end
end end

View File

@ -32,7 +32,7 @@ describe 'Cat' do
end end
describe 'test an instance of Cat' do describe 'test an instance of Cat' do
it 'should create an instact of Cat' do it 'should create an instance of Cat' do
expect(@instance).to be_instance_of(Petstore::Cat) expect(@instance).to be_instance_of(Petstore::Cat)
end end
end end

View File

@ -32,7 +32,7 @@ describe 'Category' do
end end
describe 'test an instance of Category' do describe 'test an instance of Category' do
it 'should create an instact of Category' do it 'should create an instance of Category' do
expect(@instance).to be_instance_of(Petstore::Category) expect(@instance).to be_instance_of(Petstore::Category)
end end
end end

View File

@ -27,7 +27,7 @@ describe 'ClassModel' do
end end
describe 'test an instance of ClassModel' do describe 'test an instance of ClassModel' do
it 'should create an instact of ClassModel' do it 'should create an instance of ClassModel' do
expect(@instance).to be_instance_of(Petstore::ClassModel) expect(@instance).to be_instance_of(Petstore::ClassModel)
end end
end end

View File

@ -39,7 +39,7 @@ describe 'Client' do
end end
describe 'test an instance of Client' do describe 'test an instance of Client' do
it 'should create an instact of Client' do it 'should create an instance of Client' do
expect(@instance).to be_instance_of(Petstore::Client) expect(@instance).to be_instance_of(Petstore::Client)
end end
end end

View File

@ -32,7 +32,7 @@ describe 'Dog' do
end end
describe 'test an instance of Dog' do describe 'test an instance of Dog' do
it 'should create an instact of Dog' do it 'should create an instance of Dog' do
expect(@instance).to be_instance_of(Petstore::Dog) expect(@instance).to be_instance_of(Petstore::Dog)
end end
end end

View File

@ -39,7 +39,7 @@ describe 'EnumArrays' do
end end
describe 'test an instance of EnumArrays' do describe 'test an instance of EnumArrays' do
it 'should create an instact of EnumArrays' do it 'should create an instance of EnumArrays' do
expect(@instance).to be_instance_of(Petstore::EnumArrays) expect(@instance).to be_instance_of(Petstore::EnumArrays)
end end
end end

View File

@ -32,7 +32,7 @@ describe 'EnumClass' do
end end
describe 'test an instance of EnumClass' do describe 'test an instance of EnumClass' do
it 'should create an instact of EnumClass' do it 'should create an instance of EnumClass' do
expect(@instance).to be_instance_of(Petstore::EnumClass) expect(@instance).to be_instance_of(Petstore::EnumClass)
end end
end end

View File

@ -32,7 +32,7 @@ describe 'EnumTest' do
end end
describe 'test an instance of EnumTest' do describe 'test an instance of EnumTest' do
it 'should create an instact of EnumTest' do it 'should create an instance of EnumTest' do
expect(@instance).to be_instance_of(Petstore::EnumTest) expect(@instance).to be_instance_of(Petstore::EnumTest)
end end
end end

View File

@ -32,7 +32,7 @@ describe 'FormatTest' do
end end
describe 'test an instance of FormatTest' do describe 'test an instance of FormatTest' do
it 'should create an instact of FormatTest' do it 'should create an instance of FormatTest' do
expect(@instance).to be_instance_of(Petstore::FormatTest) expect(@instance).to be_instance_of(Petstore::FormatTest)
end end
end end

View File

@ -39,7 +39,7 @@ describe 'HasOnlyReadOnly' do
end end
describe 'test an instance of HasOnlyReadOnly' do describe 'test an instance of HasOnlyReadOnly' do
it 'should create an instact of HasOnlyReadOnly' do it 'should create an instance of HasOnlyReadOnly' do
expect(@instance).to be_instance_of(Petstore::HasOnlyReadOnly) expect(@instance).to be_instance_of(Petstore::HasOnlyReadOnly)
end end
end end

View File

@ -39,7 +39,7 @@ describe 'List' do
end end
describe 'test an instance of List' do describe 'test an instance of List' do
it 'should create an instact of List' do it 'should create an instance of List' do
expect(@instance).to be_instance_of(Petstore::List) expect(@instance).to be_instance_of(Petstore::List)
end end
end end

View File

@ -39,7 +39,7 @@ describe 'MapTest' do
end end
describe 'test an instance of MapTest' do describe 'test an instance of MapTest' do
it 'should create an instact of MapTest' do it 'should create an instance of MapTest' do
expect(@instance).to be_instance_of(Petstore::MapTest) expect(@instance).to be_instance_of(Petstore::MapTest)
end end
end end

View File

@ -32,7 +32,7 @@ describe 'MixedPropertiesAndAdditionalPropertiesClass' do
end end
describe 'test an instance of MixedPropertiesAndAdditionalPropertiesClass' do describe 'test an instance of MixedPropertiesAndAdditionalPropertiesClass' do
it 'should create an instact of MixedPropertiesAndAdditionalPropertiesClass' do it 'should create an instance of MixedPropertiesAndAdditionalPropertiesClass' do
expect(@instance).to be_instance_of(Petstore::MixedPropertiesAndAdditionalPropertiesClass) expect(@instance).to be_instance_of(Petstore::MixedPropertiesAndAdditionalPropertiesClass)
end end
end end

View File

@ -32,7 +32,7 @@ describe 'Model200Response' do
end end
describe 'test an instance of Model200Response' do describe 'test an instance of Model200Response' do
it 'should create an instact of Model200Response' do it 'should create an instance of Model200Response' do
expect(@instance).to be_instance_of(Petstore::Model200Response) expect(@instance).to be_instance_of(Petstore::Model200Response)
end end
end end

View File

@ -32,7 +32,7 @@ describe 'ModelReturn' do
end end
describe 'test an instance of ModelReturn' do describe 'test an instance of ModelReturn' do
it 'should create an instact of ModelReturn' do it 'should create an instance of ModelReturn' do
expect(@instance).to be_instance_of(Petstore::ModelReturn) expect(@instance).to be_instance_of(Petstore::ModelReturn)
end end
end end

View File

@ -32,7 +32,7 @@ describe 'Name' do
end end
describe 'test an instance of Name' do describe 'test an instance of Name' do
it 'should create an instact of Name' do it 'should create an instance of Name' do
expect(@instance).to be_instance_of(Petstore::Name) expect(@instance).to be_instance_of(Petstore::Name)
end end
end end

View File

@ -39,7 +39,7 @@ describe 'NumberOnly' do
end end
describe 'test an instance of NumberOnly' do describe 'test an instance of NumberOnly' do
it 'should create an instact of NumberOnly' do it 'should create an instance of NumberOnly' do
expect(@instance).to be_instance_of(Petstore::NumberOnly) expect(@instance).to be_instance_of(Petstore::NumberOnly)
end end
end end

View File

@ -32,7 +32,7 @@ describe 'Order' do
end end
describe 'test an instance of Order' do describe 'test an instance of Order' do
it 'should create an instact of Order' do it 'should create an instance of Order' do
expect(@instance).to be_instance_of(Petstore::Order) expect(@instance).to be_instance_of(Petstore::Order)
end end
end end

View File

@ -27,7 +27,7 @@ describe 'OuterBoolean' do
end end
describe 'test an instance of OuterBoolean' do describe 'test an instance of OuterBoolean' do
it 'should create an instact of OuterBoolean' do it 'should create an instance of OuterBoolean' do
expect(@instance).to be_instance_of(Petstore::OuterBoolean) expect(@instance).to be_instance_of(Petstore::OuterBoolean)
end end
end end

View File

@ -27,7 +27,7 @@ describe 'OuterComposite' do
end end
describe 'test an instance of OuterComposite' do describe 'test an instance of OuterComposite' do
it 'should create an instact of OuterComposite' do it 'should create an instance of OuterComposite' do
expect(@instance).to be_instance_of(Petstore::OuterComposite) expect(@instance).to be_instance_of(Petstore::OuterComposite)
end end
end end

View File

@ -27,7 +27,7 @@ describe 'OuterEnum' do
end end
describe 'test an instance of OuterEnum' do describe 'test an instance of OuterEnum' do
it 'should create an instact of OuterEnum' do it 'should create an instance of OuterEnum' do
expect(@instance).to be_instance_of(Petstore::OuterEnum) expect(@instance).to be_instance_of(Petstore::OuterEnum)
end end
end end

View File

@ -27,7 +27,7 @@ describe 'OuterNumber' do
end end
describe 'test an instance of OuterNumber' do describe 'test an instance of OuterNumber' do
it 'should create an instact of OuterNumber' do it 'should create an instance of OuterNumber' do
expect(@instance).to be_instance_of(Petstore::OuterNumber) expect(@instance).to be_instance_of(Petstore::OuterNumber)
end end
end end

View File

@ -27,7 +27,7 @@ describe 'OuterString' do
end end
describe 'test an instance of OuterString' do describe 'test an instance of OuterString' do
it 'should create an instact of OuterString' do it 'should create an instance of OuterString' do
expect(@instance).to be_instance_of(Petstore::OuterString) expect(@instance).to be_instance_of(Petstore::OuterString)
end end
end end

View File

@ -32,7 +32,7 @@ describe 'Pet' do
end end
describe 'test an instance of Pet' do describe 'test an instance of Pet' do
it 'should create an instact of Pet' do it 'should create an instance of Pet' do
expect(@instance).to be_instance_of(Petstore::Pet) expect(@instance).to be_instance_of(Petstore::Pet)
end end
end end

View File

@ -32,7 +32,7 @@ describe 'ReadOnlyFirst' do
end end
describe 'test an instance of ReadOnlyFirst' do describe 'test an instance of ReadOnlyFirst' do
it 'should create an instact of ReadOnlyFirst' do it 'should create an instance of ReadOnlyFirst' do
expect(@instance).to be_instance_of(Petstore::ReadOnlyFirst) expect(@instance).to be_instance_of(Petstore::ReadOnlyFirst)
end end
end end

View File

@ -32,7 +32,7 @@ describe 'SpecialModelName' do
end end
describe 'test an instance of SpecialModelName' do describe 'test an instance of SpecialModelName' do
it 'should create an instact of SpecialModelName' do it 'should create an instance of SpecialModelName' do
expect(@instance).to be_instance_of(Petstore::SpecialModelName) expect(@instance).to be_instance_of(Petstore::SpecialModelName)
end end
end end

View File

@ -32,7 +32,7 @@ describe 'Tag' do
end end
describe 'test an instance of Tag' do describe 'test an instance of Tag' do
it 'should create an instact of Tag' do it 'should create an instance of Tag' do
expect(@instance).to be_instance_of(Petstore::Tag) expect(@instance).to be_instance_of(Petstore::Tag)
end end
end end

View File

@ -32,7 +32,7 @@ describe 'User' do
end end
describe 'test an instance of User' do describe 'test an instance of User' do
it 'should create an instact of User' do it 'should create an instance of User' do
expect(@instance).to be_instance_of(Petstore::User) expect(@instance).to be_instance_of(Petstore::User)
end end
end end