Sha256: 2aee861433871dc21be059eb48c0833c29bc97775e2172c7f62cb8bcd5e111d0

Contents?: true

Size: 1.22 KB

Versions: 3

Compression:

Stored size: 1.22 KB

Contents

require 'spec_helper'
require 'json'

# Unit tests for {{moduleName}}::{{classname}}
# Automatically generated by openapi-generator (https://openapi-generator.tech)
# Please update as you see appropriate
{{#operations}}describe '{{classname}}' do
  before do
    # run before each test
    @api_instance = {{moduleName}}::{{classname}}.new
  end

  after do
    # run after each test
  end

  describe 'test an instance of {{classname}}' do
    it 'should create an instance of {{classname}}' do
      expect(@api_instance).to be_instance_of({{moduleName}}::{{classname}})
    end
  end

{{#operation}}
  # unit tests for {{operationId}}
  {{#summary}}
  # {{.}}
  {{/summary}}
  {{#notes}}
  # {{.}}
  {{/notes}}
{{#allParams}}{{#required}}  # @param {{paramName}} {{description}}
{{/required}}{{/allParams}}  # @param [Hash] opts the optional parameters
{{#allParams}}{{^required}}  # @option opts [{{{dataType}}}] :{{paramName}} {{description}}
{{/required}}{{/allParams}}  # @return [{{{returnType}}}{{^returnType}}nil{{/returnType}}]
  describe '{{operationId}} test' do
    it 'should work' do
      # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
    end
  end

{{/operation}}
end
{{/operations}}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
kuapir-0.1.4 openapi-generator-templates/api_test.mustache
kuapir-0.1.3 openapi-generator-templates/api_test.mustache
kuapir-0.1.2 openapi-generator-templates/api_test.mustache