VRFS-1483 removed debug code

This commit is contained in:
Jonathan Kolyer 2014-03-19 16:29:19 +00:00
parent d15c1dbdfd
commit 21bd8fcf2f
1 changed files with 1 additions and 2 deletions

View File

@ -6,6 +6,7 @@ describe BatchMailer do
let (:mail) { BatchMailer.deliveries[0] }
batch = FactoryGirl.create(:email_batch)
batch.update_attribute(:test_emails, "jonathan@jamkazam.com")
batch.send_test_batch
it { BatchMailer.deliveries.length.should == 1 }
@ -18,8 +19,6 @@ describe BatchMailer do
it { mail.text_part.decode_body.should match(/#{Regexp.escape(batch.body)}/) }
it { batch.testing?.should == true }
binding.pry
it { batch.qualified_count.should == batch.test_count }
end
end