Is there no simple way to do the equivalent of response.should render_template(:foo)
in a mailer spec? Here's what I want to do:
mail.should render_template(:welcome)
Is that so much to ask? Am I stuck in the dark ages of heredocs or manually reading fixtures in to match against?
render_template
assertion helper in mailer specs). But this is still good enough to get most of the way there. – Mccullough