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