=begin #MX API #The MX Atrium API supports over 48,000 data connections to thousands of financial institutions. It provides secure access to your users' accounts and transactions with industry-leading cleansing, categorization, and classification. Atrium is designed according to resource-oriented REST architecture and responds with JSON bodies and HTTP response codes. Use Atrium's development environment, vestibule.mx.com, to quickly get up and running. The development environment limits are 100 users, 25 members per user, and access to the top 15 institutions. Contact MX to purchase production access. =end require 'spec_helper' require 'json' # Unit tests for Atrium::MerchantsApi # Please update as you see appropriate describe 'MerchantsApi' do before do # run before each test @instance = Atrium::MerchantsApi.new end after do # run after each test end describe 'test an instance of MerchantsApi' do it 'should create an instance of MerchantsApi' do expect(@instance).to be_instance_of(Atrium::MerchantsApi) end end # unit tests for list_merchant_locations # List merchant locations # Returns a list of all the merchant locations associated with a merchant, including physical location, latitude, longitude, etc. # @param merchant_guid The unique identifier for a `merchant`. # @param [Hash] opts the optional parameters # @return [MerchantLocationsResponseBody] describe 'list_merchant_locations 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 list_merchants # List merchants # Returns a list of merchnants. # @param [Hash] opts the optional parameters # @return [MerchantsResponseBody] describe 'list_merchants 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 read_merchant # Read merchant # Returns information about a particular merchant, such as a logo, name, and website. # @param merchant_guid The unique identifier for a `merchant`. # @param [Hash] opts the optional parameters # @return [MerchantResponseBody] describe 'read_merchant 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 read_merchant_location # Read merchant location # Retuns a specific location associated with a merchant, including physical location, latitude, longitude, etc. # @param merchant_guid The unique identifier for a `merchant`. # @param merchant_location_guid The unique identifier for a `merchant_location`. # @param [Hash] opts the optional parameters # @return [MerchantLocationResponseBody] describe 'read_merchant_location test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end end