Sha256: 524598e5af5d8474c945df7707b1c5e1fc77f2ff4f09607a053b63fcd5781449
Contents?: true
Size: 1.98 KB
Versions: 1
Compression:
Stored size: 1.98 KB
Contents
=begin #MailSlurp API #MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://www.mailslurp.com/docs/) - [Examples](https://github.com/mailslurp/examples) repository The version of the OpenAPI document: d1659dc1567a5b62f65d0612107a50aace03e085 Generated by: https://openapi-generator.tech OpenAPI Generator version: 4.2.3 =end require 'spec_helper' require 'json' require 'date' # Unit tests for MailSlurpClient::SimpleSendEmailOptions # Automatically generated by openapi-generator (https://openapi-generator.tech) # Please update as you see appropriate describe 'SimpleSendEmailOptions' do before do # run before each test @instance = MailSlurpClient::SimpleSendEmailOptions.new end after do # run after each test end describe 'test an instance of SimpleSendEmailOptions' do it 'should create an instance of SimpleSendEmailOptions' do expect(@instance).to be_instance_of(MailSlurpClient::SimpleSendEmailOptions) end end describe 'test attribute "body"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "sender_id"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "subject"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "to"' 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mailslurp_client-7.0.8 | spec/models/simple_send_email_options_spec.rb |