コンテンツが html の翻訳キーである場合に、ビューが正しいコンテンツをレンダリングすることをテストするテストを作成する方法を見つけようとしています。もう少し詳しく説明するために、次の rspec テストがあります。
require 'spec_helper'
describe "application/error_404.html.erb" do
I18n.available_locales.each do |locale|
it "should have 'not found text' in #{locale}" do
I18n.locale = locale
render
rendered.should have_content I18n.t(:not_found_html)
end
end
end
:not_found_html
利用可能な各ロケールでレンダリングされることをテストします。しかし、html のない文字列を探すため、テストは失敗します。
Failure/Error: rendered.should have_content I18n.t(:not_found_html)
expected there to be content "Could not find the page or item you tried to view.
Please try again and if the problem persists please <a href=\"%{contact_link} \">let us
know</a> so we can fix this."
in
"\n\t\n\t\t\tNot found\n\t\t\n\t\n\t\t\t\n\t\t\t\tCould not find the page or item you tried
to view. Please try again and if the problem persists please let us know so we can fix
this.\n\t\t\t\t\n\t\t\n\t"
これを機能させる方法を知るには、レールについて十分に知りません。I18n 文字列だけをレンダリングするには、何らかの方法が必要でしょうか? これに関するヘルプは大歓迎です。