Sha256: 4b6a8434b693c2940facb01b976dd6e0ffb852eb26bf6577434e812e53786bce
Contents?: true
Size: 1.31 KB
Versions: 4
Compression:
Stored size: 1.31 KB
Contents
=begin #SnapTrade #Connect brokerage accounts to your app for live positions and trading The version of the OpenAPI document: 1.0.0 Contact: api@snaptrade.com =end require 'spec_helper' require 'json' require 'date' # Unit tests for SnapTrade::AccountHoldings describe SnapTrade::AccountHoldings do let(:instance) { SnapTrade::AccountHoldings.new } describe 'test an instance of AccountHoldings' do it 'should create an instance of AccountHoldings' do expect(instance).to be_instance_of(SnapTrade::AccountHoldings) end end describe 'test attribute "account"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "balances"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "positions"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "total_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
4 entries across 4 versions & 1 rubygems