Easily test ActionMailer and Mail messages in your Capybara integration tests
Add this line to your application's Gemfile:
gem 'capybara-email'
And then execute:
$ bundle
Or install it yourself as:
$ gem install capybara-email
Require capybara/email/rspec
in your spec_helper
Example:
feature 'Emailer' do
background do
# will clear the message queue
clear_emails
visit email_trigger_path
# Will find an email sent to test@example.com
# and set `current_email`
open_email('test@example.com')
end
scenario 'following a link' do
current_email.click_link 'your profile'
page.should have_content 'Profile page'
end
scenario 'testing for content' do
current_email.should have_content 'Hello Joe!'
end
scenario 'view the email body in your browser' do
# the `launchy` gem is required
current_email.save_and_open
end
end
Require capybara/email
in your features/support/env.rb
require 'capybara/email'
Once you have required capybara-email
, gaining access to usable methods
is easy as adding this module to your Cucumber World
:
World(Capybara::Email::DSL)
I recommend adding this to a support file such as features/support/capybara_email.rb
require 'capybara/email'
World(Capybara::Email::DSL)
Example:
Scenario: Email is sent to winning user
Given "me@example.com" is playing a game
When that user picks a winning piece
Then "me@example.com" receives an email with "You've Won!" as the subject
Then /^"([^"]*)" receives an email with "([^"]*)" as the subject$/ do |email_address, subject|
open_email(email_address)
current_email.subject.should == subject
end
Include Capybara::Email::DSL
in your test class
class ActionController::IntegrationTest
include Capybara::Email::DSL
end
Example:
class EmailTriggerControllerTest < ActionController::IntegrationTest
def setup
# will clear the message queue
clear_emails
visit email_trigger_path
# Will find an email sent to `test@example.com`
# and set `current_email`
open_email('test@example.com')
end
test 'following a link' do
current_email.click_link 'your profile'
page.should have_content 'Profile page'
end
test 'testing for content' do
current_email.should have_content 'Hello Joe!'
end
test 'view the email body in your browser' do
# the `launchy` gem is required
current_email.save_and_open
end
end
This gem follows Semantic Versioning
Stable branches are created based upon each minor version. Please make pull requests to specific branches rather than master.
Please make sure you include tests!
Unless Rails drops support for Ruby 1.8.7 we will continue to use the hash-rocket syntax. Please respect this.
Don't use tabs to indent, two spaces are the standard.
DockYard, LLC © 2012