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