[Rails] Re: RSpec test model and mailer

2012-06-20 Thread Danko Danko
Ok, thank you -- 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 rubyonrails-talk@googlegroups.com. To unsubscribe from this group, send email to rubyonrails-t

[Rails] RSpec test model and mailer

2012-06-20 Thread Danko Danko
I have method in model (User Model) def create_reset_code self.attributes = {:reset_code => Digest::SHA1.hexdigest( Time.now.to_s.split(//).sort_by {rand}.join )} save(:validate=>false) UserMailer.reset_password_email(self).deliver end How can I test it in RSpec? I want to t