我不明白如何使用 rspec 和国际化进行测试。例如,在我做的请求测试中
I18n.available_locales.each do |locale|
visit users_path(locale: locale)
#...
end
它工作得很好:每个语言环境都测试正确。
但在邮件中,这个技巧不起作用。
user_mailer_spec.rb
require "spec_helper"
describe UserMailer do
I18n.available_locales.each do |locale|
let(:user) { FactoryGirl.build(:user, locale: locale.to_s) }
let(:mail_registration) { UserMailer.registration_confirmation(user) }
it "should send registration confirmation" do
puts locale.to_yaml
mail_registration.body.encoded.should include("test") # it will return error with text which allow me to ensure that for each locale the test call only :en locale email template
end
end
end
它运行几次(与我的语言环境一样多),但每次它只为默认语言环境生成 html。
当我UserMailer.registration_confirmation(@user).deliver
从控制器调用时,它工作正常。
user_mailer.rb
...
def registration_confirmation(user)
@user = user
mail(to: user.email, subject: t('user_mailer.registration_confirmation.subject')) do |format|
format.html { render :layout => 'mailer'}
format.text
end
end
...
意见/user_mailer/registration_confirmation.text.erb
<%=t '.thx' %>, <%= @user.name %>.
<%=t '.site_description' %>
<%=t '.credentials' %>:
<%=t '.email' %>: <%= @user.email %>
<%=t '.password' %>: <%= @user.password %>
<%=t '.sign_in_text' %>: <%= signin_url %>
---
<%=t 'unsubscribe' %>
我再说一遍 - 它适用于所有语言环境。我只有关于 rspec 测试的问题。