puts "I R Working"
begin
created = TestMailer.create_signed_up_with_url(@recipient)
puts "Something After"
rescue => e
puts "Exception Happened"
p e
ensure
puts "Ensuring"
end
puts "Done with that"
## How that outputs
## I R Working
## Ensuring
|
Pastie
