Sha256: 0d5aeff03cef7b64096983d3cd0003966dce26212efd3164f7e97ea4860c0518
Contents?: true
Size: 1.48 KB
Versions: 7
Compression:
Stored size: 1.48 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::MerchantsResponseBody # Please update as you see appropriate describe 'MerchantsResponseBody' do before do # run before each test @instance = Atrium::MerchantsResponseBody.new end after do # run after each test end describe 'test an instance of MerchantsResponseBody' do it 'should create an instance of MerchantsResponseBody' do expect(@instance).to be_instance_of(Atrium::MerchantsResponseBody) end end describe 'test attribute "merchants"' 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
7 entries across 7 versions & 1 rubygems