Sha256: 809c80086b7b08c6dea9c08b34154881d917ee8c899acbade32d4a8f1a1f9cb6
Contents?: true
Size: 1.54 KB
Versions: 9
Compression:
Stored size: 1.54 KB
Contents
=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' require 'date' # Unit tests for Atrium::MerchantLocationsResponseBody # Please update as you see appropriate describe 'MerchantLocationsResponseBody' do before do # run before each test @instance = Atrium::MerchantLocationsResponseBody.new end after do # run after each test end describe 'test an instance of MerchantLocationsResponseBody' do it 'should create an instance of MerchantLocationsResponseBody' do expect(@instance).to be_instance_of(Atrium::MerchantLocationsResponseBody) end end describe 'test attribute "merchant_locations"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "pagination"' 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
9 entries across 9 versions & 1 rubygems