Revisions
-
adamsanderson revised this gist
Dec 18, 2010 . 1 changed file with 1 addition and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -39,9 +39,7 @@ def test_purging_mail mp = MailPurge.new(mock) mp.purge(date) assert mock.verify end end -
adamsanderson created this gist
Dec 18, 2010 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,47 @@ require 'minitest/mock' require 'minitest/unit' require 'date' MiniTest::Unit.autorun class TestMailPurge < MiniTest::Unit::TestCase class MailPurge def initialize(imap) @imap = imap end def purge(date) formatted_date = date.strftime('%d-%b-%Y') @imap.authenticate('LOGIN', 'user', 'password') @imap.select('INBOX') message_ids = @imap.search(["BEFORE #{formatted_date}"]) @imap.store(message_ids, "+FLAGS", [:Deleted]) end end def test_purging_mail date = Date.new(2010,1,1) formatted_date = '01-Jan-2010' ids = [4,5,6] mock = MiniTest::Mock.new # mock expects: # method return arguments #------------------------------------------------------------- mock.expect(:authenticate, nil, ['LOGIN', 'user', 'password']) mock.expect(:select, nil, ['INBOX']) mock.expect(:search, ids, [["BEFORE #{formatted_date}"]]) mock.expect(:store, nil, [ids, "+FLAGS", [:Deleted]]) mp = MailPurge.new(mock) mp.purge(date) mock.verify mock.verify end end