Sha256: d0a038f7e7939d4e3afb8b247ecb33dca01a1b3873da1353228252f6d1db33e5
Contents?: true
Size: 1.85 KB
Versions: 1
Compression:
Stored size: 1.85 KB
Contents
require 'spec_helper' describe Mail::ContentDispositionField do describe "initialization" do it "should initialize" do doing { Mail::ContentDispositionField.new("attachment; filename=File") }.should_not raise_error end it "should accept a string with the field name" do c = Mail::ContentDispositionField.new('Content-Disposition: attachment; filename=File') c.name.should == 'Content-Disposition' c.value.should == 'attachment; filename=File' end it "should accept a string without the field name" do c = Mail::ContentDispositionField.new('attachment; filename=File') c.name.should == 'Content-Disposition' c.value.should == 'attachment; filename=File' end it "should accept a nil value and generate a disposition type" do c = Mail::ContentDispositionField.new(nil) c.name.should == 'Content-Disposition' c.value.should_not be_nil end it "should render encoded" do c = Mail::ContentDispositionField.new('Content-Disposition: attachment; filename=File') c.encoded.should == "Content-Disposition: attachment;\r\n\tfilename=File\r\n" end it "should render decoded" do c = Mail::ContentDispositionField.new('Content-Disposition: attachment; filename=File') c.decoded.should == 'attachment; filename=File' end end describe "instance methods" do it "should give it's disposition type" do c = Mail::ContentDispositionField.new('Content-Disposition: attachment; filename=File') c.disposition_type.should == 'attachment' c.parameters.should == {'filename' => 'File'} end # see spec/fixtures/trec_2005_corpus/missing_content_disposition.eml it "should accept a blank disposition type" do c = Mail::ContentDispositionField.new('Content-Disposition: ') c.disposition_type.should_not be_nil end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rack-mail_exception-0.0.1 | vendor/mail/spec/mail/fields/content_disposition_field_spec.rb |