From c2623f1aa3638c988026b28f6a4131df6c61e0c6 Mon Sep 17 00:00:00 2001 From: mms Date: Fri, 22 Nov 2024 23:35:51 +0100 Subject: feat: allow to search for thread --- spec/chotto_spec.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'spec/chotto_spec.rb') diff --git a/spec/chotto_spec.rb b/spec/chotto_spec.rb index 41d949c..7593a48 100644 --- a/spec/chotto_spec.rb +++ b/spec/chotto_spec.rb @@ -12,7 +12,6 @@ describe Chotto do before do $db_double = db_double # we need to access this double within block evaled elsewhere - p $db_double allow(db_double).to receive(:new).with('/path', mode: Notmuch::MODE_READ_WRITE).and_return(db_instance_double) allow(db_instance_double).to receive(:query).with(' (from:baltar@galactica.com)').and_return(db_query_double) @@ -36,7 +35,7 @@ describe Chotto do end it 'sends the rules to Notmuch - scenario 1' do - expect(message_double).to receive(:tags).and_return([]) + expect(message_double).to receive(:tags) expect(message_double).to receive(:header).with('Subject').and_return('Number Six') expect(message_double).to receive(:remove_all_tags) expect(message_double).to receive(:add_tag).with('todo') @@ -46,7 +45,7 @@ describe Chotto do end it 'sends the rules to Notmuch - scenario 2' do - expect(message_double).to receive(:tags).and_return([]) + expect(message_double).to receive(:tags) expect(message_double).to receive(:header).with('Subject').and_return('Boomer') expect(message_double).to receive(:remove_all_tags) expect(message_double).to receive(:add_tag).with('spam') -- cgit v1.2.3