Methods
T
Instance Public methods
test(options)
# File actionpack/test/controller/assert_select_test.rb, line 23
def test(options)
  mail :subject => "Test e-mail", :from => "test@test.host", :to => "test <test@test.host>" do |format|
    format.text { render :text => options[:text] }
    format.html { render :text => options[:html] }
  end
end