Sha256: 81fbc83bc8b37fd696614783e3e7c2ffb83cce3debf61fd41785c5a92a57c452
Contents?: true
Size: 1.78 KB
Versions: 2
Compression:
Stored size: 1.78 KB
Contents
=begin #Bandwidth #Bandwidth's Communication APIs The version of the OpenAPI document: 1.0.0 Contact: letstalk@bandwidth.com Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.4.0 =end require 'spec_helper' require 'json' # Unit tests for Bandwidth::PhoneNumberLookupApi # Automatically generated by openapi-generator (https://openapi-generator.tech) # Please update as you see appropriate describe 'PhoneNumberLookupApi' do before do # run before each test @api_instance = Bandwidth::PhoneNumberLookupApi.new end after do # run after each test end describe 'test an instance of PhoneNumberLookupApi' do it 'should create an instance of PhoneNumberLookupApi' do expect(@api_instance).to be_instance_of(Bandwidth::PhoneNumberLookupApi) end end # unit tests for create_lookup # Create Lookup # Create a Phone Number Lookup Request. # @param account_id The ID of the Bandwidth account that the user belongs to. # @param lookup_request Phone number lookup request. # @param [Hash] opts the optional parameters # @return [CreateLookupResponse] describe 'create_lookup test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end # unit tests for get_lookup_status # Get Lookup Request Status # Get an existing Phone Number Lookup Request. # @param account_id The ID of the Bandwidth account that the user belongs to. # @param request_id The phone number lookup request ID from Bandwidth. # @param [Hash] opts the optional parameters # @return [LookupStatus] describe 'get_lookup_status 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bandwidth-sdk-11.0.0.pre.beta.1.1 | spec/unit/api/phone_number_lookup_api_spec.rb |
bandwidth-sdk-11.0.0.pre.beta.1 | spec/unit/api/phone_number_lookup_api_spec.rb |