GeoRSS aggregator and Layar augmented reality server
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 

13 wiersze
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