在 Michael Hartl 的 RoR 教程中:第 5 章末尾的练习涉及简化 RSpec 测试。
5.37 ( http://ruby.railstutorial.org/chapters/filling-in-the-layout#sec-layout_exercises ) 为主页定义了几个测试。在文件 spec/helpers/application_helper_spec.rb 中:
require 'spec_helper'
describe ApplicationHelper do
describe "full_title" do
.
.
.
.
it "should not include a bar for the home page" do
full_title("").should_not =~ /\|/
end
end
end
要通过此测试,我需要显示主页标题:“Ruby on Rails 教程示例应用程序”而不是“Ruby on Rails 教程示例应用程序 | 主页”
但是,本教程并没有引导我完成如何编写该更改的代码。
这是我尝试过的:
在 app/views/static_pages/home.html.erb 中:
消除:
<% provide(:title, 'Home') %>
在 app/views/layouts/application.html.erb 中将标签编辑为:
<title>
<% if :title
full_title = "Ruby on Rails Tutorial Sample App | " && yield(:title)
else
full_title = "Ruby on Rails Tutorial Sample App"
end %>
<%= print full_title %>
</title>
以及我的菜鸟大脑可以召集的其他变化。这是我要完成的工作:
如果页面没有提供标题,则返回“Ruby on Rails Tutorial Sample App”
如果提供了标题,则返回“Ruby on Rails 教程示例应用程序 | #PageTitle”
任何建议表示赞赏。