=begin #MailSlurp API #For documentation see [developer guide](https://www.mailslurp.com/developers). [Create an account](https://app.mailslurp.com) in the MailSlurp Dashboard to [view your API Key](https://app). For all bugs, feature requests, or help please [see support](https://www.mailslurp.com/support/). OpenAPI spec version: 0.0.1-alpha Contact: contact@mailslurp.dev Generated by: https://openapi-generator.tech OpenAPI Generator version: 3.3.4 =end require 'spec_helper' require 'json' require 'date' # Unit tests for MailSlurpClient::MatchOption # Automatically generated by openapi-generator (https://openapi-generator.tech) # Please update as you see appropriate describe 'MatchOption' do before do # run before each test @instance = MailSlurpClient::MatchOption.new end after do # run after each test end describe 'test an instance of MatchOption' do it 'should create an instance of MatchOption' do expect(@instance).to be_instance_of(MailSlurpClient::MatchOption) end end describe 'test attribute "field"' 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', ["SUBJECT", "TO", "BCC", "CC", "FROM"]) # validator.allowable_values.each do |value| # expect { @instance.field = value }.not_to raise_error # end end end describe 'test attribute "should"' 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', ["CONTAIN", "EQUAL"]) # validator.allowable_values.each do |value| # expect { @instance.should = value }.not_to raise_error # end 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