diff options
author | Henare Degan <henare.degan@gmail.com> | 2015-04-11 17:24:42 +1000 |
---|---|---|
committer | Henare Degan <henare.degan@gmail.com> | 2015-04-11 17:24:42 +1000 |
commit | f4cb716c7033d84ea6011798bd612ba05265fea5 (patch) | |
tree | 9ce702e322aca399ea8da4bbb9abcf3de47f8ea1 /spec/lib | |
parent | 8c72a2590a6c0a5f21491b96f44eeb8da53663bd (diff) |
Remove presumably accidentally committed RSpec focus tags
Diffstat (limited to 'spec/lib')
-rw-r--r-- | spec/lib/mail_handler/mail_handler_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/lib/mail_handler/mail_handler_spec.rb b/spec/lib/mail_handler/mail_handler_spec.rb index e7ad93300..ea7a99b05 100644 --- a/spec/lib/mail_handler/mail_handler_spec.rb +++ b/spec/lib/mail_handler/mail_handler_spec.rb @@ -9,7 +9,7 @@ end describe 'when creating a mail object from raw data' do - it "should be able to parse a large email without raising an exception", :focus => true do + it "should be able to parse a large email without raising an exception" do m = Mail.new m.add_file(:filename => "attachment.data", :content => "a" * (8 * 1024 * 1024)) raw_email = "From jamis_buck@byu.edu Mon May 2 16:07:05 2005\r\n#{m.to_s}" @@ -22,7 +22,7 @@ describe 'when creating a mail object from raw data' do mail.multipart?.should == true end - it "should not fail on invalid byte sequence in content-disposition header", :focus => true do + it "should not fail on invalid byte sequence in content-disposition header" do part = Mail::Part.new("Content-Disposition: inline; filename=a\xB8z\r\n\r\nThis is the body text.") lambda { part.inline? }.should_not raise_error end |