=begin #Avalara Shipping Verification for Beverage Alcohol #API for evaluating transactions against direct-to-consumer Beverage Alcohol shipping regulations. This API is currently in beta. The version of the OpenAPI document: 2.1.0-beta Generated by: https://openapi-generator.tech OpenAPI Generator version: 5.3.1 =end require 'spec_helper' require 'json' require 'date' # Unit tests for AvalaraSdk::ShippingVerifyResultLines # Automatically generated by openapi-generator (https://openapi-generator.tech) # Please update as you see appropriate describe AvalaraSdk::ShippingVerifyResultLines do let(:instance) { AvalaraSdk::ShippingVerifyResultLines.new } describe 'test an instance of ShippingVerifyResultLines' do it 'should create an instance of ShippingVerifyResultLines' do expect(instance).to be_instance_of(AvalaraSdk::ShippingVerifyResultLines) end end describe 'test attribute "result_code"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Compliant", "NotCompliant", "UnsupportedTaxCode", "UnsupportedAddress", "InvalidLine"]) # validator.allowable_values.each do |value| # expect { instance.result_code = value }.not_to raise_error # end end end describe 'test attribute "line_number"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "message"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "success_messages"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "failure_messages"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "failure_codes"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers # validator = Petstore::EnumTest::EnumAttributeValidator.new('Array', ["BelowLegalDrinkingAge", "ShippingProhibitedToAddress", "MissingRequiredLicense", "VolumeLimitExceeded", "InvalidFieldValue", "MissingRequiredField", "InvalidFieldType", "InvalidFormat", "InvalidDate"]) # validator.allowable_values.each do |value| # expect { instance.failure_codes = value }.not_to raise_error # end end end end