GeoRSS aggregator and Layar augmented reality server
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 

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