Sha256: 389c96b15db707799b2ec5eb4d73f0bf0b193e6b3d225124880a32b01359bc57
Contents?: true
Size: 1.65 KB
Versions: 11
Compression:
Stored size: 1.65 KB
Contents
=begin #EVE Swagger Interface #An OpenAPI for EVE Online OpenAPI spec version: 0.4.6.dev11 Generated by: https://github.com/swagger-api/swagger-codegen.git =end require 'spec_helper' require 'json' # Unit tests for ESIClient::RoutesApi # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen) # Please update as you see appropriate describe 'RoutesApi' do before do # run before each test @instance = ESIClient::RoutesApi.new end after do # run after each test end describe 'test an instance of RoutesApi' do it 'should create an instact of RoutesApi' do expect(@instance).to be_instance_of(ESIClient::RoutesApi) end end # unit tests for get_route_origin_destination # Get route # Get the systems between origin and destination --- This route is cached for up to 86400 seconds # @param destination destination solar system ID # @param origin origin solar system ID # @param [Hash] opts the optional parameters # @option opts [Array<Integer>] :avoid avoid solar system ID(s) # @option opts [Array<Array<Integer>>] :connections connected solar system pairs # @option opts [String] :datasource The server name you would like data from # @option opts [String] :flag route security preference # @option opts [String] :user_agent Client identifier, takes precedence over headers # @option opts [String] :x_user_agent Client identifier, takes precedence over User-Agent # @return [Array<Integer>] describe 'get_route_origin_destination test' do it "should work" do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end end
Version data entries
11 entries across 11 versions & 1 rubygems