diff options
author | Louise Crow <louise.crow@gmail.com> | 2013-02-14 18:14:57 +0000 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2013-02-14 18:33:00 +0000 |
commit | a77243d9f6d6a7abe9fd3f966536420ac3c73981 (patch) | |
tree | 3f77fac5d9fe1c3290702f31d47e0ff76004191d /spec/script/mailin_spec.rb | |
parent | 0747a2d66f65fd22d8ea275d9df29a7981a46d07 (diff) |
Rename spec file so that it's picked up by rake spec.
Diffstat (limited to 'spec/script/mailin_spec.rb')
-rw-r--r-- | spec/script/mailin_spec.rb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/spec/script/mailin_spec.rb b/spec/script/mailin_spec.rb new file mode 100644 index 000000000..d80789635 --- /dev/null +++ b/spec/script/mailin_spec.rb @@ -0,0 +1,21 @@ +require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') +require "external_command" + +def mailin_test(email_filename) + Dir.chdir Rails.root do + xc = ExternalCommand.new("script/mailin") + xc.run(load_file_fixture(email_filename)) + xc.err.should == "" + return xc + end +end + +describe "When importing mail into the application" do + + it "should not produce any output and should return a 0 code on importing a plain email" do + r = mailin_test("incoming-request-plain.email") + r.status.should == 0 + r.out.should == "" + end + +end
\ No newline at end of file |