我有一个密码重置邮件程序,我希望能够在我的测试中执行以下操作:
assert_match edit_password_reset_path(user.password_reset_token), mail.body.encoded
# undefined method `edit_password_reset_path' for #<UserMailerTest:0xb6c2ea0>
但是由于URL帮助器而爆炸,所以我必须这样做才能让我的测试运行:
assert_match "\/password_resets\/#{user.password_reset_token}\/edit", mail.body.encoded
哪种方法很好,但看起来或感觉不太好。
似乎ActionMailer :: TestCase不知道路径,因为以下失败:
assert_match "#{edit_password_reset_path(user.password_reset_token)}", mail.body.encoded
# undefined method `edit_password_reset_path' for #<UserMailerTest:0xb6c2ec8>
如何在测试单元中访问edit_password_reset_path(user.password_reset_token)
之类的网址助手?
我从RSpec切换到哪里这从来都不是问题,助手刚刚工作,我会这样做:
it "sends the user a password reset url" do
mail.body.encoded.should match(edit_password_reset_url(user.password_reset_token))
end
答案 0 :(得分:5)
对于有兴趣在将来解决此问题的任何人,您可以将其粘贴在您的测试文件中:
include Rails.application.routes.url_helpers
我不知道这是否是 thee 这样做的方式,而且我不确定它为测试增加了多少开销,但它确实可以。