GeoRSS aggregator and Layar augmented reality server
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 

13 строки
345 B

  1. require 'test_helper'
  2. class UserMailerTest < ActionMailer::TestCase
  3. test "reset_password_email" do
  4. mail = UserMailer.reset_password_email
  5. assert_equal "Reset password email", mail.subject
  6. assert_equal ["to@example.org"], mail.to
  7. assert_equal ["from@example.com"], mail.from
  8. assert_match "Hi", mail.body.encoded
  9. end
  10. end