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