在 rspec 中测试邮件程序
是否没有简单的方法可以在邮件程序规范中执行与 response.should render_template(:foo)
等效的操作?这就是我想做的:
mail.should render_template(:welcome)
有这么多要问吗?我是否陷入了heredocs的黑暗时代或手动读取固定装置以进行匹配?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过查看email-spec。它没有确切的语法,但用于测试发送电子邮件的各个方面。
Have you tried looking at email-spec. It doesn't have the exact syntax but it is used for testing various aspects of sending emails.