导轨|如何创建非 ASCII 规范?

发布于 2024-11-30 05:35:03 字数 683 浏览 1 评论 0原文

$rake spec 之后的代码

welcomes_spec.rb:

...
describe "GET /welcomes" do
  it "Should render main page" do
    visit root_path
    page.should have_content(t("popular_photos"))
  end
end
...

ru.yml

...
ru:
  hello: "Hello world"
  default_page_title: "Test_page_title"
  main_page: "Главная"
  popular_photos:  !NON ASCII SYMBOLS HERE!

导致错误:

Failure/Error: page.should have_content(t("popular_photos"))
NoMethodError:
  undefined method `t' for #<RSpec::Core::ExampleGroup::Nested_5::Nested_1:0xba77028>

我是新手,不知道如何修复它。

The code

welcomes_spec.rb:

...
describe "GET /welcomes" do
  it "Should render main page" do
    visit root_path
    page.should have_content(t("popular_photos"))
  end
end
...

ru.yml

...
ru:
  hello: "Hello world"
  default_page_title: "Test_page_title"
  main_page: "Главная"
  popular_photos:  !NON ASCII SYMBOLS HERE!

after $rake spec leads the error:

Failure/Error: page.should have_content(t("popular_photos"))
NoMethodError:
  undefined method `t' for #<RSpec::Core::ExampleGroup::Nested_5::Nested_1:0xba77028>

I am newbie and don't know how to fix it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

对你而言 2024-12-07 05:35:03

只需将: 替换

page.should have_content(t("popular_photos"))

为:

page.should have_content(I18n.translate("popular_photos"))

Simply replace:

page.should have_content(t("popular_photos"))

with:

page.should have_content(I18n.translate("popular_photos"))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文