私はMichaelHartlのRubyonRailsチュートリアルを進めており、第3章の演習を行っています。誰かがこのテストが失敗する理由を説明できますか?
私は失敗している
rspec ./spec/requests/static_pages_spec.rb:39 #
Static pages About page should have the title 'About Us'
コントローラ
class StaticPagesController < ApplicationController
def home
end
def help
end
def about
end
def Contact
end
end
About.html.erb
<!DOCTYPE html>
<html>
<head>
<title>Ruby on Rails Tutorial Sample App | About Us</title>
</head>
<body>
<h1>About Us</h1>
Spec.rb
describe "About page" do
it "should have the h1 'About Us'" do
visit '/static_pages/about'
page.should have_selector('h1', :text => 'About Us')
end
it "should have the title 'About Us'" do
visit '/static_pages/about'
page.should have_selector('title',
:text => "Ruby on Rails Tutorial Sample App | About Us")
end
end
Routes.rb
SampleApp::Application.routes.draw do
get "static_pages/home"
get "static_pages/help"
get "static_pages/about"
get "static_pages/Contact"
end