Sha256: 2b1cc71127cf9584767f24cb472fd9e653611b745917d229bfac31d55ea40d04
Contents?: true
Size: 370 Bytes
Versions: 2
Compression:
Stored size: 370 Bytes
Contents
require 'spec_helper' describe 'MailExtract::Parser' do it 'parses an email' do body = MailExtract.new(fixture('simple.txt')).body body.should == result_fixture('simple.txt') end it 'parses an email with quotes' do body = MailExtract.new(fixture('simple_with_quotes.txt')).body body.should == result_fixture('simple_with_quotes.txt') end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mail_extract-0.1.1 | spec/parser_spec.rb |
mail_extract-0.1.0 | spec/parser_spec.rb |