mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-17 00:21:19 +00:00
41 lines
861 B
Plaintext
41 lines
861 B
Plaintext
=begin
|
|
{{> api_info}}
|
|
=end
|
|
|
|
require 'spec_helper'
|
|
require 'json'
|
|
require 'date'
|
|
|
|
# Unit tests for {{moduleName}}::{{classname}}
|
|
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
# Please update as you see appropriate
|
|
{{#models}}{{#model}}describe '{{classname}}' do
|
|
before do
|
|
# run before each test
|
|
@instance = {{moduleName}}::{{classname}}.new
|
|
end
|
|
|
|
after do
|
|
# run after each test
|
|
end
|
|
|
|
describe 'test an instance of {{classname}}' do
|
|
it 'should create an instact of {{classname}}' do
|
|
@instance.should be_a({{moduleName}}::{{classname}})
|
|
end
|
|
end
|
|
{{#vars}}
|
|
describe 'test attribute "{{{name}}}"' do
|
|
it 'should work' do
|
|
# assertion here
|
|
# should be_a()
|
|
# should be_nil
|
|
# should ==
|
|
# should_not ==
|
|
end
|
|
end
|
|
|
|
{{/vars}}
|
|
end
|
|
{{/model}}{{/models}}
|