Sha256: 9694f20b9986a8f7b09dd834926de1f3aa895012ee30e5470de0e00241b7d118
Contents?: true
Size: 1.51 KB
Versions: 20
Compression:
Stored size: 1.51 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::PortfolioGroupSettings describe SnapTrade::PortfolioGroupSettings do let(:instance) { SnapTrade::PortfolioGroupSettings.new } describe 'test an instance of PortfolioGroupSettings' do it 'should create an instance of PortfolioGroupSettings' do expect(instance).to be_instance_of(SnapTrade::PortfolioGroupSettings) end end describe 'test attribute "buy_only"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "cash_optimizer"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "notify_frequency"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "drift_threshold"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "preferred_currency"' 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
20 entries across 20 versions & 1 rubygems