public
Description: Makes tests easy on the fingers and the eyes
Homepage: http://www.thoughtbot.com/projects/shoulda
Clone URL: git://github.com/thoughtbot/shoulda.git
shoulda / lib / shoulda / action_mailer.rb
100644 11 lines (9 sloc) 0.187 kb
1
2
3
4
5
6
7
8
9
10
11
require 'shoulda'
require 'shoulda/action_mailer/assertions'
 
module Test # :nodoc: all
  module Unit
    class TestCase
      include Shoulda::ActionMailer::Assertions
    end
  end
end