Inspired by Railscasts #124 "Beta Invitations"
(http://railscasts.com/episodes/124-beta-invitations) I created a small
invitation system. The episode doesn't cover testing, so I've made some
tests for the Mailer responsible for sending the invitations. The test
looks like this:

def test_invitation
  invitation = Invitation.create(:sender => users(:admin),
:recipient_email => "[EMAIL PROTECTED]")
  signup_url = "???"
  mail = InvitationMailer.create_invitation(invitation, signup_url)
  assert_equal "Invitation: Join Fountain CMS site", mail.subject
  assert_equal invitation.recipient_email, mail.to.first
  assert_equal "[EMAIL PROTECTED]", mail.from.first
  expected_body = "You were invited to join Fountain CMS
site.\n#{signup_url}\n"
  assert_equal expected_body, mail.body
  invitation.destroy
end

The test passes but as you can see, the local variable "signup_url" is
set to "???". That basically means that I don't know how to access my
routes outside the controllers and views. How is that done?
-- 
Posted via http://www.ruby-forum.com/.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to