Sha256: 3cb8bd3338af96d259b90e34a0151e7d921e3a3145392f8ee23c94ccad81c8b6

Contents?: true

Size: 1.25 KB

Versions: 7

Compression:

Stored size: 1.25 KB

Contents

=begin
{{> api_info}}
=end

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://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
    end
  end

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

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
clerk-http-client-1.0.0 resources/templates/api_test.mustache
clerk-http-client-0.0.1 resources/templates/api_test.mustache
dropbox-sign-1.8.0 templates/api_test.mustache
dropbox-sign-1.7.0 templates/api_test.mustache
dropbox-sign-1.6.1 templates/api_test.mustache
dropbox-sign-1.6.0 templates/api_test.mustache
dropbox-sign-1.5.0 templates/api_test.mustache