Cucumber, Rails, and Sending Emails

Anyone had any problems sending emails (performing the delivery) using Cucumber.

When I set "config.action_mailer.perform_deliveries = true", in cucumber.rb, the emails don't actually get sent to my inbox. I've tried putting the following in both cucumber.rb and test.rb:

config.action_mailer.delivery_method = :smtp config.action_mailer.perform_deliveries = true

Any ideas?