1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
# encoding: utf-8
# frozen_string_literal: true
require 'spec_helper'
describe "mail" do
it "should be able to be instantiated" do
expect { Mail }.not_to raise_error
end
it "should be able to make a new email" do
expect(Mail.new.class).to eq Mail::Message
end
it "should accept headers and body" do
# Full tests in Message Spec
message = Mail.new do
from 'mikel@me.com'
to 'mikel@you.com'
subject 'Hello there Mikel'
body 'This is a body of text'
end
expect(message.from).to eq ['mikel@me.com']
expect(message.to).to eq ['mikel@you.com']
expect(message.subject).to eq 'Hello there Mikel'
expect(message.body.to_s).to eq 'This is a body of text'
end
it "should read a file" do
wrap_method = Mail.read(fixture('emails', 'plain_emails', 'raw_email.eml')).to_s
file_method = Mail.new(File.open(fixture('emails', 'plain_emails', 'raw_email.eml'), 'rb', &:read)).to_s
expect(wrap_method).to eq file_method
end
end
|