Sha256: c9dd3e4e6e63316cf69740ba8dae198da02da092f07f967c9daa77c0652943bc
Contents?: true
Size: 1.84 KB
Versions: 8
Compression:
Stored size: 1.84 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::MemberCreateRequest # Please update as you see appropriate describe 'MemberCreateRequest' do before do # run before each test @instance = Atrium::MemberCreateRequest.new end after do # run after each test end describe 'test an instance of MemberCreateRequest' do it 'should create an instance of MemberCreateRequest' do expect(@instance).to be_instance_of(Atrium::MemberCreateRequest) end end describe 'test attribute "credentials"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "identifier"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "institution_code"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "metadata"' 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
8 entries across 8 versions & 1 rubygems